añadido product_secuence y product_code_unique para crear secuencias de productos por categoría

related 6
This commit is contained in:
santiky 2021-08-08 14:53:02 +02:00
parent 46d66821ec
commit 4fe2e3d368
Signed by: snt
GPG key ID: A9FD34930EADBE71
73 changed files with 5643 additions and 0 deletions

View file

@ -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
<https://github.com/OCA/product-attribute/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.
Credits
=======
Images
------
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
Contributors
------------
* Antonio Yamuta <ayamuta@opensourceintegrators.com>
Funders
-------
The development of this module has been financially supported by:
* Open Source Integrators <http://www.opensourceintegrators.com>
Maintainer
----------
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
To contribute to this module, please visit https://odoo-community.org.

View file

@ -0,0 +1,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

View file

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

View file

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

View file

@ -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 <claudia.gargallo@qubiq.es>\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"

View file

@ -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 <claudia.gargallo@qubiq.es>\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"

View file

@ -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 <lb@takobi.online>\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"

View file

@ -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 <pedrocs@exo.pt>\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"

View file

@ -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 <mauricio@liell.com.br>\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"

View file

@ -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 <jprokop@jackie.sk>\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"

View file

@ -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 <jprokop@jackie.sk>\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"

View file

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

View file

@ -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!'), ]

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

101
product_sequence/README.rst Normal file
View file

@ -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 <https://github.com/OCA/product-attribute/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 <https://github.com/OCA/product-attribute/issues/new?body=module:%20product_sequence%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
Credits
=======
Authors
~~~~~~~
* Zikzakmedia SL
* Sodexis
Contributors
~~~~~~~~~~~~
* Angel Moya <angel.moya@domatix.com>
* Graeme Gellatly <g@o4sb.com>
* Sodexis <dev@sodexis.com>
* Lois Rilo <lois.rilo@eficent.com>
* Sudhir Arya <sudhir@erpharbor.com>
* Alexandre Díaz <alexandre.diaz@tecnativa.com>
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 <https://github.com/OCA/product-attribute/tree/12.0/product_sequence>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View file

@ -0,0 +1,2 @@
from . import models
from .hooks import pre_init_hook

View file

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

View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo noupdate="1">
<record id="seq_product_auto" model="ir.sequence">
<field name="name">Product</field>
<field name="code">product.product</field>
<field eval="5" name="padding" />
<field name="prefix">PR/</field>
</record>
</odoo>

18
product_sequence/hooks.py Normal file
View file

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

111
product_sequence/i18n/ar.po Normal file
View file

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

110
product_sequence/i18n/bg.po Normal file
View file

@ -0,0 +1,110 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "Производител"

111
product_sequence/i18n/bs.po Normal file
View file

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

117
product_sequence/i18n/ca.po Normal file
View file

@ -0,0 +1,117 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <claudia.gargallo@qubiq.es>\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3.2\n"
#. module: product_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."

110
product_sequence/i18n/cs.po Normal file
View file

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

110
product_sequence/i18n/da.po Normal file
View file

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

118
product_sequence/i18n/de.po Normal file
View file

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

110
product_sequence/i18n/el.po Normal file
View file

@ -0,0 +1,110 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "Κατασκευαστής"

122
product_sequence/i18n/es.po Normal file
View file

@ -0,0 +1,122 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <claudia.gargallo@qubiq.es>\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3.2\n"
#. module: product_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"

View file

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

View file

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

View file

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

View file

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

View file

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

110
product_sequence/i18n/et.po Normal file
View file

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

110
product_sequence/i18n/fi.po Normal file
View file

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

109
product_sequence/i18n/fr.po Normal file
View file

@ -0,0 +1,109 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-23 02:40+0000\n"
"PO-Revision-Date: 2017-05-23 02:40+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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 ""

110
product_sequence/i18n/gl.po Normal file
View file

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

113
product_sequence/i18n/hr.po Normal file
View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# Bole <bole@dajmi5.com>, 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 <bole@dajmi5.com>, 2018\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: product_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"

110
product_sequence/i18n/hu.po Normal file
View file

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

113
product_sequence/i18n/it.po Normal file
View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-05 02:44+0000\n"
"PO-Revision-Date: 2020-04-02 15:19+0000\n"
"Last-Translator: Lorenzo Battistini <lb@takobi.online>\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 ""

110
product_sequence/i18n/ja.po Normal file
View file

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

111
product_sequence/i18n/lt.po Normal file
View file

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

110
product_sequence/i18n/mk.po Normal file
View file

@ -0,0 +1,110 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "Производител"

110
product_sequence/i18n/mn.po Normal file
View file

@ -0,0 +1,110 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "Үйлдвэрлэгч"

111
product_sequence/i18n/nb.po Normal file
View file

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

110
product_sequence/i18n/nl.po Normal file
View file

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

111
product_sequence/i18n/pl.po Normal file
View file

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

117
product_sequence/i18n/pt.po Normal file
View file

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

View file

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

111
product_sequence/i18n/ro.po Normal file
View file

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

112
product_sequence/i18n/ru.po Normal file
View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 "Производитель"

109
product_sequence/i18n/sk.po Normal file
View file

@ -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 <jprokop@jackie.sk>\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 ""

View file

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

110
product_sequence/i18n/sl.po Normal file
View file

@ -0,0 +1,110 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_sequence
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-27 03:49+0000\n"
"PO-Revision-Date: 2018-01-27 03:49+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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 ""

111
product_sequence/i18n/sr.po Normal file
View file

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

110
product_sequence/i18n/sv.po Normal file
View file

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

110
product_sequence/i18n/tr.po Normal file
View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -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.",
)

View file

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

View file

@ -0,0 +1,6 @@
* Angel Moya <angel.moya@domatix.com>
* Graeme Gellatly <g@o4sb.com>
* Sodexis <dev@sodexis.com>
* Lois Rilo <lois.rilo@eficent.com>
* Sudhir Arya <sudhir@erpharbor.com>
* Alexandre Díaz <alexandre.diaz@tecnativa.com>

View file

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

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View file

@ -0,0 +1,444 @@
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
<title>Product Sequence</title>
<style type="text/css">
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
.subscript {
vertical-align: sub;
font-size: smaller }
.superscript {
vertical-align: super;
font-size: smaller }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left, table.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right, table.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
.align-top {
vertical-align: top }
.align-middle {
vertical-align: middle }
.align-bottom {
vertical-align: bottom }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
/* "booktabs" style (no vertical lines) */
table.docutils.booktabs {
border: 0px;
border-top: 2px solid;
border-bottom: 2px solid;
border-collapse: collapse;
}
table.docutils.booktabs * {
border: 0px;
}
table.docutils.booktabs th {
border-bottom: thin solid;
text-align: left;
}
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="product-sequence">
<h1 class="title">Product Sequence</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/product-attribute/tree/12.0/product_sequence"><img alt="OCA/product-attribute" src="https://img.shields.io/badge/github-OCA%2Fproduct--attribute-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/product-attribute-12-0/product-attribute-12-0-product_sequence"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/135/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p>This module allows to associate a sequence to the product reference.
The reference (default code) is unique (SQL constraint) and required.</p>
<p>You can optionally specify different sequences for different product
categories.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#usage" id="id1">Usage</a></li>
<li><a class="reference internal" href="#bug-tracker" id="id2">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="id3">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="id4">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="id5">Contributors</a></li>
<li><a class="reference internal" href="#maintainers" id="id6">Maintainers</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="usage">
<h1><a class="toc-backref" href="#id1">Usage</a></h1>
<p>To specify a different sequence for a product category proceed as follows:</p>
<ol class="arabic simple">
<li>Go to the a Product Category form view.
(<strong>note:</strong> you will need to install Inventory app to be able to access to
the form view, <em>Inventory &gt; Configuration &gt; Products &gt; Products Categories</em>;
or create a menuitem manually).</li>
<li>Fill the <em>Prefix for Product Internal Reference</em> as desired.</li>
<li>Under the settings (Settings -&gt; General Settings -&gt; Products), you can specify
whether the prefix of the parent category should be used if no prefix has been
specified for the category.</li>
</ol>
<a class="reference external image-reference" href="https://runbot.odoo-community.org/runbot/135/12.0"><img alt="Try me on Runbot" src="https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas" /></a>
</div>
<div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#id2">Bug Tracker</a></h1>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/product-attribute/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/product-attribute/issues/new?body=module:%20product_sequence%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
<h1><a class="toc-backref" href="#id3">Credits</a></h1>
<div class="section" id="authors">
<h2><a class="toc-backref" href="#id4">Authors</a></h2>
<ul class="simple">
<li>Zikzakmedia SL</li>
<li>Sodexis</li>
</ul>
</div>
<div class="section" id="contributors">
<h2><a class="toc-backref" href="#id5">Contributors</a></h2>
<ul class="simple">
<li>Angel Moya &lt;<a class="reference external" href="mailto:angel.moya&#64;domatix.com">angel.moya&#64;domatix.com</a>&gt;</li>
<li>Graeme Gellatly &lt;<a class="reference external" href="mailto:g&#64;o4sb.com">g&#64;o4sb.com</a>&gt;</li>
<li>Sodexis &lt;<a class="reference external" href="mailto:dev&#64;sodexis.com">dev&#64;sodexis.com</a>&gt;</li>
<li>Lois Rilo &lt;<a class="reference external" href="mailto:lois.rilo&#64;eficent.com">lois.rilo&#64;eficent.com</a>&gt;</li>
<li>Sudhir Arya &lt;<a class="reference external" href="mailto:sudhir&#64;erpharbor.com">sudhir&#64;erpharbor.com</a>&gt;</li>
<li>Alexandre Díaz &lt;<a class="reference external" href="mailto:alexandre.diaz&#64;tecnativa.com">alexandre.diaz&#64;tecnativa.com</a>&gt;</li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#id6">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/product-attribute/tree/12.0/product_sequence">OCA/product-attribute</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>
</div>
</body>
</html>

View file

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

View file

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

View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2018 Eficent Business and IT Consulting Services S.L.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="product_category_form_view" model="ir.ui.view">
<field name="name">product.category.form - product_sequence</field>
<field name="model">product.category</field>
<field name="inherit_id" ref="product.product_category_form_view"/>
<field name="arch" type="xml">
<field name="parent_id" position="after">
<label for="code_prefix"/>
<div>
<field name="code_prefix" style="padding-right: 1.0em" class="oe_inline"/>
<field name="sequence_id" groups="base.group_no_one"/>
</div>
</field>
</field>
</record>
</odoo>

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2018 Eficent Business and IT Consulting Services S.L.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="res_config_settings_view_form" model="ir.ui.view">
<field name="name">res.config.settings.view.form.inherit.product</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="product.res_config_settings_view_form" />
<field name="arch" type="xml">
<div id="product_general_settings" position="inside">
<div class="col-12 col-lg-6 o_setting_box">
<div class="o_setting_left_pane">
<field name="use_parent_categories_to_determine_prefix" />
</div>
<div class="o_setting_right_pane">
<label for="use_parent_categories_to_determine_prefix"
string="Use parent categories to determine the prefix" />
<div class="text-muted">
Use parent categories to determine the prefix if the category
has no settings for the prefix.
</div>
</div>
</div>
</div>
</field>
</record>
</odoo>