From 4fe2e3d368ae218b18262c4872e16b71acd66cd8 Mon Sep 17 00:00:00 2001 From: santiky Date: Sun, 8 Aug 2021 14:53:02 +0200 Subject: [PATCH] =?UTF-8?q?a=C3=B1adido=20product=5Fsecuence=20y=20product?= =?UTF-8?q?=5Fcode=5Funique=20para=20crear=20secuencias=20de=20productos?= =?UTF-8?q?=20por=20categor=C3=ADa=20related=206?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- product_code_unique/README.rst | 64 +++ product_code_unique/__init__.py | 5 + product_code_unique/__manifest__.py | 15 + product_code_unique/hook.py | 17 + product_code_unique/i18n/ca.po | 27 ++ product_code_unique/i18n/es.po | 27 ++ product_code_unique/i18n/it.po | 27 ++ product_code_unique/i18n/pt.po | 27 ++ product_code_unique/i18n/pt_BR.po | 27 ++ product_code_unique/i18n/sk.po | 27 ++ product_code_unique/i18n/sk_SK.po | 27 ++ product_code_unique/models/__init__.py | 4 + product_code_unique/models/product.py | 12 + .../static/description/icon.png | Bin 0 -> 9455 bytes product_sequence/README.rst | 101 ++++ product_sequence/__init__.py | 2 + product_sequence/__manifest__.py | 25 + product_sequence/data/product_sequence.xml | 11 + product_sequence/hooks.py | 18 + product_sequence/i18n/ar.po | 111 +++++ product_sequence/i18n/bg.po | 110 +++++ product_sequence/i18n/bs.po | 111 +++++ product_sequence/i18n/ca.po | 117 +++++ product_sequence/i18n/cs.po | 110 +++++ product_sequence/i18n/da.po | 110 +++++ product_sequence/i18n/de.po | 118 +++++ product_sequence/i18n/el.po | 110 +++++ product_sequence/i18n/es.po | 122 +++++ product_sequence/i18n/es_AR.po | 111 +++++ product_sequence/i18n/es_CR.po | 111 +++++ product_sequence/i18n/es_EC.po | 111 +++++ product_sequence/i18n/es_MX.po | 111 +++++ product_sequence/i18n/es_VE.po | 111 +++++ product_sequence/i18n/et.po | 110 +++++ product_sequence/i18n/fi.po | 110 +++++ product_sequence/i18n/fr.po | 109 +++++ product_sequence/i18n/gl.po | 110 +++++ product_sequence/i18n/hr.po | 113 +++++ product_sequence/i18n/hu.po | 110 +++++ product_sequence/i18n/it.po | 113 +++++ product_sequence/i18n/ja.po | 110 +++++ product_sequence/i18n/lt.po | 111 +++++ product_sequence/i18n/mk.po | 110 +++++ product_sequence/i18n/mn.po | 110 +++++ product_sequence/i18n/nb.po | 111 +++++ product_sequence/i18n/nl.po | 110 +++++ product_sequence/i18n/pl.po | 111 +++++ product_sequence/i18n/pt.po | 117 +++++ product_sequence/i18n/pt_BR.po | 118 +++++ product_sequence/i18n/ro.po | 111 +++++ product_sequence/i18n/ru.po | 112 +++++ product_sequence/i18n/sk.po | 109 +++++ product_sequence/i18n/sk_SK.po | 103 ++++ product_sequence/i18n/sl.po | 110 +++++ product_sequence/i18n/sr.po | 111 +++++ product_sequence/i18n/sv.po | 110 +++++ product_sequence/i18n/tr.po | 110 +++++ product_sequence/i18n/zh_CN.po | 111 +++++ product_sequence/models/__init__.py | 5 + product_sequence/models/ir_sequence.py | 16 + product_sequence/models/product_category.py | 58 +++ product_sequence/models/product_product.py | 66 +++ product_sequence/models/res_company.py | 17 + .../models/res_config_settings.py | 16 + product_sequence/readme/CONTRIBUTORS.rst | 6 + product_sequence/readme/DESCRIPTION.rst | 5 + product_sequence/readme/USAGE.rst | 14 + product_sequence/static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 444 ++++++++++++++++++ product_sequence/tests/__init__.py | 1 + .../tests/test_product_sequence.py | 140 ++++++ product_sequence/views/product_category.xml | 21 + .../views/res_config_settings_views.xml | 27 ++ 73 files changed, 5643 insertions(+) create mode 100644 product_code_unique/README.rst create mode 100644 product_code_unique/__init__.py create mode 100644 product_code_unique/__manifest__.py create mode 100644 product_code_unique/hook.py create mode 100644 product_code_unique/i18n/ca.po create mode 100644 product_code_unique/i18n/es.po create mode 100644 product_code_unique/i18n/it.po create mode 100644 product_code_unique/i18n/pt.po create mode 100644 product_code_unique/i18n/pt_BR.po create mode 100644 product_code_unique/i18n/sk.po create mode 100644 product_code_unique/i18n/sk_SK.po create mode 100644 product_code_unique/models/__init__.py create mode 100644 product_code_unique/models/product.py create mode 100644 product_code_unique/static/description/icon.png create mode 100644 product_sequence/README.rst create mode 100644 product_sequence/__init__.py create mode 100644 product_sequence/__manifest__.py create mode 100644 product_sequence/data/product_sequence.xml create mode 100644 product_sequence/hooks.py create mode 100644 product_sequence/i18n/ar.po create mode 100644 product_sequence/i18n/bg.po create mode 100644 product_sequence/i18n/bs.po create mode 100644 product_sequence/i18n/ca.po create mode 100644 product_sequence/i18n/cs.po create mode 100644 product_sequence/i18n/da.po create mode 100644 product_sequence/i18n/de.po create mode 100644 product_sequence/i18n/el.po create mode 100644 product_sequence/i18n/es.po create mode 100644 product_sequence/i18n/es_AR.po create mode 100644 product_sequence/i18n/es_CR.po create mode 100644 product_sequence/i18n/es_EC.po create mode 100644 product_sequence/i18n/es_MX.po create mode 100644 product_sequence/i18n/es_VE.po create mode 100644 product_sequence/i18n/et.po create mode 100644 product_sequence/i18n/fi.po create mode 100644 product_sequence/i18n/fr.po create mode 100644 product_sequence/i18n/gl.po create mode 100644 product_sequence/i18n/hr.po create mode 100644 product_sequence/i18n/hu.po create mode 100644 product_sequence/i18n/it.po create mode 100644 product_sequence/i18n/ja.po create mode 100644 product_sequence/i18n/lt.po create mode 100644 product_sequence/i18n/mk.po create mode 100644 product_sequence/i18n/mn.po create mode 100644 product_sequence/i18n/nb.po create mode 100644 product_sequence/i18n/nl.po create mode 100644 product_sequence/i18n/pl.po create mode 100644 product_sequence/i18n/pt.po create mode 100644 product_sequence/i18n/pt_BR.po create mode 100644 product_sequence/i18n/ro.po create mode 100644 product_sequence/i18n/ru.po create mode 100644 product_sequence/i18n/sk.po create mode 100644 product_sequence/i18n/sk_SK.po create mode 100644 product_sequence/i18n/sl.po create mode 100644 product_sequence/i18n/sr.po create mode 100644 product_sequence/i18n/sv.po create mode 100644 product_sequence/i18n/tr.po create mode 100644 product_sequence/i18n/zh_CN.po create mode 100644 product_sequence/models/__init__.py create mode 100644 product_sequence/models/ir_sequence.py create mode 100644 product_sequence/models/product_category.py create mode 100644 product_sequence/models/product_product.py create mode 100644 product_sequence/models/res_company.py create mode 100644 product_sequence/models/res_config_settings.py create mode 100644 product_sequence/readme/CONTRIBUTORS.rst create mode 100644 product_sequence/readme/DESCRIPTION.rst create mode 100644 product_sequence/readme/USAGE.rst create mode 100644 product_sequence/static/description/icon.png create mode 100644 product_sequence/static/description/index.html create mode 100644 product_sequence/tests/__init__.py create mode 100644 product_sequence/tests/test_product_sequence.py create mode 100644 product_sequence/views/product_category.xml create mode 100644 product_sequence/views/res_config_settings_views.xml diff --git a/product_code_unique/README.rst b/product_code_unique/README.rst new file mode 100644 index 0000000..24246fb --- /dev/null +++ b/product_code_unique/README.rst @@ -0,0 +1,64 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +================================= +Unique Product Internal Reference +================================= + +This module adds a constraint on the internal reference of the product +to make it unique across the database. + +Usage +===== +* Unable to save a product when a new internal reference or default_code value is + the same with an existing record. +* A pre_init_hook process is initiated when there exist records without an internal reference(default_code). + A default value is generated to populate empty field as a temporary value. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/135/11.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Antonio Yamuta + +Funders +------- + +The development of this module has been financially supported by: + +* Open Source Integrators + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/product_code_unique/__init__.py b/product_code_unique/__init__.py new file mode 100644 index 0000000..798718f --- /dev/null +++ b/product_code_unique/__init__.py @@ -0,0 +1,5 @@ +# Copyright (C) 2018 - TODAY, Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models +from .hook import pre_init_product_code diff --git a/product_code_unique/__manifest__.py b/product_code_unique/__manifest__.py new file mode 100644 index 0000000..c37d458 --- /dev/null +++ b/product_code_unique/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright (C) 2018 - TODAY, Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Unique Product Internal Reference", + "summary": "Set Product Internal Reference as Unique", + "version": "12.0.1.0.0", + "license": "AGPL-3", + "author": "Open Source Integrators, Odoo Community Association (OCA)", + "category": "Product", + "website": "https://github.com/OCA/product-attribute", + "depends": ["product"], + "pre_init_hook": 'pre_init_product_code', + "installable": True, +} diff --git a/product_code_unique/hook.py b/product_code_unique/hook.py new file mode 100644 index 0000000..e311211 --- /dev/null +++ b/product_code_unique/hook.py @@ -0,0 +1,17 @@ +# Copyright (C) 2019 - TODAY, Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +def pre_init_product_code(cr): + cr.execute("""UPDATE product_product + SET default_code = 'DEFAULT' || nextval('ir_default_id_seq') + WHERE id in (SELECT distinct(pp.id) + FROM product_product pp + INNER JOIN (SELECT default_code, COUNT(*) + FROM product_product + GROUP BY default_code + HAVING COUNT(*)>1 + )pp1 on pp.default_code=pp1.default_code + or pp.default_code is NULL + or LENGTH(pp.default_code) = 0)""") + return True diff --git a/product_code_unique/i18n/ca.po b/product_code_unique/i18n/ca.po new file mode 100644 index 0000000..bd26a6f --- /dev/null +++ b/product_code_unique/i18n/ca.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_code_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-01-26 10:44+0000\n" +"Last-Translator: claudiagn \n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: product_code_unique +#: sql_constraint:product.product:0 +msgid "Internal Reference must be unique across the database!" +msgstr "La referència interna ha de ser única a tota la base de dades!" + +#. module: product_code_unique +#: model:ir.model,name:product_code_unique.model_product_product +msgid "Product" +msgstr "Producte" diff --git a/product_code_unique/i18n/es.po b/product_code_unique/i18n/es.po new file mode 100644 index 0000000..dfed89d --- /dev/null +++ b/product_code_unique/i18n/es.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_code_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-10-13 13:08+0000\n" +"Last-Translator: claudiagn \n" +"Language-Team: none\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 3.10\n" + +#. module: product_code_unique +#: sql_constraint:product.product:0 +msgid "Internal Reference must be unique across the database!" +msgstr "La referencia interna debe ser única por base de datos!" + +#. module: product_code_unique +#: model:ir.model,name:product_code_unique.model_product_product +msgid "Product" +msgstr "Producto" diff --git a/product_code_unique/i18n/it.po b/product_code_unique/i18n/it.po new file mode 100644 index 0000000..35b7c91 --- /dev/null +++ b/product_code_unique/i18n/it.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_code_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-02-20 14:13+0000\n" +"Last-Translator: Lorenzo Battistini \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: product_code_unique +#: sql_constraint:product.product:0 +msgid "Internal Reference must be unique across the database!" +msgstr "Il riferimento interno deve essere unico all'interno del database!" + +#. module: product_code_unique +#: model:ir.model,name:product_code_unique.model_product_product +msgid "Product" +msgstr "Prodotto" diff --git a/product_code_unique/i18n/pt.po b/product_code_unique/i18n/pt.po new file mode 100644 index 0000000..902448e --- /dev/null +++ b/product_code_unique/i18n/pt.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_code_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-10-18 21:08+0000\n" +"Last-Translator: Pedro Castro Silva \n" +"Language-Team: none\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" +"X-Generator: Weblate 3.10\n" + +#. module: product_code_unique +#: sql_constraint:product.product:0 +msgid "Internal Reference must be unique across the database!" +msgstr "A Referência Interna deve ser única em toda a base de dados!" + +#. module: product_code_unique +#: model:ir.model,name:product_code_unique.model_product_product +msgid "Product" +msgstr "Produto" diff --git a/product_code_unique/i18n/pt_BR.po b/product_code_unique/i18n/pt_BR.po new file mode 100644 index 0000000..cb558b1 --- /dev/null +++ b/product_code_unique/i18n/pt_BR.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_code_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-06-16 13:19+0000\n" +"Last-Translator: Maurício Liell \n" +"Language-Team: none\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 3.10\n" + +#. module: product_code_unique +#: sql_constraint:product.product:0 +msgid "Internal Reference must be unique across the database!" +msgstr "A Referência Interna deve ser única no banco de dados!" + +#. module: product_code_unique +#: model:ir.model,name:product_code_unique.model_product_product +msgid "Product" +msgstr "Produto" diff --git a/product_code_unique/i18n/sk.po b/product_code_unique/i18n/sk.po new file mode 100644 index 0000000..5e74dd7 --- /dev/null +++ b/product_code_unique/i18n/sk.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_code_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-07-03 21:19+0000\n" +"Last-Translator: Jan Prokop \n" +"Language-Team: none\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" +"X-Generator: Weblate 3.10\n" + +#. module: product_code_unique +#: sql_constraint:product.product:0 +msgid "Internal Reference must be unique across the database!" +msgstr "Interná referencia musí byť jedinečná v celej databáze!" + +#. module: product_code_unique +#: model:ir.model,name:product_code_unique.model_product_product +msgid "Product" +msgstr "Produkt" diff --git a/product_code_unique/i18n/sk_SK.po b/product_code_unique/i18n/sk_SK.po new file mode 100644 index 0000000..f9ba6e6 --- /dev/null +++ b/product_code_unique/i18n/sk_SK.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_code_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-07-02 14:19+0000\n" +"Last-Translator: Jan Prokop \n" +"Language-Team: none\n" +"Language: sk_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" +"X-Generator: Weblate 3.10\n" + +#. module: product_code_unique +#: sql_constraint:product.product:0 +msgid "Internal Reference must be unique across the database!" +msgstr "Interná referencia musí byť jedinečná v celej databáze!" + +#. module: product_code_unique +#: model:ir.model,name:product_code_unique.model_product_product +msgid "Product" +msgstr "Produkt" diff --git a/product_code_unique/models/__init__.py b/product_code_unique/models/__init__.py new file mode 100644 index 0000000..2c3319d --- /dev/null +++ b/product_code_unique/models/__init__.py @@ -0,0 +1,4 @@ +# Copyright (C) 2018 - TODAY, Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import product diff --git a/product_code_unique/models/product.py b/product_code_unique/models/product.py new file mode 100644 index 0000000..6469901 --- /dev/null +++ b/product_code_unique/models/product.py @@ -0,0 +1,12 @@ +# Copyright (C) 2018 - TODAY, Open Source Integrators +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + _sql_constraints = [ + ('default_code_uniq', 'unique(default_code)', + 'Internal Reference must be unique across the database!'), ] diff --git a/product_code_unique/static/description/icon.png b/product_code_unique/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/product_sequence/README.rst b/product_sequence/README.rst new file mode 100644 index 0000000..58429c6 --- /dev/null +++ b/product_sequence/README.rst @@ -0,0 +1,101 @@ +================ +Product Sequence +================ + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fproduct--attribute-lightgray.png?logo=github + :target: https://github.com/OCA/product-attribute/tree/12.0/product_sequence + :alt: OCA/product-attribute +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/product-attribute-12-0/product-attribute-12-0-product_sequence + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/135/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to associate a sequence to the product reference. +The reference (default code) is unique (SQL constraint) and required. + +You can optionally specify different sequences for different product +categories. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To specify a different sequence for a product category proceed as follows: + +#. Go to the a Product Category form view. + (**note:** you will need to install Inventory app to be able to access to + the form view, *Inventory > Configuration > Products > Products Categories*; + or create a menuitem manually). +#. Fill the *Prefix for Product Internal Reference* as desired. +#. Under the settings (Settings -> General Settings -> Products), you can specify + whether the prefix of the parent category should be used if no prefix has been + specified for the category. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/135/12.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Zikzakmedia SL +* Sodexis + +Contributors +~~~~~~~~~~~~ + +* Angel Moya +* Graeme Gellatly +* Sodexis +* Lois Rilo +* Sudhir Arya +* Alexandre Díaz + +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/product-attribute `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/product_sequence/__init__.py b/product_sequence/__init__.py new file mode 100644 index 0000000..6d58305 --- /dev/null +++ b/product_sequence/__init__.py @@ -0,0 +1,2 @@ +from . import models +from .hooks import pre_init_hook diff --git a/product_sequence/__manifest__.py b/product_sequence/__manifest__.py new file mode 100644 index 0000000..3736a23 --- /dev/null +++ b/product_sequence/__manifest__.py @@ -0,0 +1,25 @@ +# Copyright 2004 Tiny SPRL +# Copyright 2016 Sodexis +# Copyright 2018 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Product Sequence', + 'version': '12.0.2.0.2', + 'author': "Zikzakmedia SL,Sodexis,Odoo Community Association (OCA)", + 'website': 'https://github.com/OCA/product-attribute', + 'license': 'AGPL-3', + 'category': 'Product', + 'depends': [ + 'product', + 'product_code_unique', + ], + 'data': [ + 'data/product_sequence.xml', + 'views/product_category.xml', + 'views/res_config_settings_views.xml', + ], + 'pre_init_hook': 'pre_init_hook', + 'installable': True, +} diff --git a/product_sequence/data/product_sequence.xml b/product_sequence/data/product_sequence.xml new file mode 100644 index 0000000..e2c6c44 --- /dev/null +++ b/product_sequence/data/product_sequence.xml @@ -0,0 +1,11 @@ + + + + + Product + product.product + + PR/ + + + diff --git a/product_sequence/hooks.py b/product_sequence/hooks.py new file mode 100644 index 0000000..d56dccc --- /dev/null +++ b/product_sequence/hooks.py @@ -0,0 +1,18 @@ +# Copyright 2004 Tiny SPRL +# Copyright 2016 Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +def pre_init_hook(cr): + """ + Updates existing codes matching the default '/' or + empty. Primarily this ensures installation does not + fail for demo data. + :param cr: database cursor + :return: void + """ + cr.execute( + "UPDATE product_product " + "SET default_code = '!!mig!!' || id " + "WHERE default_code IS NULL OR default_code = '/';" + ) diff --git a/product_sequence/i18n/ar.po b/product_sequence/i18n/ar.po new file mode 100644 index 0000000..e358282 --- /dev/null +++ b/product_sequence/i18n/ar.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "مصنّع" diff --git a/product_sequence/i18n/bg.po b/product_sequence/i18n/bg.po new file mode 100644 index 0000000..0a20c1f --- /dev/null +++ b/product_sequence/i18n/bg.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Производител" diff --git a/product_sequence/i18n/bs.po b/product_sequence/i18n/bs.po new file mode 100644 index 0000000..d58f0d1 --- /dev/null +++ b/product_sequence/i18n/bs.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Proizvođač" diff --git a/product_sequence/i18n/ca.po b/product_sequence/i18n/ca.po new file mode 100644 index 0000000..502d5e7 --- /dev/null +++ b/product_sequence/i18n/ca.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-05 02:44+0000\n" +"PO-Revision-Date: 2021-02-15 13:45+0000\n" +"Last-Translator: claudiagn \n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "-copiar" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "Companyies" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "Paràmetres de configuració" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "Referència interna" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "Prefix de referència interna del producte" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" +"Prefix utilitzat per generar la referència interna pels productes creats amb " +"aquesta categoria. Si fós en blanc la seqüència per defecte serà utilitzada." + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Producte" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "Categoria de producte" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "Seqüència de producte" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "Seqüència" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" +"Configura per '/' i guarda si vols proposar una nova referència interna." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" +"Aquest camp contè la informació relacionada amb el numerament de les " +"entrades d'aquest diari." + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "Utilitza categories pare per determinar el prefixe" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" +"Utilitzeu les categories pares per determinar el prefix si la categoria\n" +" no té cap configuració per al prefix." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" +"Utilitzeu les categories pares per determinar el prefix si la categoria no " +"té cap configuració per al prefix." diff --git a/product_sequence/i18n/cs.po b/product_sequence/i18n/cs.po new file mode 100644 index 0000000..be691de --- /dev/null +++ b/product_sequence/i18n/cs.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Výrobce" diff --git a/product_sequence/i18n/da.po b/product_sequence/i18n/da.po new file mode 100644 index 0000000..f345071 --- /dev/null +++ b/product_sequence/i18n/da.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Producent" diff --git a/product_sequence/i18n/de.po b/product_sequence/i18n/de.po new file mode 100644 index 0000000..6c227e0 --- /dev/null +++ b/product_sequence/i18n/de.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-05 02:44+0000\n" +"PO-Revision-Date: 2020-02-20 19:13+0000\n" +"Last-Translator: Ben Brich \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 3.10\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "-kopie" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "Interne Referenz" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "Präfix interen Referenz Produkt" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" +"Präfix der bei der Erstellung von Produkten in dieser Produktkategorie " +"verwendet wird. Wenn kein Präfix definiert ist, wird die Standardsequenz " +"verwendet." + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Produkt" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "Produktkategorie" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "Produktsequenz" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" +"Setzten sie den Wert auf '/' und speichern Sie, wenn eine neue interne " +"Referenz erstellt werden soll." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" +"Dieses Feld enthält die Informationen in Bezug auf die Nummerierung der " +"Journaleinträge dieses Journals." + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "The reference must be unique" +#~ msgstr "Die Referenz muss eindeutig sein" diff --git a/product_sequence/i18n/el.po b/product_sequence/i18n/el.po new file mode 100644 index 0000000..5092069 --- /dev/null +++ b/product_sequence/i18n/el.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Κατασκευαστής" diff --git a/product_sequence/i18n/es.po b/product_sequence/i18n/es.po new file mode 100644 index 0000000..14e669f --- /dev/null +++ b/product_sequence/i18n/es.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-05 02:44+0000\n" +"PO-Revision-Date: 2021-02-15 17:45+0000\n" +"Last-Translator: claudiagn \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "-copia" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "Referencia interna" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "Prefijo para referencia interna de producto" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" +"Prefijo utilizado para generar la referencia interna para productos creados " +"con esta categoría. Si está en blanco, se utilizará la secuencia " +"predeterminada." + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Producto" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "Secuencia de producto" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" +"Establezca en '/' y guarde si desea que se proponga una nueva referencia " +"interna." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" +"Este campo contiene la información relacionada con la numeración de los " +"asientos de este diario." + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "Utilice categorías principales para determinar el prefijo" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" +"Utilice categorías principales para determinar el prefijo si la categoría\n" +" no tiene ajustes para el prefijo." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" +"Utilice categorías principales para determinar el prefijo si la categoría no " +"tiene configuraciones para el prefijo." + +#~ msgid "The reference must be unique" +#~ msgstr "La referencia debe ser única" diff --git a/product_sequence/i18n/es_AR.po b/product_sequence/i18n/es_AR.po new file mode 100644 index 0000000..aca95b3 --- /dev/null +++ b/product_sequence/i18n/es_AR.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabricante" diff --git a/product_sequence/i18n/es_CR.po b/product_sequence/i18n/es_CR.po new file mode 100644 index 0000000..e13d743 --- /dev/null +++ b/product_sequence/i18n/es_CR.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabricante" diff --git a/product_sequence/i18n/es_EC.po b/product_sequence/i18n/es_EC.po new file mode 100644 index 0000000..cc0cb49 --- /dev/null +++ b/product_sequence/i18n/es_EC.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabricante" diff --git a/product_sequence/i18n/es_MX.po b/product_sequence/i18n/es_MX.po new file mode 100644 index 0000000..841a0fc --- /dev/null +++ b/product_sequence/i18n/es_MX.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabricante" diff --git a/product_sequence/i18n/es_VE.po b/product_sequence/i18n/es_VE.po new file mode 100644 index 0000000..1fb2b81 --- /dev/null +++ b/product_sequence/i18n/es_VE.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabricante" diff --git a/product_sequence/i18n/et.po b/product_sequence/i18n/et.po new file mode 100644 index 0000000..b72f216 --- /dev/null +++ b/product_sequence/i18n/et.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Tootja" diff --git a/product_sequence/i18n/fi.po b/product_sequence/i18n/fi.po new file mode 100644 index 0000000..b16bf0b --- /dev/null +++ b/product_sequence/i18n/fi.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Valmistaja" diff --git a/product_sequence/i18n/fr.po b/product_sequence/i18n/fr.po new file mode 100644 index 0000000..3800e9c --- /dev/null +++ b/product_sequence/i18n/fr.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-23 02:40+0000\n" +"PO-Revision-Date: 2017-05-23 02:40+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Article" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +#, fuzzy +msgid "Product Category" +msgstr "Article" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +#, fuzzy +msgid "Product Sequence" +msgstr "Article" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" diff --git a/product_sequence/i18n/gl.po b/product_sequence/i18n/gl.po new file mode 100644 index 0000000..820abe3 --- /dev/null +++ b/product_sequence/i18n/gl.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabricante" diff --git a/product_sequence/i18n/hr.po b/product_sequence/i18n/hr.po new file mode 100644 index 0000000..d49552a --- /dev/null +++ b/product_sequence/i18n/hr.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-03 02:14+0000\n" +"PO-Revision-Date: 2018-01-03 02:14+0000\n" +"Last-Translator: Bole , 2018\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "-kopija" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +#, fuzzy +msgid "Product Category" +msgstr "Proizvod" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +#, fuzzy +msgid "Product Sequence" +msgstr "Proizvod" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "The reference must be unique" +#~ msgstr "Referenca mora biti jedinstvena" diff --git a/product_sequence/i18n/hu.po b/product_sequence/i18n/hu.po new file mode 100644 index 0000000..b29a9f0 --- /dev/null +++ b/product_sequence/i18n/hu.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Gyártó" diff --git a/product_sequence/i18n/it.po b/product_sequence/i18n/it.po new file mode 100644 index 0000000..69ce5a8 --- /dev/null +++ b/product_sequence/i18n/it.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-05 02:44+0000\n" +"PO-Revision-Date: 2020-04-02 15:19+0000\n" +"Last-Translator: Lorenzo Battistini \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 3.10\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "-copia" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "Riferimento interno" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "Prefisso per il riferimento interno del prodotto" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" +"Prefisso utilizzato per generare il riferimento interno dei prodotti creati " +"con questa categoria. Se vuoto, verrà usata la sequenza predefinita." + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Prodotto" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "Categoria prodotto" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "Sequenza prodotto" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" +"Imposta '/' e salva se vuoi che venga proposto un nuovo riferimento interno." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" +"Questo campo contiene le informazioni relative alla numerazione delle " +"registrazioni contabili di questo registro." + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" diff --git a/product_sequence/i18n/ja.po b/product_sequence/i18n/ja.po new file mode 100644 index 0000000..40c8589 --- /dev/null +++ b/product_sequence/i18n/ja.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "製造者" diff --git a/product_sequence/i18n/lt.po b/product_sequence/i18n/lt.po new file mode 100644 index 0000000..f9614bc --- /dev/null +++ b/product_sequence/i18n/lt.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Gamintojas" diff --git a/product_sequence/i18n/mk.po b/product_sequence/i18n/mk.po new file mode 100644 index 0000000..805439b --- /dev/null +++ b/product_sequence/i18n/mk.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Производител" diff --git a/product_sequence/i18n/mn.po b/product_sequence/i18n/mn.po new file mode 100644 index 0000000..5db3183 --- /dev/null +++ b/product_sequence/i18n/mn.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Үйлдвэрлэгч" diff --git a/product_sequence/i18n/nb.po b/product_sequence/i18n/nb.po new file mode 100644 index 0000000..4d5dfda --- /dev/null +++ b/product_sequence/i18n/nb.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Produsent" diff --git a/product_sequence/i18n/nl.po b/product_sequence/i18n/nl.po new file mode 100644 index 0000000..05d001d --- /dev/null +++ b/product_sequence/i18n/nl.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabrikant" diff --git a/product_sequence/i18n/pl.po b/product_sequence/i18n/pl.po new file mode 100644 index 0000000..64838cc --- /dev/null +++ b/product_sequence/i18n/pl.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Producent" diff --git a/product_sequence/i18n/pt.po b/product_sequence/i18n/pt.po new file mode 100644 index 0000000..e43cbdb --- /dev/null +++ b/product_sequence/i18n/pt.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2020-03-23 14:13+0000\n" +"Last-Translator: Pedro Castro Silva \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" +"X-Generator: Weblate 3.10\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "-cópia" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "Referência Interna" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "Prefixo da Referência Interna de Produto" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" +"Prefixo usado para gerar a referência interna dos produtos criados com esta " +"categoria. Se vazio, a sequência pré-definida será usada." + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "Categoria de Produto" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "Sequência de Produto" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" +"Defina como '/' e guarde caso pretenda que uma nova referência interna seja " +"proposta." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" +"Esta campo contém a informação relacionada com a numeração das entradas " +"neste diário." + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabricante" diff --git a/product_sequence/i18n/pt_BR.po b/product_sequence/i18n/pt_BR.po new file mode 100644 index 0000000..7e8fa51 --- /dev/null +++ b/product_sequence/i18n/pt_BR.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2020-06-16 13:19+0000\n" +"Last-Translator: Maurício Liell \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 3.10\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "-cópia" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "Referência Interna" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "Prefixo para a Referência Interna do Produto" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" +"Prefixo usado para gerar a referência interna para produtos criados com esta " +"categoria. Se estiver em branco, a sequência padrão será usada." + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "Categoria de Produto" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "Sequência do Produto" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" +"Defina como '/' e salve se desejar que uma nova referência interna seja " +"proposta." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" +"Este campo contém as informações relacionadas à numeração dos lançamentos " +"contábeis manuais desse diário." + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Fabricante" diff --git a/product_sequence/i18n/ro.po b/product_sequence/i18n/ro.po new file mode 100644 index 0000000..bacb581 --- /dev/null +++ b/product_sequence/i18n/ro.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Producator" diff --git a/product_sequence/i18n/ru.po b/product_sequence/i18n/ru.po new file mode 100644 index 0000000..ac9d9c3 --- /dev/null +++ b/product_sequence/i18n/ru.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Производитель" diff --git a/product_sequence/i18n/sk.po b/product_sequence/i18n/sk.po new file mode 100644 index 0000000..9d2b89f --- /dev/null +++ b/product_sequence/i18n/sk.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-07-03 21:19+0000\n" +"Last-Translator: Jan Prokop \n" +"Language-Team: none\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" +"X-Generator: Weblate 3.10\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "-kópia" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "Interná referencia" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "Prefix pre internú referenciu" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" +"Prefix sa používa pri tvorbe internej referencie pre produkty vytvorené v " +"tejto kategórii. Ak je prázdny, použije sa štandardná sekvencia." + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Produkt" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "Kategória produktu" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "Sekvencia produktu" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "Nastavte na '/' a uložte, ak chcete nastaviť novú internú referenciu." + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" +"Toto pole obsahuje informácie súvisiace s číslovaním vstupov tejto účtovnej " +"knihy." + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" diff --git a/product_sequence/i18n/sk_SK.po b/product_sequence/i18n/sk_SK.po new file mode 100644 index 0000000..59ef089 --- /dev/null +++ b/product_sequence/i18n/sk_SK.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk_SK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" diff --git a/product_sequence/i18n/sl.po b/product_sequence/i18n/sl.po new file mode 100644 index 0000000..6b6c452 --- /dev/null +++ b/product_sequence/i18n/sl.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:49+0000\n" +"PO-Revision-Date: 2018-01-27 03:49+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +#, fuzzy +msgid "Product Category" +msgstr "Proizvod" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +#, fuzzy +msgid "Product Sequence" +msgstr "Proizvod" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" diff --git a/product_sequence/i18n/sr.po b/product_sequence/i18n/sr.po new file mode 100644 index 0000000..892f50e --- /dev/null +++ b/product_sequence/i18n/sr.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Proizvođač" diff --git a/product_sequence/i18n/sv.po b/product_sequence/i18n/sv.po new file mode 100644 index 0000000..633f2b2 --- /dev/null +++ b/product_sequence/i18n/sv.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Tillverkare" diff --git a/product_sequence/i18n/tr.po b/product_sequence/i18n/tr.po new file mode 100644 index 0000000..4582f00 --- /dev/null +++ b/product_sequence/i18n/tr.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "Üretici" diff --git a/product_sequence/i18n/zh_CN.po b/product_sequence/i18n/zh_CN.po new file mode 100644 index 0000000..d139160 --- /dev/null +++ b/product_sequence/i18n/zh_CN.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_sequence +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-01 20:03+0000\n" +"PO-Revision-Date: 2016-11-01 20:03+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_sequence +#: code:addons/product_sequence/models/product_product.py:64 +#, python-format +msgid "-copy" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_company +msgid "Companies" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_product__default_code +msgid "Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__code_prefix +msgid "Prefix for Product Internal Reference" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__code_prefix +msgid "" +"Prefix used to generate the internal reference for products created with " +"this category. If blank the default sequence will be used." +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_product +msgid "Product" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_product_category +msgid "Product Category" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_product_category__sequence_id +msgid "Product Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model,name:product_sequence.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_product__default_code +msgid "" +"Set to '/' and save if you want a new internal reference to be proposed." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_product_category__sequence_id +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,field_description:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,field_description:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "Use parent categories to determine the prefix" +msgstr "" + +#. module: product_sequence +#: model_terms:ir.ui.view,arch_db:product_sequence.res_config_settings_view_form +msgid "" +"Use parent categories to determine the prefix if the category\n" +" has no settings for the prefix." +msgstr "" + +#. module: product_sequence +#: model:ir.model.fields,help:product_sequence.field_res_company__use_parent_categories_to_determine_prefix +#: model:ir.model.fields,help:product_sequence.field_res_config_settings__use_parent_categories_to_determine_prefix +msgid "" +"Use parent categories to determine the prefix if the category has no " +"settings for the prefix." +msgstr "" + +#~ msgid "Manufacturer" +#~ msgstr "制造商" diff --git a/product_sequence/models/__init__.py b/product_sequence/models/__init__.py new file mode 100644 index 0000000..62be8af --- /dev/null +++ b/product_sequence/models/__init__.py @@ -0,0 +1,5 @@ +from . import res_company +from . import res_config_settings +from . import ir_sequence +from . import product_product +from . import product_category diff --git a/product_sequence/models/ir_sequence.py b/product_sequence/models/ir_sequence.py new file mode 100644 index 0000000..ec6a0de --- /dev/null +++ b/product_sequence/models/ir_sequence.py @@ -0,0 +1,16 @@ +# Copyright 2018 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, models + + +class IrSequence(models.Model): + _inherit = 'ir.sequence' + + @api.model + def get_category_sequence_id(self, category=False): + if self.env.user.company_id.use_parent_categories_to_determine_prefix: + while not category.sequence_id and category.parent_id: + category = category.parent_id + return category.sequence_id or self.env.ref('product_sequence.seq_product_auto') diff --git a/product_sequence/models/product_category.py b/product_sequence/models/product_category.py new file mode 100644 index 0000000..817f5a7 --- /dev/null +++ b/product_sequence/models/product_category.py @@ -0,0 +1,58 @@ +# Copyright 2018 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class ProductCategory(models.Model): + _inherit = 'product.category' + + code_prefix = fields.Char( + string="Prefix for Product Internal Reference", + help="Prefix used to generate the internal reference for products " + "created with this category. If blank the " + "default sequence will be used.", + ) + sequence_id = fields.Many2one( + comodel_name="ir.sequence", string="Product Sequence", + help="This field contains the information related to the numbering " + "of the journal entries of this journal.", + copy=False, readonly=True, + ) + + @api.model + def _prepare_ir_sequence(self, prefix): + """Prepare the vals for creating the sequence + :param prefix: a string with the prefix of the sequence. + :return: a dict with the values. + """ + vals = { + "name": "Product " + prefix, + "code": "product.product - " + prefix, + "padding": 5, + "prefix": prefix, + "company_id": False, + } + return vals + + @api.multi + def write(self, vals): + prefix = vals.get("code_prefix") + if prefix: + for rec in self: + if rec.sequence_id: + rec.sudo().sequence_id.prefix = prefix + else: + seq_vals = self._prepare_ir_sequence(prefix) + rec.sequence_id = self.env["ir.sequence"].create(seq_vals) + return super().write(vals) + + @api.model + def create(self, vals): + prefix = vals.get("code_prefix") + if prefix: + seq_vals = self._prepare_ir_sequence(prefix) + sequence = self.env["ir.sequence"].create(seq_vals) + vals["sequence_id"] = sequence.id + return super().create(vals) diff --git a/product_sequence/models/product_product.py b/product_sequence/models/product_product.py new file mode 100644 index 0000000..0c7db9c --- /dev/null +++ b/product_sequence/models/product_product.py @@ -0,0 +1,66 @@ +# Copyright 2004 Tiny SPRL +# Copyright 2016 Sodexis +# Copyright 2018 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import _, api, fields, models + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + default_code = fields.Char( + required=True, + default='/', + track_visibility='onchange', + help="Set to '/' and save if you want a new internal reference " + "to be proposed." + ) + + @api.model + def create(self, vals): + if 'default_code' not in vals or vals['default_code'] == '/': + categ_id = vals.get("categ_id") + template_id = vals.get("product_tmpl_id") + category = self.env['product.category'] + if categ_id: + # Created as a product.product + category = category.browse(categ_id) + elif template_id: + # Created from a product.template + template = self.env["product.template"].browse(template_id) + category = template.categ_id + sequence = self.env["ir.sequence"].get_category_sequence_id(category) + vals['default_code'] = sequence.next_by_id() + return super().create(vals) + + @api.multi + def write(self, vals): + """To assign a new internal reference, just write '/' on the field. + Note this is up to the user, if the product category is changed, + she/he will need to write '/' on the internal reference to force the + re-assignment.""" + if vals.get('default_code', '') == '/': + product_category_obj = self.env['product.category'] + for product in self: + category_id = vals.get('categ_id', product.categ_id.id) + category = product_category_obj.browse(category_id) + sequence = self.env["ir.sequence"].get_category_sequence_id(category) + ref = sequence.next_by_id() + vals['default_code'] = ref + if len(product.product_tmpl_id.product_variant_ids) == 1: + product.product_tmpl_id.write({'default_code': ref}) + super(ProductProduct, product).write(vals) + return True + return super().write(vals) + + @api.multi + def copy(self, default=None): + if default is None: + default = {} + if self.default_code and 'default_code' not in default: + default.update({ + 'default_code': self.default_code + _('-copy'), + }) + return super().copy(default) diff --git a/product_sequence/models/res_company.py b/product_sequence/models/res_company.py new file mode 100644 index 0000000..faf76fe --- /dev/null +++ b/product_sequence/models/res_company.py @@ -0,0 +1,17 @@ +# Copyright 2004 Tiny SPRL +# Copyright 2016 Sodexis +# Copyright 2018 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class Company(models.Model): + _inherit = 'res.company' + + use_parent_categories_to_determine_prefix = fields.Boolean( + string="Use parent categories to determine the prefix", + help="Use parent categories to determine the prefix " + "if the category has no settings for the prefix.", + ) diff --git a/product_sequence/models/res_config_settings.py b/product_sequence/models/res_config_settings.py new file mode 100644 index 0000000..68b0d52 --- /dev/null +++ b/product_sequence/models/res_config_settings.py @@ -0,0 +1,16 @@ +# Copyright 2004 Tiny SPRL +# Copyright 2016 Sodexis +# Copyright 2018 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# 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' + + use_parent_categories_to_determine_prefix = fields.Boolean( + related="company_id.use_parent_categories_to_determine_prefix", + readonly=False, + ) diff --git a/product_sequence/readme/CONTRIBUTORS.rst b/product_sequence/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..aee3584 --- /dev/null +++ b/product_sequence/readme/CONTRIBUTORS.rst @@ -0,0 +1,6 @@ +* Angel Moya +* Graeme Gellatly +* Sodexis +* Lois Rilo +* Sudhir Arya +* Alexandre Díaz diff --git a/product_sequence/readme/DESCRIPTION.rst b/product_sequence/readme/DESCRIPTION.rst new file mode 100644 index 0000000..165c621 --- /dev/null +++ b/product_sequence/readme/DESCRIPTION.rst @@ -0,0 +1,5 @@ +This module allows to associate a sequence to the product reference. +The reference (default code) is unique (SQL constraint) and required. + +You can optionally specify different sequences for different product +categories. diff --git a/product_sequence/readme/USAGE.rst b/product_sequence/readme/USAGE.rst new file mode 100644 index 0000000..2cec8f3 --- /dev/null +++ b/product_sequence/readme/USAGE.rst @@ -0,0 +1,14 @@ +To specify a different sequence for a product category proceed as follows: + +#. Go to the a Product Category form view. + (**note:** you will need to install Inventory app to be able to access to + the form view, *Inventory > Configuration > Products > Products Categories*; + or create a menuitem manually). +#. Fill the *Prefix for Product Internal Reference* as desired. +#. Under the settings (Settings -> General Settings -> Products), you can specify + whether the prefix of the parent category should be used if no prefix has been + specified for the category. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/135/12.0 diff --git a/product_sequence/static/description/icon.png b/product_sequence/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/product_sequence/static/description/index.html b/product_sequence/static/description/index.html new file mode 100644 index 0000000..f281274 --- /dev/null +++ b/product_sequence/static/description/index.html @@ -0,0 +1,444 @@ + + + + + + +Product Sequence + + + +
+

Product Sequence

+ + +

Beta License: AGPL-3 OCA/product-attribute Translate me on Weblate Try me on Runbot

+

This module allows to associate a sequence to the product reference. +The reference (default code) is unique (SQL constraint) and required.

+

You can optionally specify different sequences for different product +categories.

+

Table of contents

+ +
+

Usage

+

To specify a different sequence for a product category proceed as follows:

+
    +
  1. Go to the a Product Category form view. +(note: you will need to install Inventory app to be able to access to +the form view, Inventory > Configuration > Products > Products Categories; +or create a menuitem manually).
  2. +
  3. Fill the Prefix for Product Internal Reference as desired.
  4. +
  5. Under the settings (Settings -> General Settings -> Products), you can specify +whether the prefix of the parent category should be used if no prefix has been +specified for the category.
  6. +
+Try me on Runbot +
+
+

Bug Tracker

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Zikzakmedia SL
  • +
  • Sodexis
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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

+

This module is part of the OCA/product-attribute project on GitHub.

+

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

+
+
+
+ + diff --git a/product_sequence/tests/__init__.py b/product_sequence/tests/__init__.py new file mode 100644 index 0000000..29b6235 --- /dev/null +++ b/product_sequence/tests/__init__.py @@ -0,0 +1 @@ +from . import test_product_sequence diff --git a/product_sequence/tests/test_product_sequence.py b/product_sequence/tests/test_product_sequence.py new file mode 100644 index 0000000..f327c7b --- /dev/null +++ b/product_sequence/tests/test_product_sequence.py @@ -0,0 +1,140 @@ +# Copyright 2016 Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests.common import TransactionCase +from ..hooks import pre_init_hook + + +class TestProductSequence(TransactionCase): + """Tests for creating product with and without Product Sequence""" + + def setUp(self): + super(TestProductSequence, self).setUp() + self.product_product = self.env['product.product'] + self.product_category = self.env['product.category'] + self.product_template = self.env['product.template'].create({ + 'name': 'Demo Product', + }) + + def test_product_create_with_default_code(self): + product = self.product_product.create(dict( + name="Apple", + default_code='PROD01' + )) + self.assertEqual(product.default_code, 'PROD01') + product_new = self.product_product.create(dict( + name="Demo Apple", + product_tmpl_id=self.product_template.id + )) + self.assertTrue(product_new.default_code) + + def test_product_create_without_default_code(self): + product_1 = self.product_product.create(dict( + name="Orange", + default_code='/')) + self.assertRegexpMatches(str(product_1.default_code), r'PR/*') + + def test_product_copy(self): + product_2 = self.product_product.create(dict( + name="Apple", + default_code='PROD02' + )) + copy_product_2 = product_2.copy() + self.assertEqual(copy_product_2.default_code, 'PROD02-copy') + + def test_pre_init_hook(self): + product_3 = self.product_product.create(dict( + name="Apple", + default_code='PROD03' + )) + sql = "update product_product set default_code='/' where id=%s" + self.cr.execute(sql, (product_3.id,)) + product_3.invalidate_cache() + self.assertEqual(product_3.default_code, '/') + pre_init_hook(self.cr) + product_3.invalidate_cache() + self.assertEqual(product_3.default_code, '!!mig!!%s' % (product_3.id,)) + + def test_product_category_sequence(self): + categ_grocery = self.product_category.create(dict( + name="Grocery", + code_prefix="GRO", + )) + self.assertTrue(categ_grocery.sequence_id) + self.assertEqual(categ_grocery.sequence_id.prefix, "GRO") + self.assertFalse(categ_grocery.sequence_id.company_id) + product_3 = self.product_product.create(dict( + name="Apple", + categ_id=categ_grocery.id, + )) + self.assertEqual(product_3.default_code[:3], "GRO") + self.assertEqual(product_3.product_tmpl_id.default_code[:3], "GRO") + categ_electronics = self.product_category.create(dict( + name="Electronics", + code_prefix="ELE", + )) + product_3.write({'default_code': '/', + 'categ_id': categ_electronics.id}) + self.assertEqual(product_3.default_code[:3], "ELE") + self.assertEqual(product_3.product_tmpl_id.default_code[:3], "ELE") + + product_4 = self.product_product.create(dict( + name="Truck", + default_code='PROD04' + )) + product_4.write({'default_code': '/'}) + self.assertTrue(product_4.categ_id, 'Category is not set.') + + categ_car = self.product_category.create(dict( + name="Car", + code_prefix="CAR", + )) + product_3.product_tmpl_id.categ_id = categ_car + product_3.product_tmpl_id.default_code = '/' + product_3.refresh() + self.assertEqual(product_3.default_code[:3], "CAR") + self.assertEqual(product_3.product_tmpl_id.default_code[:3], "CAR") + categ_car.write(dict( + name="Bike", + code_prefix="BIK", + )) + self.assertEqual(categ_car.sequence_id.prefix, "BIK") + categ_car.sequence_id = False + categ_car.write({'code_prefix': 'KIA'}) + self.assertEqual(categ_car.sequence_id.prefix, "KIA") + + def test_product_parent_category_sequence(self): + parent_categ = self.product_category.create(dict( + name="Parents", + code_prefix="PAR", + )) + categ = self.product_category.create(dict( + name="Child", + parent_id=parent_categ.id, + )) + + product_anna = self.product_product.create(dict( + name="Anna", + categ_id=categ.id, + )) + self.assertEqual(product_anna.default_code[:2], "PR") + self.assertEqual(product_anna.product_tmpl_id.default_code[:2], "PR") + + self.env.user.company_id.use_parent_categories_to_determine_prefix = True + + product_claudia = self.product_product.create(dict( + name="Claudia", + categ_id=categ.id, + )) + self.assertEqual(product_claudia.default_code[:3], "PAR") + self.assertEqual(product_claudia.product_tmpl_id.default_code[:3], "PAR") + + def test_product_copy_with_default_values(self): + product_2 = self.product_product.create(dict( + name="Apple", + default_code='PROD02' + )) + copy_product_2 = product_2.copy({ + 'default_code': 'product test sequence', + }) + self.assertEqual(copy_product_2.default_code, 'product test sequence') diff --git a/product_sequence/views/product_category.xml b/product_sequence/views/product_category.xml new file mode 100644 index 0000000..085dd25 --- /dev/null +++ b/product_sequence/views/product_category.xml @@ -0,0 +1,21 @@ + + + + + + product.category.form - product_sequence + product.category + + + + + + + + diff --git a/product_sequence/views/res_config_settings_views.xml b/product_sequence/views/res_config_settings_views.xml new file mode 100644 index 0000000..16ec539 --- /dev/null +++ b/product_sequence/views/res_config_settings_views.xml @@ -0,0 +1,27 @@ + + + + + res.config.settings.view.form.inherit.product + res.config.settings + + +
+
+
+ +
+
+
+
+
+
+
+