Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
123
sale_product_set/README.rst
Executable file
123
sale_product_set/README.rst
Executable file
@@ -0,0 +1,123 @@
|
||||
=================
|
||||
Sales product set
|
||||
=================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:2f7beee55c7bf24a53bdf20c9eaa6dec4098d084c0bdb197a8b3702fae33e2a1
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |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/licence-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%2Fsale--workflow-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/sale-workflow/tree/18.0/sale_product_set
|
||||
:alt: OCA/sale-workflow
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/sale-workflow-18-0/sale-workflow-18-0-sale_product_set
|
||||
: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/sale-workflow&target_branch=18.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
A **product set** is a list of products which end customers aren't
|
||||
aware, this list is defined by sales manager.
|
||||
|
||||
This module aims to load a product set in a sales order though a wizard.
|
||||
The product set is a list of products and quantities that gets inserted
|
||||
as separate sales order lines.
|
||||
|
||||
After a *product set* is added to the sales order, each line can be
|
||||
updated or removed as any other sales order lines.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
- Define a *product set* as sales manager:
|
||||
|
||||
- choose products
|
||||
- for each product, define a quantity.
|
||||
- for each product (if Discounts setting is active), define a discount
|
||||
or leave default value
|
||||
- Sort *set* lines, this order will be the default when added into the
|
||||
quotation
|
||||
|
||||
- Then you can remove or update added lines as any other sales order
|
||||
lines.
|
||||
|
||||
|Sale order|
|
||||
|
||||
.. |Sale order| image:: https://raw.githubusercontent.com/sale_product_set/static/description/sale_order.png
|
||||
|
||||
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 to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_product_set%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
|
||||
-------
|
||||
|
||||
* Anybox
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
- Clovis Nzouendjou <clovis@anybox.fr>
|
||||
- Pierre Verkest <pverkest@anybox.fr>
|
||||
- Denis Leemann <denis.leemann@camptocamp.com>
|
||||
- Simone Orsi <simone.orsi@camptocamp.com>
|
||||
- Souheil Bejaoui <souheil.bejaoui@acsone.eu>
|
||||
- Adria Gil Sorribes <adria.gil@forgeflow.com>
|
||||
- Phuc (Tran Thanh) <phuc@trobz.com>
|
||||
- Manuel Regidor <manuel.regidor@sygel.es>
|
||||
- `Tecnativa <https://www.tecnativa.com>`__:
|
||||
|
||||
- Pilar Vargas
|
||||
- Juan Carlos Oñate
|
||||
|
||||
- Nils Coenen <nils.coenen@nico-solutions.de>
|
||||
|
||||
Other credits
|
||||
-------------
|
||||
|
||||
The development of this module has been financially supported by:
|
||||
|
||||
- Camptocamp
|
||||
|
||||
Maintainers
|
||||
-----------
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/18.0/sale_product_set>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
2
sale_product_set/__init__.py
Executable file
2
sale_product_set/__init__.py
Executable file
@@ -0,0 +1,2 @@
|
||||
from . import models
|
||||
from . import wizard
|
||||
22
sale_product_set/__manifest__.py
Executable file
22
sale_product_set/__manifest__.py
Executable file
@@ -0,0 +1,22 @@
|
||||
# Copyright 2015 Anybox
|
||||
# Copyright 2018 Camptocamp, ACSONE SA/NV
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
{
|
||||
"name": "Sales product set",
|
||||
"category": "Sales",
|
||||
"license": "AGPL-3",
|
||||
"author": "Anybox, Odoo Community Association (OCA)",
|
||||
"version": "18.0.1.0.0",
|
||||
"website": "https://github.com/OCA/sale-workflow",
|
||||
"depends": ["sale", "sale_management", "product_set"],
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
"views/product_set.xml",
|
||||
"views/product_set_line.xml",
|
||||
"wizard/sale_product_set_wizard_view.xml",
|
||||
"views/sale_order.xml",
|
||||
"views/res_config_settings.xml",
|
||||
],
|
||||
"demo": ["demo/product_set_line.xml"],
|
||||
"installable": True,
|
||||
}
|
||||
9
sale_product_set/demo/product_set_line.xml
Executable file
9
sale_product_set/demo/product_set_line.xml
Executable file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="product_set.product_set_line_computer_1" model="product.set.line">
|
||||
<field name="discount">25</field>
|
||||
</record>
|
||||
<record id="product_set.product_set_line_services_1" model="product.set.line">
|
||||
<field name="discount">50</field>
|
||||
</record>
|
||||
</odoo>
|
||||
150
sale_product_set/i18n/am.po
Executable file
150
sale_product_set/i18n/am.po
Executable file
@@ -0,0 +1,150 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
157
sale_product_set/i18n/ar.po
Executable file
157
sale_product_set/i18n/ar.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "آخر تعديل في"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "الاسم"
|
||||
156
sale_product_set/i18n/bg.po
Executable file
156
sale_product_set/i18n/bg.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно обновено от"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Последно променено на"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Име"
|
||||
157
sale_product_set/i18n/bs.po
Executable file
157
sale_product_set/i18n/bs.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnje mijenjano"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Ime"
|
||||
201
sale_product_set/i18n/ca.po
Executable file
201
sale_product_set/i18n/ca.po
Executable file
@@ -0,0 +1,201 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-07-08 00:49+0000\n"
|
||||
"PO-Revision-Date: 2021-02-23 17:45+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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Afegeix conjunt"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Afegeix el conjunt a la comanda de venda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Afegir conjunt en línia d'ordre de venda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·lar"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Client"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "Descompte (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nom"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Habiliteu aquesta opció per no afegir línies noves per als productes que ja "
|
||||
"s'inclouen a les línies SO."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Darrera Actualització per"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Darrera Actualització el"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Conjunt de productes"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Línia de productes"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Línies de productes"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Quantitat"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Comanda de venda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Omet Productes Existents"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Model d'assistent per afegir el conjunt de productes a una cotització"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Podeu utilitzar una comanda de venda assignada només als socis següents: {}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificació el"
|
||||
|
||||
#~ msgid "Active"
|
||||
#~ msgstr "Actiu"
|
||||
|
||||
#~ msgid "Company"
|
||||
#~ msgstr "Companyia"
|
||||
|
||||
#~ msgid "Internal Reference"
|
||||
#~ msgstr "Referència interna"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nom"
|
||||
|
||||
#~ msgid "Partner"
|
||||
#~ msgstr "Soci"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Producte"
|
||||
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr "Referència interna de conjunt de productes"
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "Nom del conjunt de producte"
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "Productes"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Seqüència"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "Conjunt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You can attache the set to a specific partner or no one. If you don't "
|
||||
#~ "specify one, it's going to be available for all of them."
|
||||
#~ msgstr ""
|
||||
#~ "Podeu adjuntar el conjunt a un soci o a ningú. Si no n'especifiqueu cap, "
|
||||
#~ "estarà disponible per a tots ells."
|
||||
|
||||
#~ msgid "Select a product set assigned to the same partner of the order."
|
||||
#~ msgstr ""
|
||||
#~ "Seleccioneu un conjunt de productes assignat al mateix soci de la comanda."
|
||||
156
sale_product_set/i18n/cs.po
Executable file
156
sale_product_set/i18n/cs.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořil(a)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Naposled upraveno"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Název"
|
||||
156
sale_product_set/i18n/da.po
Executable file
156
sale_product_set/i18n/da.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sidst ændret den"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Navn"
|
||||
203
sale_product_set/i18n/de.po
Executable file
203
sale_product_set/i18n/de.po
Executable file
@@ -0,0 +1,203 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2024-03-27 16:36+0000\n"
|
||||
"Last-Translator: Nils Coenen <nils.coenen@nico-solutions.de>\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"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr "Zeile hinzufügen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr "Notiz hinzufügen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr "Abschnitt hinzufügen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Produktset hinzufügen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Produktset im Verkaufsauftrag hinzufügen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Produktset als Auftragszeilen hinzufügen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr "Produktset zum Verkaufsauftrag hinzufügen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Kunde"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "Rabatt (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Wenn das Häkchen gesetzt ist, werden die Produkte, die bereits im Auftrag "
|
||||
"enthalten sind, nicht neu hinzugefügt."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Produktset"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Produktset-Position"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Produktset-Positionen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Menge"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Verkaufsauftrag"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Existierende Produkte überspringen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Assistent zum Hinzufügen eines Produktsets zu einem Angebot"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Es kann nur ein Verkaufsauftrag verwendet werden, der den/m folgenden "
|
||||
"Partner(n) zugeordnet ist: {}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zuletzt geändert am"
|
||||
|
||||
#~ msgid "Active"
|
||||
#~ msgstr "Aktiv"
|
||||
|
||||
#~ msgid "Company"
|
||||
#~ msgstr "Unternehmen"
|
||||
|
||||
#~ msgid "Internal Reference"
|
||||
#~ msgstr "Interne Referenz"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Bezeichnung"
|
||||
|
||||
#~ msgid "Partner"
|
||||
#~ msgstr "Partner"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Produkt"
|
||||
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr ""
|
||||
#~ "Dies ist die interne Referenz des Produktsets, z.B. eine Produktset-"
|
||||
#~ "Nummer."
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "Dies ist der Name des Produktssets."
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "Produkte"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Sequenz"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "Produktset"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You can attache the set to a specific partner or no one. If you don't "
|
||||
#~ "specify one, it's going to be available for all of them."
|
||||
#~ msgstr ""
|
||||
#~ "Das Produktset kann einem Partner oder niemandem zugeordnet werden. Wenn "
|
||||
#~ "kein Partner definiert wird, ist das Produktset für alle verwendbar."
|
||||
|
||||
#~ msgid "Product Set Line"
|
||||
#~ msgstr "Produktset-Position"
|
||||
154
sale_product_set/i18n/el_GR.po
Executable file
154
sale_product_set/i18n/el_GR.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-07-08 00:49+0000\n"
|
||||
"PO-Revision-Date: 2017-07-08 00:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Ονομασία"
|
||||
157
sale_product_set/i18n/en_GB.po
Executable file
157
sale_product_set/i18n/en_GB.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Last Modified on"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Name"
|
||||
202
sale_product_set/i18n/es.po
Executable file
202
sale_product_set/i18n/es.po
Executable file
@@ -0,0 +1,202 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2023-12-18 20:10+0000\n"
|
||||
"Last-Translator: Ivorra78 <informatica@totmaterial.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.17\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr "Añadir una línea"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr "Añadir Una Nota"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr "Añadir Una Sección"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Añadir conjunto"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Añadir conjunto en el pedido de ventas"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Añadir conjunto en la línea de pedido de ventas"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr "Añadir conjunto a la orden de venta"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "Descuento (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Habilite esto para no agregar nuevas líneas para productos ya incluidos en "
|
||||
"las líneas SO."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Conjunto de productos"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Línea de conjunto de productos"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Líneas de conjunto de productos"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Pedido de venta"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Saltar productos existentes"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Asistente para añadir un conjunto de productos en un presupuesto"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Puede usar un pedido de venta asignados solo al/los siguiente/s contacto/s: "
|
||||
"{}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Active"
|
||||
#~ msgstr "Activo"
|
||||
|
||||
#~ msgid "Company"
|
||||
#~ msgstr "Compañía"
|
||||
|
||||
#~ msgid "Internal Reference"
|
||||
#~ msgstr "Referencia interna"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
|
||||
#~ msgid "Partner"
|
||||
#~ msgstr "Contacto"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Producto"
|
||||
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr "Establece referencia interna producto"
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "Nombre del conjunto de productos"
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "Productos"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Secuencia"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "Conjunto"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You can attache the set to a specific partner or no one. If you don't "
|
||||
#~ "specify one, it's going to be available for all of them."
|
||||
#~ msgstr ""
|
||||
#~ "Puede adjuntar el conjunto a un contacto específico o a nadie. Si no "
|
||||
#~ "especifica ninguno, estará disponible para todos ellos."
|
||||
|
||||
#~ msgid "Select a product set assigned to the same partner of the order."
|
||||
#~ msgstr ""
|
||||
#~ "Seleccione un conjunto de productos asignado al mismo socio del pedido."
|
||||
157
sale_product_set/i18n/es_AR.po
Executable file
157
sale_product_set/i18n/es_AR.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
157
sale_product_set/i18n/es_CL.po
Executable file
157
sale_product_set/i18n/es_CL.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
157
sale_product_set/i18n/es_CO.po
Executable file
157
sale_product_set/i18n/es_CO.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última Modificación el"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
154
sale_product_set/i18n/es_CR.po
Executable file
154
sale_product_set/i18n/es_CR.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
157
sale_product_set/i18n/es_DO.po
Executable file
157
sale_product_set/i18n/es_DO.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
157
sale_product_set/i18n/es_EC.po
Executable file
157
sale_product_set/i18n/es_EC.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última modificación en"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
151
sale_product_set/i18n/es_ES.po
Executable file
151
sale_product_set/i18n/es_ES.po
Executable file
@@ -0,0 +1,151 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
157
sale_product_set/i18n/es_MX.po
Executable file
157
sale_product_set/i18n/es_MX.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_MX/)\n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizacion por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización realizada"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima modificacion realizada"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
157
sale_product_set/i18n/es_PE.po
Executable file
157
sale_product_set/i18n/es_PE.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima Modificación en"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
154
sale_product_set/i18n/es_PY.po
Executable file
154
sale_product_set/i18n/es_PY.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
157
sale_product_set/i18n/es_VE.po
Executable file
157
sale_product_set/i18n/es_VE.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Modificada por última vez"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nombre"
|
||||
156
sale_product_set/i18n/et.po
Executable file
156
sale_product_set/i18n/et.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Viimati muudetud"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nimi"
|
||||
153
sale_product_set/i18n/eu.po
Executable file
153
sale_product_set/i18n/eu.po
Executable file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Izena"
|
||||
156
sale_product_set/i18n/fa.po
Executable file
156
sale_product_set/i18n/fa.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجاد شده در"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین به روز رسانی توسط"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "نام"
|
||||
156
sale_product_set/i18n/fi.po
Executable file
156
sale_product_set/i18n/fi.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Viimeksi muokattu"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nimi"
|
||||
198
sale_product_set/i18n/fr.po
Executable file
198
sale_product_set/i18n/fr.po
Executable file
@@ -0,0 +1,198 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-11-26 11:44+0000\n"
|
||||
"PO-Revision-Date: 2021-05-14 18:47+0000\n"
|
||||
"Last-Translator: Yves Le Doeuff <yld@alliasys.fr>\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"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Ajout d'un Set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Ajouter un Set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Ajout d'un Set au devis"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Client"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "Remise (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Activez cette option pour ne pas ajouter de nouvelles lignes pour les "
|
||||
"produits déjà inclus dans les lignes de commande."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Set de produit"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "ligne du Set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Lignes du Set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Quantité"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Commande"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Sauter les produits existants"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Wizard pour ajouter un set dans une offre"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Vous pouvez utiliser un ordre de vente affecté uniquement au(x) "
|
||||
"partenaire(s) suivant(s) : {}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Dernière modification le"
|
||||
|
||||
#~ msgid "Active"
|
||||
#~ msgstr "Actif"
|
||||
|
||||
#~ msgid "Company"
|
||||
#~ msgstr "Société"
|
||||
|
||||
#~ msgid "Internal Reference"
|
||||
#~ msgstr "Référence interne"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nom"
|
||||
|
||||
#~ msgid "Partner"
|
||||
#~ msgstr "Partenaire"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Article"
|
||||
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr "Référence interne du set de produits"
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "Nom du Set"
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "Produits"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Séquence"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "Set"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You can attache the set to a specific partner or no one. If you don't "
|
||||
#~ "specify one, it's going to be available for all of them."
|
||||
#~ msgstr ""
|
||||
#~ "Vous pouvez attacher le set à un partenaire spécifique ou à personne. Si "
|
||||
#~ "vous n'en précisez pas un, il sera disponible pour tous."
|
||||
154
sale_product_set/i18n/fr_CA.po
Executable file
154
sale_product_set/i18n/fr_CA.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nom"
|
||||
154
sale_product_set/i18n/fr_CH.po
Executable file
154
sale_product_set/i18n/fr_CH.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Dernière modification le"
|
||||
195
sale_product_set/i18n/fr_FR.po
Executable file
195
sale_product_set/i18n/fr_FR.po
Executable file
@@ -0,0 +1,195 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2021-04-11 17:46+0000\n"
|
||||
"Last-Translator: Yves Le Doeuff <yld@alliasys.fr>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: fr_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"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Ajout d'un Set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Ajouter un Set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Ajout d'un Set au devis"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Client"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "Remise (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Activez cette option pour ne pas ajouter de nouvelles lignes pour les "
|
||||
"produits déjà inclus dans des lignes de commandes."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Set de produit"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Ligne du Set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Lignes du Set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Quantité"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Commande"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Sauter les produits existants"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Wizard pour ajouter un set dans une offre"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Vous pouvez utiliser un ordre de vente affecté uniquement au(x) "
|
||||
"partenaire(s) suivant(s) : {}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Dernière modification le"
|
||||
|
||||
#~ msgid "Active"
|
||||
#~ msgstr "Actif"
|
||||
|
||||
#~ msgid "Company"
|
||||
#~ msgstr "Société"
|
||||
|
||||
#~ msgid "Internal Reference"
|
||||
#~ msgstr "Référence interne"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nom"
|
||||
|
||||
#~ msgid "Partner"
|
||||
#~ msgstr "Partenaire"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Article"
|
||||
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr "Référence interne du set"
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "Nom du Set"
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "Produits"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Séquence"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "Set"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You can attache the set to a specific partner or no one. If you don't "
|
||||
#~ "specify one, it's going to be available for all of them."
|
||||
#~ msgstr ""
|
||||
#~ "Vous pouvez attacher le set à un partenaire spécifique ou à personne. Si "
|
||||
#~ "vous n'en précisez pas un, il sera disponible pour tous."
|
||||
156
sale_product_set/i18n/gl.po
Executable file
156
sale_product_set/i18n/gl.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ültima actualización por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Modificado por última vez o"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nome"
|
||||
151
sale_product_set/i18n/gl_ES.po
Executable file
151
sale_product_set/i18n/gl_ES.po
Executable file
@@ -0,0 +1,151 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
156
sale_product_set/i18n/he.po
Executable file
156
sale_product_set/i18n/he.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על ידי"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עודכן לאחרונה על"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "שם"
|
||||
176
sale_product_set/i18n/hr.po
Executable file
176
sale_product_set/i18n/hr.po
Executable file
@@ -0,0 +1,176 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-01-16 03:41+0000\n"
|
||||
"PO-Revision-Date: 2018-01-16 03:41+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Dodaj set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Dodaj set u ponudu"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Dodaj set u stavku ponude"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Set proizvoda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Stavka seta proizvoda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Stavke seta proizvoda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Količina"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Model čarobnjaka za dodavanje setova u ponudu"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnja promjena"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Naziv"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Proizvod"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr "Stavka seta proizvoda"
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "Naziv seta proizvoda"
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "Proizvodi"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Sekvenca"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "Set"
|
||||
158
sale_product_set/i18n/hr_HR.po
Executable file
158
sale_product_set/i18n/hr_HR.po
Executable file
@@ -0,0 +1,158 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-07-08 00:49+0000\n"
|
||||
"PO-Revision-Date: 2017-07-08 00:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnje modificirano"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Naziv"
|
||||
156
sale_product_set/i18n/hu.po
Executable file
156
sale_product_set/i18n/hu.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Készítette"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozás dátuma"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Utoljára frissítve, által"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Utoljára frissítve "
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Név"
|
||||
156
sale_product_set/i18n/id.po
Executable file
156
sale_product_set/i18n/id.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Diperbaharui oleh"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Diperbaharui pada"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nama"
|
||||
170
sale_product_set/i18n/it.po
Executable file
170
sale_product_set/i18n/it.po
Executable file
@@ -0,0 +1,170 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2024-08-20 09:58+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr "Aggiungi una riga"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr "Aggiungi una nota"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr "Aggiungi una sezione"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Aggiungi set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Aggiungere set nell'ordine di vendita"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Aggiungere un set nella riga ordine vendita"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr "Aggiungere set all'ordine di vendita"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "Sconto (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Abilitarlo per non aggiungere nuove righe per prodotti già inclusi nelle "
|
||||
"righe OV."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Set prodotto"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Riga set prodotto"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Righe set prodotto"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Quantità"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Ordine di vendita"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Salta prodotti esistenti"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
"Modello procedura guidata per aggiugere un set prodotto in un preventivo"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Si può utilizzare un ordine di vendita assegnato solo ai seguenti partner: {}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima modifica il"
|
||||
|
||||
#~ msgid "Company"
|
||||
#~ msgstr "Azienda"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nome"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Prodotto"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Sequenza"
|
||||
156
sale_product_set/i18n/ja.po
Executable file
156
sale_product_set/i18n/ja.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "最終更新日"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "名称"
|
||||
156
sale_product_set/i18n/ko.po
Executable file
156
sale_product_set/i18n/ko.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시 이름"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 날짜"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "최근 수정"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "이름"
|
||||
157
sale_product_set/i18n/lt.po
Executable file
157
sale_product_set/i18n/lt.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Paskutinį kartą keista"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Pavadinimas"
|
||||
152
sale_product_set/i18n/lt_LT.po
Executable file
152
sale_product_set/i18n/lt_LT.po
Executable file
@@ -0,0 +1,152 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
154
sale_product_set/i18n/lv.po
Executable file
154
sale_product_set/i18n/lv.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējās izmaiņas"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nosaukums"
|
||||
156
sale_product_set/i18n/mk.po
Executable file
156
sale_product_set/i18n/mk.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Последна промена на"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Име"
|
||||
156
sale_product_set/i18n/mn.po
Executable file
156
sale_product_set/i18n/mn.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэгч"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Нэр"
|
||||
157
sale_product_set/i18n/nb.po
Executable file
157
sale_product_set/i18n/nb.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sist oppdatert "
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Navn"
|
||||
154
sale_product_set/i18n/nb_NO.po
Executable file
154
sale_product_set/i18n/nb_NO.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Laget av"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Laget den"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert den"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sist endret den"
|
||||
156
sale_product_set/i18n/nl.po
Executable file
156
sale_product_set/i18n/nl.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatste bijgewerkt door"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Naam"
|
||||
157
sale_product_set/i18n/nl_BE.po
Executable file
157
sale_product_set/i18n/nl_BE.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst Aangepast op"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Naam:"
|
||||
160
sale_product_set/i18n/nl_NL.po
Executable file
160
sale_product_set/i18n/nl_NL.po
Executable file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# Peter Hageman <hageman.p@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-06 13:17+0000\n"
|
||||
"PO-Revision-Date: 2017-06-06 13:17+0000\n"
|
||||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nl_NL/)\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst aangepast door"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst aangepast op"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst gewijzigd op"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Naam"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Product"
|
||||
158
sale_product_set/i18n/pl.po
Executable file
158
sale_product_set/i18n/pl.po
Executable file
@@ -0,0 +1,158 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzone przez"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Wyświetlana nazwa "
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio modyfikowane przez"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ostatnia zmiana"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ostatnio modyfikowano"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nazwa"
|
||||
156
sale_product_set/i18n/pt.po
Executable file
156
sale_product_set/i18n/pt.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última Modificação Em"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nome"
|
||||
199
sale_product_set/i18n/pt_BR.po
Executable file
199
sale_product_set/i18n/pt_BR.po
Executable file
@@ -0,0 +1,199 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2021-02-14 22:45+0000\n"
|
||||
"Last-Translator: Eder Brito <britoederr@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Adicionar conjunto"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Adicionar conjunto no pedido de venda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Adicionar conjunto na linha do pedido de venda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Cliente"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "Desconto (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome de Exibição"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Habilite isto para não adicionar novas linhas para produtos já incluídas em "
|
||||
"linhas do PV."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Conjunto de Produtos"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Linha de conjunto de produtos"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Linhas de conjunto de produtos"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Quantidade"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Pedido de Venda"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Ignorar Produtos Existentes"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Modelo de assistente para adicionar conjunto de produtos a uma cotação"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Você pode usar um pedido de vendas atribuído somente aos seguintes "
|
||||
"parceiros: {}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última atualização em"
|
||||
|
||||
#~ msgid "Active"
|
||||
#~ msgstr "Ativo"
|
||||
|
||||
#~ msgid "Company"
|
||||
#~ msgstr "Empresa"
|
||||
|
||||
#~ msgid "Internal Reference"
|
||||
#~ msgstr "Referência Interna"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nome"
|
||||
|
||||
#~ msgid "Partner"
|
||||
#~ msgstr "Parceiro"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Produto"
|
||||
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr "Referencia interna do conjunto de produtos"
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "Nome do conjunto de produtos"
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "Produtos"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Sequência"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "Conjunto"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You can attache the set to a specific partner or no one. If you don't "
|
||||
#~ "specify one, it's going to be available for all of them."
|
||||
#~ msgstr ""
|
||||
#~ "Você pode anexar o conjunto a um parceiro específico ou não. Se você não "
|
||||
#~ "especificar um, ele estará disponível para todos."
|
||||
157
sale_product_set/i18n/pt_PT.po
Executable file
157
sale_product_set/i18n/pt_PT.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_PT/)\n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Última Modificação em"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nome"
|
||||
157
sale_product_set/i18n/ro.po
Executable file
157
sale_product_set/i18n/ro.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-07-08 00:49+0000\n"
|
||||
"PO-Revision-Date: 2017-07-08 00:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat la"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare la"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima actualizare în"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Nume"
|
||||
155
sale_product_set/i18n/ru.po
Executable file
155
sale_product_set/i18n/ru.po
Executable file
@@ -0,0 +1,155 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Создан"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Название"
|
||||
177
sale_product_set/i18n/sale_product_set.pot
Executable file
177
sale_product_set/i18n/sale_product_set.pot
Executable file
@@ -0,0 +1,177 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.res_config_settings_inherit_view
|
||||
msgid ""
|
||||
"Archive/unarchive product sets related to partners together with partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.res_config_settings_inherit_view
|
||||
msgid "Product Sets"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_res_config_settings__archive_partner_product_sets
|
||||
msgid "Sync product sets active state with partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_res_config_settings__archive_partner_product_sets
|
||||
msgid ""
|
||||
"When a partner is archived or un-archived its product sets are "
|
||||
"archived or un-archived as well."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
156
sale_product_set/i18n/sk.po
Executable file
156
sale_product_set/i18n/sk.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Posledná modifikácia"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Meno"
|
||||
177
sale_product_set/i18n/sl.po
Executable file
177
sale_product_set/i18n/sl.po
Executable file
@@ -0,0 +1,177 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-01-16 03:41+0000\n"
|
||||
"PO-Revision-Date: 2023-03-31 21:25+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 4.14.1\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Dodaj sklop"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Dodaj sklop v prodajni nalog"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Dodaj sklop v postavko prodajnega naloga"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Preklic"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Sklop proizvodov"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Postavka sklopa proizvodov"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Postavke sklopov proizvodov"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Količina"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Naziv"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "Proizvod"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr "Postavka sklopa proizvodov"
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "Naziv sklopa proizvodov"
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "Proizvodi"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "Zaporedje"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "Sklop"
|
||||
154
sale_product_set/i18n/sr.po
Executable file
154
sale_product_set/i18n/sr.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Ime"
|
||||
158
sale_product_set/i18n/sr@latin.po
Executable file
158
sale_product_set/i18n/sr@latin.po
Executable file
@@ -0,0 +1,158 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
|
||||
"sr@latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zadnja izmjena"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Ime:"
|
||||
161
sale_product_set/i18n/sv.po
Executable file
161
sale_product_set/i18n/sv.po
Executable file
@@ -0,0 +1,161 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2024-06-12 09:36+0000\n"
|
||||
"Last-Translator: jakobkrabbe <jakob@syscare.se>\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"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr "Lägg till en rad"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr "Lägg till en anteckning"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr "Lägg till en sektion"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Lägg till set"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Lägg till set i försäljningsorder"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Lägg till uppsättning i försäljningsorderrad"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr "Lägg till set i försäljningsorder"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Kund"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "Rabatt (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Aktivera detta för att inte lägga till nya rader för produkter som redan "
|
||||
"ingår i SO-rader."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Produktuppsättning"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Produktuppsättning"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Produktlinjer"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Kvantitet"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Försäljningsorder"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Hoppa över befintliga produkter"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Wizard-modell för att lägga till produktuppsättning i en offert"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Du kan använda en försäljningsorder som endast tilldelats följande partner: "
|
||||
"{}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Senast redigerad"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Namn"
|
||||
156
sale_product_set/i18n/th.po
Executable file
156
sale_product_set/i18n/th.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "ชื่อ"
|
||||
160
sale_product_set/i18n/tr.po
Executable file
160
sale_product_set/i18n/tr.po
Executable file
@@ -0,0 +1,160 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2025-07-19 18:25+0000\n"
|
||||
"Last-Translator: Betül Öğmen <betulo@eska.biz>\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"
|
||||
"X-Generator: Weblate 5.10.4\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr "Satır Ekle"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr "Not Ekle"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr "Bir Bölüm Ekle"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "Set ekle"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "Satış siparişine set ekle"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "Satış siparişi satırına set ekle"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr "Satış siparişine set ekle"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "İptal"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr "Müşteri"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "İndirim (%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen İsim"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
"Satış Siparişi Satırlarında zaten olan ürünlere yeni satırlar eklenmemesi "
|
||||
"için bunu etkinleştirin."
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son güncelleyen"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son güncellenme"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "Ürün seti"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "Ürün set satırı"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "Ürün set satırları"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "Miktar"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr "Satış Siparişi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr "Mevcut Ürünleri Atla"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "Bir teklife ürün seti eklemek için sihirbaz modeli"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
"Yalnızca aşağıdaki ortaklara atanmış bir satış emrini kullanabilirsiniz: {}"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Son değişiklik"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Adı"
|
||||
157
sale_product_set/i18n/tr_TR.po
Executable file
157
sale_product_set/i18n/tr_TR.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma tarihi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen ad"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "Kimlik"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "En son güncelleyen "
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "En son güncelleme tarihi"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Ad"
|
||||
157
sale_product_set/i18n/uk.po
Executable file
157
sale_product_set/i18n/uk.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата створення"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Остання модифікація"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Name"
|
||||
156
sale_product_set/i18n/vi.po
Executable file
156
sale_product_set/i18n/vi.po
Executable file
@@ -0,0 +1,156 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Sửa lần cuối vào"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Tên"
|
||||
154
sale_product_set/i18n/vi_VN.po
Executable file
154
sale_product_set/i18n/vi_VN.po
Executable file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-07-08 00:49+0000\n"
|
||||
"PO-Revision-Date: 2017-07-08 00:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tạo bởi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tạo vào"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "Tên"
|
||||
185
sale_product_set/i18n/zh_CN.po
Executable file
185
sale_product_set/i18n/zh_CN.po
Executable file
@@ -0,0 +1,185 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2019-09-01 11:23+0000\n"
|
||||
"Last-Translator: 黎伟杰 <674416404@qq.com>\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"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr "添加集合"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr "在销售订单中添加集合"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr "在销售订单行中添加集合"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建者"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr "折扣(%)"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新者"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr "产品集合"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr "产品集合行"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr "产品集合行"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr "数量"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr "向导模型将产品集合添加到报价中"
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "最后修改时间"
|
||||
|
||||
#~ msgid "Active"
|
||||
#~ msgstr "有效"
|
||||
|
||||
#~ msgid "Company"
|
||||
#~ msgstr "公司"
|
||||
|
||||
#~ msgid "Internal Reference"
|
||||
#~ msgstr "内部参考"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "名称"
|
||||
|
||||
#~ msgid "Product"
|
||||
#~ msgstr "产品"
|
||||
|
||||
#~ msgid "Product set internal reference"
|
||||
#~ msgstr "产品集合内部参考"
|
||||
|
||||
#~ msgid "Product set name"
|
||||
#~ msgstr "产品集合名称"
|
||||
|
||||
#~ msgid "Products"
|
||||
#~ msgstr "产品"
|
||||
|
||||
#~ msgid "Sequence"
|
||||
#~ msgstr "序列"
|
||||
|
||||
#~ msgid "Set"
|
||||
#~ msgstr "集合"
|
||||
157
sale_product_set/i18n/zh_TW.po
Executable file
157
sale_product_set/i18n/zh_TW.po
Executable file
@@ -0,0 +1,157 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_product_set
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a note"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add a section"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.view_order_stock_form
|
||||
msgid "Add set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_order
|
||||
msgid "Add set in sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Add set in sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.actions.act_window,name:sale_product_set.act_open_wizard_product_set_add_from_set
|
||||
msgid "Add set to sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model_terms:ir.ui.view,arch_db:sale_product_set.product_set_add_form_view
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "建立者"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__partner_id
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_product_set_line__discount
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,help:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid ""
|
||||
"Enable this to not add new lines for products already included in SO lines."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__id
|
||||
msgid "ID"
|
||||
msgstr "編號"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新:"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_id
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_config
|
||||
msgid "Product set"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_product_set_line
|
||||
#: model:ir.ui.menu,name:sale_product_set.menu_product_set_line_config
|
||||
msgid "Product set line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__product_set_line_ids
|
||||
msgid "Product set lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__quantity
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__order_id
|
||||
msgid "Sale Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model.fields,field_description:sale_product_set.field_sale_product_set_wizard__skip_existing_products
|
||||
msgid "Skip Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#: model:ir.model,name:sale_product_set.model_sale_product_set_wizard
|
||||
msgid "Wizard model to add product set into a quotation"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_product_set
|
||||
#. odoo-python
|
||||
#: code:addons/sale_product_set/wizard/sale_product_set_wizard.py:0
|
||||
#, python-format
|
||||
msgid "You can use a sale order assigned only to following partner(s): {}"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "最後修改:"
|
||||
|
||||
#~ msgid "Name"
|
||||
#~ msgstr "名稱"
|
||||
3
sale_product_set/models/__init__.py
Executable file
3
sale_product_set/models/__init__.py
Executable file
@@ -0,0 +1,3 @@
|
||||
from . import product_set_line
|
||||
from . import res_partner
|
||||
from . import res_config
|
||||
22
sale_product_set/models/product_set_line.py
Executable file
22
sale_product_set/models/product_set_line.py
Executable file
@@ -0,0 +1,22 @@
|
||||
# Copyright 2015 Anybox S.A.S
|
||||
# Copyright 2016-2018 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ProductSetLine(models.Model):
|
||||
_inherit = "product.set.line"
|
||||
|
||||
discount = fields.Float(string="Discount (%)", digits="Discount", default=0.0)
|
||||
|
||||
def prepare_sale_order_line_values(self, order, quantity, max_sequence=0):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"order_id": order.id,
|
||||
"product_id": self.product_id.id,
|
||||
"product_uom_qty": self.quantity * quantity,
|
||||
"product_uom": self.product_id.uom_id.id,
|
||||
"sequence": max_sequence + self.sequence,
|
||||
"discount": self.discount,
|
||||
"company_id": self.company_id.id,
|
||||
}
|
||||
15
sale_product_set/models/res_config.py
Executable file
15
sale_product_set/models/res_config.py
Executable file
@@ -0,0 +1,15 @@
|
||||
# Copyright 2024 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = "res.config.settings"
|
||||
|
||||
archive_partner_product_sets = fields.Boolean(
|
||||
config_parameter="sale_product_set.archive_partner_product_sets",
|
||||
string="Sync product sets active state with partner",
|
||||
help="When a partner is archived or un-archived \
|
||||
its product sets are archived or un-archived as well.",
|
||||
)
|
||||
33
sale_product_set/models/res_partner.py
Executable file
33
sale_product_set/models/res_partner.py
Executable file
@@ -0,0 +1,33 @@
|
||||
# Copyright 2024 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
||||
|
||||
import logging
|
||||
|
||||
from odoo import models
|
||||
from odoo.tools import str2bool
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = "res.partner"
|
||||
|
||||
def write(self, vals):
|
||||
res = super().write(vals)
|
||||
ir_config_param = self.env["ir.config_parameter"].sudo()
|
||||
|
||||
if "active" in vals and str2bool(
|
||||
ir_config_param.get_param("sale_product_set.archive_partner_product_sets")
|
||||
):
|
||||
partner_product_sets = (
|
||||
self.env["product.set"]
|
||||
.with_context(active_test=False)
|
||||
.search([("partner_id", "in", self.ids)])
|
||||
)
|
||||
partner_product_sets.sudo().write({"active": vals["active"]})
|
||||
_logger.debug(
|
||||
"product.set archive state changed to "
|
||||
"<active | inactive> for partners %s",
|
||||
",".join(str(x) for x in self.ids),
|
||||
)
|
||||
return res
|
||||
3
sale_product_set/pyproject.toml
Executable file
3
sale_product_set/pyproject.toml
Executable file
@@ -0,0 +1,3 @@
|
||||
[build-system]
|
||||
requires = ["whool"]
|
||||
build-backend = "whool.buildapi"
|
||||
12
sale_product_set/readme/CONTRIBUTORS.md
Executable file
12
sale_product_set/readme/CONTRIBUTORS.md
Executable file
@@ -0,0 +1,12 @@
|
||||
- Clovis Nzouendjou \<<clovis@anybox.fr>\>
|
||||
- Pierre Verkest \<<pverkest@anybox.fr>\>
|
||||
- Denis Leemann \<<denis.leemann@camptocamp.com>\>
|
||||
- Simone Orsi \<<simone.orsi@camptocamp.com>\>
|
||||
- Souheil Bejaoui \<<souheil.bejaoui@acsone.eu>\>
|
||||
- Adria Gil Sorribes \<<adria.gil@forgeflow.com>\>
|
||||
- Phuc (Tran Thanh) \<<phuc@trobz.com>\>
|
||||
- Manuel Regidor \<<manuel.regidor@sygel.es>\>
|
||||
- [Tecnativa](https://www.tecnativa.com):
|
||||
- Pilar Vargas
|
||||
- Juan Carlos Oñate
|
||||
- Nils Coenen \<<nils.coenen@nico-solutions.de>\>
|
||||
3
sale_product_set/readme/CREDITS.md
Executable file
3
sale_product_set/readme/CREDITS.md
Executable file
@@ -0,0 +1,3 @@
|
||||
The development of this module has been financially supported by:
|
||||
|
||||
- Camptocamp
|
||||
8
sale_product_set/readme/DESCRIPTION.md
Executable file
8
sale_product_set/readme/DESCRIPTION.md
Executable file
@@ -0,0 +1,8 @@
|
||||
A **product set** is a list of products which end customers aren't
|
||||
aware, this list is defined by sales manager.
|
||||
|
||||
This module aims to load a product set in a sales order though a wizard. The product set is a list of products and quantities that gets inserted as separate sales order lines.
|
||||
|
||||
After a *product set* is added to the sales order, each line can be
|
||||
updated or removed as any other sales order lines.
|
||||
|
||||
11
sale_product_set/readme/USAGE.md
Executable file
11
sale_product_set/readme/USAGE.md
Executable file
@@ -0,0 +1,11 @@
|
||||
- Define a *product set* as sales manager:
|
||||
- choose products
|
||||
- for each product, define a quantity.
|
||||
- for each product (if Discounts setting is active), define a
|
||||
discount or leave default value
|
||||
- Sort *set* lines, this order will be the default when added into the
|
||||
quotation
|
||||
- Then you can remove or update added lines as any other sales order
|
||||
lines.
|
||||
|
||||

|
||||
4
sale_product_set/security/ir.model.access.csv
Executable file
4
sale_product_set/security/ir.model.access.csv
Executable file
@@ -0,0 +1,4 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
sale_product_set_manager,Read-Write-Create access on product.set to Sale Manager,product_set.model_product_set,sales_team.group_sale_manager,1,1,1,1
|
||||
sale_product_set_line_manager,Read-Write-Create access on product.set.line to Sale Manager,product_set.model_product_set_line,sales_team.group_sale_manager,1,1,1,1
|
||||
sale_product_set.access_sale_product_set_wizard,access_sale_product_set_wizard,sale_product_set.model_sale_product_set_wizard,base.group_user,1,1,1,1
|
||||
|
BIN
sale_product_set/static/description/add_set.png
Executable file
BIN
sale_product_set/static/description/add_set.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
BIN
sale_product_set/static/description/icon.png
Executable file
BIN
sale_product_set/static/description/icon.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
468
sale_product_set/static/description/index.html
Executable file
468
sale_product_set/static/description/index.html
Executable file
@@ -0,0 +1,468 @@
|
||||
<!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>Sales product set</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" id="sales-product-set">
|
||||
<h1 class="title">Sales product set</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:2f7beee55c7bf24a53bdf20c9eaa6dec4098d084c0bdb197a8b3702fae33e2a1
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<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/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/sale-workflow/tree/18.0/sale_product_set"><img alt="OCA/sale-workflow" src="https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/sale-workflow-18-0/sale-workflow-18-0-sale_product_set"><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/sale-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>A <strong>product set</strong> is a list of products which end customers aren’t
|
||||
aware, this list is defined by sales manager.</p>
|
||||
<p>This module aims to load a product set in a sales order though a wizard.
|
||||
The product set is a list of products and quantities that gets inserted
|
||||
as separate sales order lines.</p>
|
||||
<p>After a <em>product set</em> is added to the sales order, each line can be
|
||||
updated or removed as any other sales order lines.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-2">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-4">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-5">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#other-credits" id="toc-entry-6">Other credits</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
||||
<ul class="simple">
|
||||
<li>Define a <em>product set</em> as sales manager:<ul>
|
||||
<li>choose products</li>
|
||||
<li>for each product, define a quantity.</li>
|
||||
<li>for each product (if Discounts setting is active), define a discount
|
||||
or leave default value</li>
|
||||
<li>Sort <em>set</em> lines, this order will be the default when added into the
|
||||
quotation</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Then you can remove or update added lines as any other sales order
|
||||
lines.</li>
|
||||
</ul>
|
||||
<p><img alt="Sale order" src="https://raw.githubusercontent.com/sale_product_set/static/description/sale_order.png" /></p>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/sale-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/sale-workflow/issues/new?body=module:%20sale_product_set%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">
|
||||
<h1><a class="toc-backref" href="#toc-entry-3">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-4">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Anybox</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Clovis Nzouendjou <<a class="reference external" href="mailto:clovis@anybox.fr">clovis@anybox.fr</a>></li>
|
||||
<li>Pierre Verkest <<a class="reference external" href="mailto:pverkest@anybox.fr">pverkest@anybox.fr</a>></li>
|
||||
<li>Denis Leemann <<a class="reference external" href="mailto:denis.leemann@camptocamp.com">denis.leemann@camptocamp.com</a>></li>
|
||||
<li>Simone Orsi <<a class="reference external" href="mailto:simone.orsi@camptocamp.com">simone.orsi@camptocamp.com</a>></li>
|
||||
<li>Souheil Bejaoui <<a class="reference external" href="mailto:souheil.bejaoui@acsone.eu">souheil.bejaoui@acsone.eu</a>></li>
|
||||
<li>Adria Gil Sorribes <<a class="reference external" href="mailto:adria.gil@forgeflow.com">adria.gil@forgeflow.com</a>></li>
|
||||
<li>Phuc (Tran Thanh) <<a class="reference external" href="mailto:phuc@trobz.com">phuc@trobz.com</a>></li>
|
||||
<li>Manuel Regidor <<a class="reference external" href="mailto:manuel.regidor@sygel.es">manuel.regidor@sygel.es</a>></li>
|
||||
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
|
||||
<li>Pilar Vargas</li>
|
||||
<li>Juan Carlos Oñate</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Nils Coenen <<a class="reference external" href="mailto:nils.coenen@nico-solutions.de">nils.coenen@nico-solutions.de</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="other-credits">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Other credits</a></h2>
|
||||
<p>The development of this module has been financially supported by:</p>
|
||||
<ul class="simple">
|
||||
<li>Camptocamp</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
|
||||
<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>This module is part of the <a class="reference external" href="https://github.com/OCA/sale-workflow/tree/18.0/sale_product_set">OCA/sale-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>
|
||||
</body>
|
||||
</html>
|
||||
BIN
sale_product_set/static/description/product_set.png
Executable file
BIN
sale_product_set/static/description/product_set.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
BIN
sale_product_set/static/description/sale_order.png
Executable file
BIN
sale_product_set/static/description/sale_order.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
1
sale_product_set/tests/__init__.py
Executable file
1
sale_product_set/tests/__init__.py
Executable file
@@ -0,0 +1 @@
|
||||
from . import test_product_set
|
||||
269
sale_product_set/tests/test_product_set.py
Executable file
269
sale_product_set/tests/test_product_set.py
Executable file
@@ -0,0 +1,269 @@
|
||||
# Copyright 2015 Anybox S.A.S
|
||||
# Copyright 2016-2018 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import exceptions
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
class TestProductSet(common.TransactionCase):
|
||||
"""Test Product set"""
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
|
||||
cls.so_model = cls.env["sale.order"]
|
||||
cls.so = cls.env.ref("sale.sale_order_6")
|
||||
cls.product_set_add = cls.env["sale.product.set.wizard"]
|
||||
cls.product_set = cls.env.ref("product_set.product_set_i5_computer")
|
||||
|
||||
def _get_wiz(self, ctx=None, **kw):
|
||||
vals = {
|
||||
"product_set_id": self.product_set.id,
|
||||
"order_id": self.so.id,
|
||||
"quantity": 2,
|
||||
}
|
||||
vals.update(kw)
|
||||
return self.product_set_add.with_context(**ctx or {}).create(vals)
|
||||
|
||||
def test_add_set_lines_init(self):
|
||||
wiz = self._get_wiz()
|
||||
# Default to all lines from set
|
||||
self.assertEqual(wiz.product_set_line_ids, self.product_set.set_line_ids)
|
||||
self.assertEqual(
|
||||
[x.id for x in wiz._get_lines()], self.product_set.set_line_ids.ids
|
||||
)
|
||||
# Pass via ctx
|
||||
line_ids = self.env.ref("product_set.product_set_line_computer_1").ids
|
||||
wiz = self._get_wiz(ctx=dict(product_set_add__set_line_ids=line_ids))
|
||||
self.assertEqual(wiz.product_set_line_ids.ids, line_ids)
|
||||
self.assertEqual([x.id for x in wiz._get_lines()], line_ids)
|
||||
# Pass at create
|
||||
line_ids = self.env.ref("product_set.product_set_line_computer_3").ids
|
||||
wiz = self._get_wiz()
|
||||
wiz.product_set_line_ids = line_ids
|
||||
self.assertEqual(wiz.product_set_line_ids.ids, line_ids)
|
||||
self.assertEqual([x.id for x in wiz._get_lines()], line_ids)
|
||||
|
||||
def test_add_set(self):
|
||||
so = self.so
|
||||
count_lines = len(so.order_line)
|
||||
# Simulation the opening of the wizard and adding a set on the
|
||||
# current sale order
|
||||
wiz = self._get_wiz()
|
||||
wiz.add_set()
|
||||
# checking our sale order
|
||||
self.assertEqual(len(so.order_line), count_lines + 3)
|
||||
# check all lines are included
|
||||
for line in self.product_set.set_line_ids:
|
||||
order_line = so.order_line.filtered(
|
||||
lambda x, line=line: x.product_id == line.product_id
|
||||
)
|
||||
order_line.ensure_one()
|
||||
self.assertEqual(order_line.product_uom_qty, line.quantity * wiz.quantity)
|
||||
|
||||
sequence = {}
|
||||
for line in so.order_line:
|
||||
sequence[line.product_id.id] = line.sequence
|
||||
# make sure sale order line sequence keep sequence set on set
|
||||
seq_line1 = sequence.pop(
|
||||
self.env.ref("product_set.product_set_line_computer_4").product_id.id
|
||||
)
|
||||
seq_line2 = sequence.pop(
|
||||
self.env.ref("product_set.product_set_line_computer_1").product_id.id
|
||||
)
|
||||
seq_line3 = sequence.pop(
|
||||
self.env.ref("product_set.product_set_line_computer_3").product_id.id
|
||||
)
|
||||
self.assertTrue(
|
||||
max(v for k, v in sequence.items()) < seq_line1 < seq_line2 < seq_line3
|
||||
)
|
||||
|
||||
def test_add_set_sequence(self):
|
||||
so = self.so
|
||||
count_lines = len(so.order_line)
|
||||
# Start from -1 to have mixed negative, null and positive (-1, 0, 1)
|
||||
for seq, line in enumerate(self.product_set.set_line_ids, start=-1):
|
||||
line.write({"sequence": seq})
|
||||
wiz = self._get_wiz()
|
||||
wiz.add_set()
|
||||
sequence = {line.product_id: line.sequence for line in so.order_line}
|
||||
self.assertEqual(len(so.order_line), count_lines + 3)
|
||||
# make sure sale order line sequence keep sequence set on set
|
||||
seq_line1 = sequence.pop(
|
||||
self.env.ref("product_set.product_set_line_computer_4").product_id
|
||||
)
|
||||
seq_line2 = sequence.pop(
|
||||
self.env.ref("product_set.product_set_line_computer_1").product_id
|
||||
)
|
||||
seq_line3 = sequence.pop(
|
||||
self.env.ref("product_set.product_set_line_computer_3").product_id
|
||||
)
|
||||
self.assertTrue(
|
||||
max(v for k, v in sequence.items()) < seq_line1 < seq_line2 < seq_line3
|
||||
)
|
||||
|
||||
def test_delete_set(self):
|
||||
# Simulation the opening of the wizard and adding a set on the
|
||||
# current sale order
|
||||
wiz = self._get_wiz()
|
||||
self.product_set.unlink()
|
||||
self.assertFalse(wiz.exists())
|
||||
|
||||
def test_add_set_on_empty_so(self):
|
||||
so = self.so_model.create({"partner_id": self.ref("base.res_partner_1")})
|
||||
wiz = self._get_wiz(order_id=so.id)
|
||||
wiz.add_set()
|
||||
self.assertEqual(len(so.order_line), 3)
|
||||
|
||||
def test_add_set_non_matching_partner(self):
|
||||
so = self.so_model.create({"partner_id": self.ref("base.res_partner_1")})
|
||||
self.product_set.partner_id = self.ref("base.res_partner_2")
|
||||
wiz = self._get_wiz(order_id=so.id)
|
||||
with self.assertRaises(exceptions.ValidationError):
|
||||
wiz.add_set()
|
||||
|
||||
def test_add_set_non_matching_partner_ctx_bypass(self):
|
||||
so = self.so_model.create({"partner_id": self.ref("base.res_partner_1")})
|
||||
self.assertEqual(len(so.order_line), 0)
|
||||
self.product_set.partner_id = self.ref("base.res_partner_2")
|
||||
wiz = self._get_wiz(order_id=so.id).with_context(
|
||||
product_set_add_skip_validation=True
|
||||
)
|
||||
wiz.add_set()
|
||||
self.assertEqual(len(so.order_line), 3)
|
||||
|
||||
def test_add_set_non_matching_partner_ctx_override(self):
|
||||
so = self.so_model.create({"partner_id": self.ref("base.res_partner_1")})
|
||||
self.assertEqual(len(so.order_line), 0)
|
||||
wiz = self._get_wiz(order_id=so.id).with_context(
|
||||
allowed_order_partner_ids=[self.ref("base.res_partner_2")]
|
||||
)
|
||||
wiz.add_set()
|
||||
self.assertEqual(len(so.order_line), 3)
|
||||
|
||||
def test_add_set_no_update_existing_products(self):
|
||||
so = self.so_model.create({"partner_id": self.ref("base.res_partner_1")})
|
||||
wiz = self._get_wiz(order_id=so.id)
|
||||
wiz.add_set()
|
||||
self.assertEqual(len(so.order_line), 3)
|
||||
# if we run it again by default the wizard sums up quantities
|
||||
wiz.add_set()
|
||||
self.assertEqual(len(so.order_line), 6)
|
||||
# but we can turn it off
|
||||
wiz.skip_existing_products = True
|
||||
wiz.add_set()
|
||||
self.assertEqual(len(so.order_line), 6)
|
||||
|
||||
def test_discount(self):
|
||||
product_test = self.env["product.product"].create(
|
||||
{"name": "Test", "list_price": 100.0}
|
||||
)
|
||||
set_line = self.env["product.set.line"].create(
|
||||
{"product_id": product_test.id, "quantity": 1, "discount": 50}
|
||||
)
|
||||
prod_set = self.env["product.set"].create(
|
||||
{"name": "Test", "set_line_ids": [(4, set_line.id)]}
|
||||
)
|
||||
so = self.env.ref("sale.sale_order_6")
|
||||
wiz = self.product_set_add.create(
|
||||
{"order_id": so.id, "product_set_id": prod_set.id, "quantity": 1}
|
||||
)
|
||||
wiz.add_set()
|
||||
order_line = so.order_line.filtered(
|
||||
lambda x: x.product_id == prod_set.set_line_ids[0].product_id
|
||||
)
|
||||
order_line.ensure_one()
|
||||
self.assertEqual(order_line.discount, set_line.discount)
|
||||
|
||||
def test_product_set_delete_in_wizard(self):
|
||||
products = self.so.order_line.product_id
|
||||
wizard = self._get_wiz()
|
||||
wizard.write({"product_set_line_ids": [(3, wizard.product_set_line_ids[0].id)]})
|
||||
products |= wizard.product_set_line_ids.product_id
|
||||
wizard.add_set()
|
||||
self.assertEqual(products, self.so.order_line.product_id)
|
||||
self.assertEqual(len(self.so.order_line), 3)
|
||||
|
||||
def test_add_set_section(self):
|
||||
so = self.env.ref("sale.sale_order_6")
|
||||
base_line_ids = so.order_line
|
||||
count_lines = len(so.order_line)
|
||||
product_set_with_section = self.env.ref("product_set.product_set_services")
|
||||
so_set = self.product_set_add.create(
|
||||
{
|
||||
"product_set_id": product_set_with_section.id,
|
||||
"quantity": 2,
|
||||
"order_id": so.id,
|
||||
}
|
||||
)
|
||||
so_set.add_set()
|
||||
self.assertEqual(len(so.order_line), count_lines + 3)
|
||||
products_in_set = product_set_with_section.set_line_ids.filtered(
|
||||
lambda a: a.product_id
|
||||
).mapped("product_id")
|
||||
# Check lines with products
|
||||
for line in so.order_line.filtered(
|
||||
lambda a: a.id not in base_line_ids.ids and a.product_id
|
||||
):
|
||||
self.assertFalse(line.display_type)
|
||||
self.assertTrue(line.product_id.id in products_in_set.ids)
|
||||
# Test sections
|
||||
for line in so.order_line.filtered(
|
||||
lambda a: a.id not in base_line_ids.ids and not a.product_id
|
||||
):
|
||||
self.assertEqual(
|
||||
line.display_type,
|
||||
"line_section",
|
||||
)
|
||||
|
||||
def test_product_set_toggle_active(self):
|
||||
partner_1 = self.env.ref("base.res_partner_1")
|
||||
partner_2 = self.env.ref("base.res_partner_2")
|
||||
|
||||
self.product_set_2 = self.product_set.copy()
|
||||
self.product_set_3 = self.product_set.copy()
|
||||
|
||||
self.product_set.partner_id = partner_1
|
||||
self.product_set_2.partner_id = partner_1
|
||||
|
||||
self.product_set_3.partner_id = partner_2
|
||||
|
||||
ICPSudo = self.env["ir.config_parameter"].sudo()
|
||||
ICPSudo.set_param("sale_product_set.archive_partner_product_sets", True)
|
||||
|
||||
# partners active, product sets active
|
||||
self.assertTrue(self.product_set.active)
|
||||
self.assertTrue(self.product_set_2.active)
|
||||
self.assertTrue(self.product_set_3.active)
|
||||
|
||||
self.assertTrue(partner_1.active)
|
||||
self.assertTrue(partner_2.active)
|
||||
|
||||
# archive partner_1, product set_2 and product set_1 should be archived
|
||||
partner_1.write({"active": False})
|
||||
self.assertFalse(self.product_set.active)
|
||||
self.assertFalse(self.product_set_2.active)
|
||||
self.assertTrue(self.product_set_3.active)
|
||||
|
||||
# archive partner_2, product set_3 should be archived
|
||||
partner_2.write({"active": False})
|
||||
self.assertFalse(self.product_set_3.active)
|
||||
|
||||
# unarchive partner_1 and partner_3, all product sets should be unarchived too
|
||||
partner_1.write({"active": True})
|
||||
partner_2.write({"active": True})
|
||||
|
||||
self.assertTrue(self.product_set.active)
|
||||
self.assertTrue(self.product_set_2.active)
|
||||
self.assertTrue(self.product_set_3.active)
|
||||
|
||||
# set param to False and make sure partner's active state
|
||||
# does not affect product set's active state
|
||||
ICPSudo.set_param("sale_product_set.archive_partner_product_sets", False)
|
||||
|
||||
# partner archived, product set not archived
|
||||
partner_1.write({"active": False})
|
||||
self.assertTrue(self.product_set.active)
|
||||
self.assertTrue(self.product_set_2.active)
|
||||
self.assertFalse(partner_1.active)
|
||||
21
sale_product_set/views/product_set.xml
Executable file
21
sale_product_set/views/product_set.xml
Executable file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="view_product_set_form" model="ir.ui.view">
|
||||
<field name="name">product.set.form</field>
|
||||
<field name="model">product.set</field>
|
||||
<field name="type">form</field>
|
||||
<field name="inherit_id" ref="product_set.view_product_set_form" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="quantity" position="after">
|
||||
<field name="discount" groups="sale.group_discount_per_so_line" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
<menuitem
|
||||
id="menu_product_set_config"
|
||||
parent="sale.product_menu_catalog"
|
||||
groups="sales_team.group_sale_manager"
|
||||
sequence="20"
|
||||
action="product_set.act_open_product_set_view"
|
||||
/>
|
||||
</odoo>
|
||||
21
sale_product_set/views/product_set_line.xml
Executable file
21
sale_product_set/views/product_set_line.xml
Executable file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="view_product_set_line_tree" model="ir.ui.view">
|
||||
<field name="name">product.set.line.list</field>
|
||||
<field name="model">product.set.line</field>
|
||||
<field name="type">list</field>
|
||||
<field name="inherit_id" ref="product_set.view_product_set_line_tree" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="quantity" position="after">
|
||||
<field name="discount" groups="sale.group_discount_per_so_line" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
<menuitem
|
||||
id="menu_product_set_line_config"
|
||||
parent="sale.product_menu_catalog"
|
||||
groups="sales_team.group_sale_manager"
|
||||
sequence="20"
|
||||
action="product_set.act_open_product_set_line_view"
|
||||
/>
|
||||
</odoo>
|
||||
20
sale_product_set/views/res_config_settings.xml
Executable file
20
sale_product_set/views/res_config_settings.xml
Executable file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="res_config_settings_inherit_view" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.inherit.view</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="sale.res_config_settings_view_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//app[@name='sale_management']" position="inside">
|
||||
<block title="Product Sets" name="product_set_container">
|
||||
<setting
|
||||
id="product_set_archive"
|
||||
help="Archive/unarchive product sets related to partners together with partner"
|
||||
>
|
||||
<field name="archive_partner_product_sets" />
|
||||
</setting>
|
||||
</block>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
21
sale_product_set/views/sale_order.xml
Executable file
21
sale_product_set/views/sale_order.xml
Executable file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="view_order_stock_form">
|
||||
<field name="name">sale.order.form.inherit</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="inherit_id" ref="sale.view_order_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='action_add_from_catalog']" position="before">
|
||||
<button
|
||||
class="px-2 btn-link"
|
||||
type="action"
|
||||
name="%(act_open_wizard_product_set_add_from_order)d"
|
||||
invisible="state not in ('draft', 'sent')"
|
||||
groups="base.group_user"
|
||||
string="Add set"
|
||||
context="{'order_id': parent.id}"
|
||||
/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
1
sale_product_set/wizard/__init__.py
Executable file
1
sale_product_set/wizard/__init__.py
Executable file
@@ -0,0 +1 @@
|
||||
from . import sale_product_set_wizard
|
||||
115
sale_product_set/wizard/sale_product_set_wizard.py
Executable file
115
sale_product_set/wizard/sale_product_set_wizard.py
Executable file
@@ -0,0 +1,115 @@
|
||||
# Copyright 2015 Anybox S.A.S
|
||||
# Copyright 2016-2020 Camptocamp SA
|
||||
# @author Simone Orsi <simahawk@gmail.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import api, exceptions, fields, models
|
||||
|
||||
|
||||
class SaleProductSetWizard(models.TransientModel):
|
||||
_inherit = "product.set.wizard"
|
||||
_name = "sale.product.set.wizard"
|
||||
_description = "Wizard model to add product set into a quotation"
|
||||
|
||||
order_id = fields.Many2one(
|
||||
"sale.order",
|
||||
"Sale Order",
|
||||
required=True,
|
||||
default=lambda self: self.env.context.get("active_id")
|
||||
if self.env.context.get("active_model") == "sale.order"
|
||||
else None,
|
||||
ondelete="cascade",
|
||||
)
|
||||
partner_id = fields.Many2one(related="order_id.partner_id", ondelete="cascade")
|
||||
skip_existing_products = fields.Boolean(
|
||||
default=False,
|
||||
help="Enable this to not add new lines "
|
||||
"for products already included in SO lines.",
|
||||
)
|
||||
|
||||
@api.depends_context("product_set_add__set_line_ids")
|
||||
def _compute_product_set_line_ids(self):
|
||||
line_ids = self.env.context.get("product_set_add__set_line_ids", [])
|
||||
lines_from_ctx = self.env["product.set.line"].browse(line_ids)
|
||||
for rec in self:
|
||||
lines = lines_from_ctx.filtered(
|
||||
lambda x, rec=rec: x.product_set_id == rec.product_set_id
|
||||
)
|
||||
if lines:
|
||||
# Use the ones from ctx but make sure they belong to the same set.
|
||||
rec.product_set_line_ids = lines
|
||||
else:
|
||||
# Fallback to all lines from current set
|
||||
return super()._compute_product_set_line_ids()
|
||||
|
||||
def _check_partner(self):
|
||||
"""Validate order partner against product set's partner if any."""
|
||||
if not self.product_set_id.partner_id or self.env.context.get(
|
||||
"product_set_add_skip_validation"
|
||||
):
|
||||
return
|
||||
allowed_partners = self._allowed_order_partners()
|
||||
if self.order_id.partner_id not in allowed_partners:
|
||||
raise exceptions.ValidationError(
|
||||
self.env._(
|
||||
"You can use a sale order assigned "
|
||||
"only to following partner(s): {}"
|
||||
).format(", ".join(allowed_partners.mapped("name")))
|
||||
)
|
||||
return super()._check_partner()
|
||||
|
||||
def _allowed_order_partners(self):
|
||||
"""Product sets' partners allowed for current sale order."""
|
||||
partner_ids = self.env.context.get("allowed_order_partner_ids")
|
||||
if partner_ids:
|
||||
return self.env["res.partner"].browse(partner_ids)
|
||||
return self.product_set_id.partner_id
|
||||
|
||||
def add_set(self):
|
||||
"""Add product set, multiplied by quantity in sale order line"""
|
||||
res = super().add_set()
|
||||
if not self.order_id:
|
||||
return res
|
||||
order_lines = self._prepare_order_lines()
|
||||
if order_lines:
|
||||
self.order_id.write({"order_line": order_lines})
|
||||
return order_lines
|
||||
|
||||
def _prepare_order_lines(self):
|
||||
max_sequence = self._get_max_sequence()
|
||||
order_lines = []
|
||||
for seq, set_line in enumerate(self._get_lines(), start=1):
|
||||
values = self.prepare_sale_order_line_data(set_line)
|
||||
# When we play with sequence widget on a set of product,
|
||||
# it's possible to have a negative sequence.
|
||||
# In this case, the line is not added at the correct place.
|
||||
# So we have to force it with the order of the line.
|
||||
values.update({"sequence": max_sequence + seq})
|
||||
order_lines.append((0, 0, values))
|
||||
return order_lines
|
||||
|
||||
def _get_max_sequence(self):
|
||||
max_sequence = 0
|
||||
if self.order_id.order_line:
|
||||
max_sequence = max(line.sequence for line in self.order_id.order_line)
|
||||
return max_sequence
|
||||
|
||||
def _get_lines(self):
|
||||
if not self.order_id:
|
||||
yield from super()._get_lines()
|
||||
so_product_ids = self.order_id.order_line.mapped("product_id").ids
|
||||
for set_line in self.product_set_line_ids:
|
||||
if self.skip_existing_products and set_line.product_id.id in so_product_ids:
|
||||
continue
|
||||
yield set_line
|
||||
|
||||
def prepare_sale_order_line_data(self, set_line, max_sequence=0):
|
||||
self.ensure_one()
|
||||
line_values = set_line.prepare_sale_order_line_values(
|
||||
self.order_id, self.quantity, max_sequence=max_sequence
|
||||
)
|
||||
if set_line.display_type:
|
||||
line_values.update(
|
||||
{"name": set_line.name, "display_type": set_line.display_type}
|
||||
)
|
||||
|
||||
return line_values
|
||||
88
sale_product_set/wizard/sale_product_set_wizard_view.xml
Executable file
88
sale_product_set/wizard/sale_product_set_wizard_view.xml
Executable file
@@ -0,0 +1,88 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="product_set_add_form_view" model="ir.ui.view">
|
||||
<field name="name">sale.product.set.wizard.form.view</field>
|
||||
<field name="model">sale.product.set.wizard</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Add set in sale order line">
|
||||
<group name="main" colspan="4">
|
||||
<field
|
||||
name="order_id"
|
||||
invisible="context.get('default_order_id')"
|
||||
domain="[('state', 'in', ('draft','sent'))]"
|
||||
/>
|
||||
<field name="partner_id" invisible="1" />
|
||||
<field
|
||||
name="product_set_id"
|
||||
domain="['|',('partner_id', '=', False),('partner_id', '=', partner_id)]"
|
||||
/>
|
||||
<field name="quantity" />
|
||||
<field name="skip_existing_products" />
|
||||
</group>
|
||||
<group name="lines" colspan="4">
|
||||
<field
|
||||
name="product_set_line_ids"
|
||||
nolabel="1"
|
||||
colspan="4"
|
||||
widget="section_and_note_one2many"
|
||||
domain="[('product_set_id', '=', product_set_id)]"
|
||||
>
|
||||
<list>
|
||||
<field
|
||||
name="product_id"
|
||||
options="{'no_open': True, 'no_create': True}"
|
||||
required="not display_type"
|
||||
/>
|
||||
<field name="display_type" column_invisible="True" />
|
||||
<field name="name" widget="section_and_note_text" />
|
||||
<control>
|
||||
<create name="add_line_control" string="Add a line" />
|
||||
<create
|
||||
name="add_section_control"
|
||||
string="Add a section"
|
||||
context="{'default_display_type': 'line_section'}"
|
||||
/>
|
||||
<create
|
||||
name="add_note_control"
|
||||
string="Add a note"
|
||||
context="{'default_display_type': 'line_note'}"
|
||||
/>
|
||||
</control>
|
||||
</list>
|
||||
</field>
|
||||
</group>
|
||||
<footer>
|
||||
<button
|
||||
name="add_set"
|
||||
string="Add set"
|
||||
type="object"
|
||||
class="oe_highlight"
|
||||
/>
|
||||
<button special="cancel" string="Cancel" class="oe_link" />
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
<record
|
||||
id="act_open_wizard_product_set_add_from_order"
|
||||
model="ir.actions.act_window"
|
||||
>
|
||||
<field name="name">Add set in sale order</field>
|
||||
<field name="res_model">sale.product.set.wizard</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="product_set_add_form_view" />
|
||||
<field name="domain">[]</field>
|
||||
<field name="context">{'default_order_id': order_id}</field>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
<record id="act_open_wizard_product_set_add_from_set" model="ir.actions.act_window">
|
||||
<field name="name">Add set to sale order</field>
|
||||
<field name="res_model">sale.product.set.wizard</field>
|
||||
<field name="binding_model_id" ref="product_set.model_product_set" />
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="product_set_add_form_view" />
|
||||
<field name="domain">[]</field>
|
||||
<field name="context">{'default_product_set_id': product_set_id}</field>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user