diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/product_matrix | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/product_matrix')
63 files changed, 7696 insertions, 0 deletions
diff --git a/addons/product_matrix/__init__.py b/addons/product_matrix/__init__.py new file mode 100644 index 00000000..dc5e6b69 --- /dev/null +++ b/addons/product_matrix/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/addons/product_matrix/__manifest__.py b/addons/product_matrix/__manifest__.py new file mode 100644 index 00000000..0be70828 --- /dev/null +++ b/addons/product_matrix/__manifest__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +{ + 'name': "Product Matrix", + 'summary': """ + Technical module: Matrix Implementation + """, + 'description': """ +Please refer to Sale Matrix or Purchase Matrix for the use of this module. + """, + 'category': 'Sales/Sales', + 'version': '1.0', + 'depends': ['account'], + # Account dependency for section_and_note widget. + 'qweb': [ + "static/src/xml/product_matrix.xml", + ], + 'data': [ + 'views/assets.xml', + 'views/matrix_templates.xml', + ], + 'demo': [ + 'data/product_matrix_demo.xml', + ], + 'license': 'LGPL-3', +} diff --git a/addons/product_matrix/data/product_matrix_demo.xml b/addons/product_matrix/data/product_matrix_demo.xml new file mode 100644 index 00000000..479458bb --- /dev/null +++ b/addons/product_matrix/data/product_matrix_demo.xml @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo noupdate="1"> + + <!-- Size --> + <record id="product_attribute_size" model="product.attribute"> + <field name="name">Size</field> + <field name="sequence">19</field> + </record> + <record id="product_attribute_value_size_xs" model="product.attribute.value"> + <field name="name">XS</field> + <field name="attribute_id" ref="product_attribute_size"/> + <field name="sequence">1</field> + </record> + <record id="product_attribute_value_size_s" model="product.attribute.value"> + <field name="name">S</field> + <field name="attribute_id" ref="product_attribute_size"/> + <field name="sequence">2</field> + </record> + <record id="product_attribute_value_size_m" model="product.attribute.value"> + <field name="name">M</field> + <field name="attribute_id" ref="product_attribute_size"/> + <field name="sequence">3</field> + </record> + <record id="product_attribute_value_size_l" model="product.attribute.value"> + <field name="name">L</field> + <field name="attribute_id" ref="product_attribute_size"/> + <field name="sequence">4</field> + </record> + <record id="product_attribute_value_size_xl" model="product.attribute.value"> + <field name="name">XL</field> + <field name="attribute_id" ref="product_attribute_size"/> + <field name="sequence">5</field> + </record> + + <!-- Color --> + <record id="product_attribute_value_color_1" model="product.attribute.value"> + <field name="name">Blue</field> + <field name="attribute_id" ref="product.product_attribute_2"/> + <field name="sequence">3</field> + </record> + <record id="product_attribute_value_color_2" model="product.attribute.value"> + <field name="name">Pink</field> + <field name="attribute_id" ref="product.product_attribute_2"/> + <field name="sequence">4</field> + </record> + <record id="product_attribute_value_color_3" model="product.attribute.value"> + <field name="name">Yellow</field> + <field name="attribute_id" ref="product.product_attribute_2"/> + <field name="sequence">5</field> + </record> + <record id="product_attribute_value_color_4" model="product.attribute.value"> + <field name="name">Rainbow</field> + <field name="attribute_id" ref="product.product_attribute_2"/> + <field name="sequence">6</field> + </record> + + <!-- Gender --> + <record id="product_attribute_gender" model="product.attribute"> + <field name="name">Gender</field> + <field name="sequence">21</field> + </record> + <record id="product_attribute_value_m" model="product.attribute.value"> + <field name="name">Men</field> + <field name="attribute_id" ref="product_attribute_gender"/> + <field name="sequence">1</field> + </record> + <record id="product_attribute_value_w" model="product.attribute.value"> + <field name="name">Women</field> + <field name="attribute_id" ref="product_attribute_gender"/> + <field name="sequence">2</field> + </record> + + <record id="matrix_product_template_shirt" model="product.template"> + <field name="name">My Company Tshirt (GRID)</field> + <field name="categ_id" ref="product.product_category_6"/> + <field name="standard_price">7.0</field> + <field name="list_price">15.0</field> + <field name="type">consu</field> + <field name="uom_id" ref="uom.product_uom_unit"/> + <field name="uom_po_id" ref="uom.product_uom_unit"/> + <field name="description_sale">Show your company love around you =).</field> + <field name="image_1920" type="base64" file="product_matrix/static/img/matrix_mycompany_tshirt.jpeg"/> + </record> + + <record id="product_template_attribute_line_size" model="product.template.attribute.line"> + <field name="product_tmpl_id" ref="matrix_product_template_shirt"/> + <field name="attribute_id" ref="product_attribute_size"/> + <field name="value_ids" eval="[ + (6, 0, [ + ref('product_attribute_value_size_xs'), + ref('product_attribute_value_size_s'), + ref('product_attribute_value_size_m'), + ref('product_attribute_value_size_l'), + ref('product_attribute_value_size_xl')])]"/> + </record> + <record id="product_template_attribute_line_gender" model="product.template.attribute.line"> + <field name="product_tmpl_id" ref="matrix_product_template_shirt"/> + <field name="attribute_id" ref="product_attribute_gender"/> + <field name="value_ids" eval="[(6, 0, [ref('product_attribute_value_m'), ref('product_attribute_value_w')])]"/> + </record> + <record id="product_template_attribute_line_color" model="product.template.attribute.line"> + <field name="product_tmpl_id" ref="matrix_product_template_shirt"/> + <field name="attribute_id" ref="product.product_attribute_2"/> + <field name="value_ids" eval="[(6, 0, [ref('product_attribute_value_color_1'), ref('product_attribute_value_color_2'), ref('product_attribute_value_color_3'), ref('product_attribute_value_color_4')])]"/> + </record> +</odoo> diff --git a/addons/product_matrix/i18n/ar.po b/addons/product_matrix/i18n/ar.po new file mode 100644 index 00000000..69e0fae1 --- /dev/null +++ b/addons/product_matrix/i18n/ar.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# amrnegm <amrnegm.01@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Mohammed Albasha <m.albasha.ma@gmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Mohamed Alansari <Mohammad.alansari@outlook.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Mohamed Alansari <Mohammad.alansari@outlook.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\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_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "أزرق" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "اغلاق" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "تأكيد" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "الجنس" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "المُعرف" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "غير متاح" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "قالب المنتج" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "الحجم" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "الوحدات" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "أصفر" diff --git a/addons/product_matrix/i18n/bg.po b/addons/product_matrix/i18n/bg.po new file mode 100644 index 00000000..1b9f8214 --- /dev/null +++ b/addons/product_matrix/i18n/bg.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Igor Sheludko <igor.sheludko@gmail.com>, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# Ивайло Малинов <iv.malinov@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Ивайло Малинов <iv.malinov@gmail.com>, 2021\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Синьо" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Затвори" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Потвърдете" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Пол" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Липсва" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Шаблон за продукт " + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Размер" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Единици" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Жълт" diff --git a/addons/product_matrix/i18n/bn.po b/addons/product_matrix/i18n/bn.po new file mode 100644 index 00000000..2404935a --- /dev/null +++ b/addons/product_matrix/i18n/bn.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2021 +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "বদ্ধ" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "নিশ্চিত করুন" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "আইডি " + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "আকার" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/ca.po b/addons/product_matrix/i18n/ca.po new file mode 100644 index 00000000..bb49c12a --- /dev/null +++ b/addons/product_matrix/i18n/ca.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2020 +# Carles Antoli <carlesantoli@hotmail.com>, 2020 +# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020 +# jabelchi, 2021 +# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: José Cabrera Lozano <jose.cabrera@edukative.es>, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Blau" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Escolliu les variants del producte" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Tancar" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Sexe" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "No disponible" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Plantilla de producte" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Mida" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Unitats" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Groc" diff --git a/addons/product_matrix/i18n/ckb.po b/addons/product_matrix/i18n/ckb.po new file mode 100644 index 00000000..88eefed4 --- /dev/null +++ b/addons/product_matrix/i18n/ckb.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "داخستن" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "پشتڕاستکردنەوە" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "ڕەگەز" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ناسنامە" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "بەردەست نییە" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "قەبارە" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/cs.po b/addons/product_matrix/i18n/cs.po new file mode 100644 index 00000000..077f0c77 --- /dev/null +++ b/addons/product_matrix/i18n/cs.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Modrá" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Vyberte varianty produktu" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Zavřít" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Potvrdit" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Pohlaví" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Není k dispozici" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Šablona produktu" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Hodnota atributu šablony produktu" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Velikost" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Jednotky" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Žlutý" diff --git a/addons/product_matrix/i18n/da.po b/addons/product_matrix/i18n/da.po new file mode 100644 index 00000000..86c9db90 --- /dev/null +++ b/addons/product_matrix/i18n/da.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Martin Trigaux, 2020 +# Per Rasmussen <perhgrasmussen@gmail.com>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Mads Søndergaard, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Mads Søndergaard, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Blå" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Vælg produkt varianter" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Luk" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Bekræft" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Køn" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Mænd" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Min virksomheds Tshirt (GITTER)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Ikke tilgængelig" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Pink" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Produktskabelon" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Produkt skabelon egenskab værdi" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Regnbue" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Vis din virksomheds kærlighed omkring dig =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Størrelse" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Enheder" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Kvinder" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Gul" diff --git a/addons/product_matrix/i18n/de.po b/addons/product_matrix/i18n/de.po new file mode 100644 index 00000000..c83a028d --- /dev/null +++ b/addons/product_matrix/i18n/de.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Wolfgang Taferner, 2020 +# Chris Egal <sodaswed@web.de>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Chris Egal <sodaswed@web.de>, 2020\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Blau" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Schließen" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Bestätigen" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Geschlecht" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Nicht verfügbar" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Produktvorlage" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Größe" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Einheiten" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Gelb" diff --git a/addons/product_matrix/i18n/el.po b/addons/product_matrix/i18n/el.po new file mode 100644 index 00000000..277dcb00 --- /dev/null +++ b/addons/product_matrix/i18n/el.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# George Tarasidis <george_tarasidis@yahoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2020\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Μπλε" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Κλείσιμο" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Επιβεβαίωση" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Φύλλο" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "Κωδικός" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Πρότυπο Είδους " + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Μέγεθος" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Κίτρινο" diff --git a/addons/product_matrix/i18n/eo.po b/addons/product_matrix/i18n/eo.po new file mode 100644 index 00000000..1b5bf129 --- /dev/null +++ b/addons/product_matrix/i18n/eo.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/es.po b/addons/product_matrix/i18n/es.po new file mode 100644 index 00000000..fb5e5484 --- /dev/null +++ b/addons/product_matrix/i18n/es.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Vivian Montana <vmo@odoo.com>, 2020 +# Mariana Santos Romo <msn@odoo.com>, 2020 +# Osiris Román <osiris.roman@yachaytech.edu.ec>, 2020 +# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Alejandro Die Sanchis <marketing@domatix.com>, 2020 +# Luis M. Ontalba <luis.martinez@tecnativa.com>, 2020 +# Jon Perez <jop@odoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Jon Perez <jop@odoo.com>, 2020\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Azul" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Seleccione Variantes de Producto" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Sexo" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Hombres" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Mi Camiseta de mi Empresa (GRID)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "No disponible" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Rosado" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Valor de Atributo del Modelo de Producto" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Arco iris" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Muestre a su compañía el amor a su alrededor =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Tamaño" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Unidades" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Mujeres" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Amarillo" diff --git a/addons/product_matrix/i18n/es_MX.po b/addons/product_matrix/i18n/es_MX.po new file mode 100644 index 00000000..625ab956 --- /dev/null +++ b/addons/product_matrix/i18n/es_MX.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Azul" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Seleccione las variantes de producto" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Sexo" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Hombres" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "La camiseta de mi empresa (GRID)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "No disponible" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Rosado" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Valor de atributo del modelo de producto" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Arco iris" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Muestre el amor de su compañía =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Tamaño" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Unidades" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Mujeres" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Amarillo" diff --git a/addons/product_matrix/i18n/et.po b/addons/product_matrix/i18n/et.po new file mode 100644 index 00000000..a372a56d --- /dev/null +++ b/addons/product_matrix/i18n/et.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Piia Paurson <piia@avalah.ee>, 2020 +# Rivo Zängov <eraser@eraser.ee>, 2020 +# Martin Trigaux, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Algo Kärp <algokarp@gmail.com>, 2020 +# atriine <triine@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: atriine <triine@avalah.ee>, 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Sinine" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Sulge" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Kinnitage" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Sugu" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Pole saadaval" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Toote mall" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Suurus" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Ühikud" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/eu.po b/addons/product_matrix/i18n/eu.po new file mode 100644 index 00000000..60bdd041 --- /dev/null +++ b/addons/product_matrix/i18n/eu.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Mikel Lizarralde <mikellizarralde@gmail.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# Iñaki Ibarrola <inakiibarrola@yahoo.es>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Urdina" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Itxi" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Baieztatu" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Generoa " + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Produktuaren txantiloia" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Tamaina" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Horia " diff --git a/addons/product_matrix/i18n/fa.po b/addons/product_matrix/i18n/fa.po new file mode 100644 index 00000000..221ff436 --- /dev/null +++ b/addons/product_matrix/i18n/fa.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Faraz Sadri Alamdari <ifarazir@gmail.com>, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Mohsen Mohammadi <iammohsen.123@gmail.com>, 2021\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "آبی" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "گونه محصول را انتخاب کنید" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "بستن" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "تایید" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "جنسیت" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "شناسه" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "مرد" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "در دسترس نیست" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "صورتی" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "قالب محصول" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "رنگینکمان" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "عشق به شرکت را اطراف خود به نمایش بگذارید =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "اندازه" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "واحد ها" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "زن" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "زرد" diff --git a/addons/product_matrix/i18n/fi.po b/addons/product_matrix/i18n/fi.po new file mode 100644 index 00000000..5b181013 --- /dev/null +++ b/addons/product_matrix/i18n/fi.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Tommi Rintala <tommi.rintala@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 2020 +# Simo Suurla <simo@suurla.fi>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Simo Suurla <simo@suurla.fi>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Sininen" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Sulje" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Vahvista" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Sukupuoli" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Ei saatavilla" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Tuotemalli" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Tuotemallin ominaisuuden arvo" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Koko" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Yksiköt" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Keltainen" diff --git a/addons/product_matrix/i18n/fr.po b/addons/product_matrix/i18n/fr.po new file mode 100644 index 00000000..e303aaa9 --- /dev/null +++ b/addons/product_matrix/i18n/fr.po @@ -0,0 +1,149 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# thomas quertinmont <tqu@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Martin Trigaux, 2020 +# Frédéric LIETART <stuff@tifred.fr>, 2020 +# Olivier Lenoir <olivier.lenoir@free.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Julien Goergen <jgo@odoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Julien Goergen <jgo@odoo.com>, 2020\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Bleu" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Choisissez des variantes de l'article" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Fermer" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmer" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Genre" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Hommes" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Le t-shirt de ma compagnie (GRID)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Pas disponible" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Rose" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Modèle d'article" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Valeur caratéristique du modèle produit" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Arc-en-ciel" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Montrez l'amour de votre entreprise autour de vous =)" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Taille" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Unité(s)" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Femmes" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Jaune" diff --git a/addons/product_matrix/i18n/he.po b/addons/product_matrix/i18n/he.po new file mode 100644 index 00000000..7ffee258 --- /dev/null +++ b/addons/product_matrix/i18n/he.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Nis bar <nisim60@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Ofir Blum <ofir.blum@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Ofir Blum <ofir.blum@gmail.com>, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "כחול" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "בחר וריאנטים של מוצר" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "סגור" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "אשר" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "מין" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "מזהה" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "גברים" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "חולצת של החברה שלי (רשת)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "לא זמין" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "ורוד" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "תבנית מוצר " + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "ערך תכונה של תבנית מוצר" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "קשת בענן" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "הראה את אהבת החברה שלך סביבך =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "גודל" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "יחידה" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "נשים" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "צהוב" diff --git a/addons/product_matrix/i18n/hi.po b/addons/product_matrix/i18n/hi.po new file mode 100644 index 00000000..1c5b35ee --- /dev/null +++ b/addons/product_matrix/i18n/hi.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "बंद" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/hr.po b/addons/product_matrix/i18n/hr.po new file mode 100644 index 00000000..24a03901 --- /dev/null +++ b/addons/product_matrix/i18n/hr.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Milan Tribuson <one.mile.code@gmail.com>, 2020 +# Bole <bole@dajmi5.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2021\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\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_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Plava" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Odaberi varijante proizvoda" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Potvrdi" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Spol" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Muški" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Majca moje tvrtke (mreža)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Nije dostupno" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Pink" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Vrijednost atributa predloška proizvoda" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Duga" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Veličina" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Jedinice" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Žensko" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Žuta" diff --git a/addons/product_matrix/i18n/hu.po b/addons/product_matrix/i18n/hu.po new file mode 100644 index 00000000..8051b8be --- /dev/null +++ b/addons/product_matrix/i18n/hu.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# gezza <geza.nagy@oregional.hu>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Kék" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Bezárás" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Megerősítés" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Neme" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "Azonosító" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Nem elérhető" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Terméksablon" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Méret" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "egység" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Sárga" diff --git a/addons/product_matrix/i18n/id.po b/addons/product_matrix/i18n/id.po new file mode 100644 index 00000000..7ece6e29 --- /dev/null +++ b/addons/product_matrix/i18n/id.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# Altela Eleviansyah Pramardhika <altela_pramardhika@yahoo.com>, 2021 +# Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Biru" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Tutup" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Konfirmasi" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Jenis kelamin" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Templete Produk" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Ukuran" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Unit" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Kuning" diff --git a/addons/product_matrix/i18n/it.po b/addons/product_matrix/i18n/it.po new file mode 100644 index 00000000..b867bab1 --- /dev/null +++ b/addons/product_matrix/i18n/it.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Paolo Valier, 2020 +# Manuela Feliciani <mfeliciani@alice.it>, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Blu" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Scelta varianti prodotto" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Chiudi" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Conferma" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Sesso" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Uomini" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Maglietta My Company (GRIGLIA)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Non disponibile" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Rosa" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Modello prodotto" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Valore attributo del modello prodotto" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Arcobaleno" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Mostra a tutti l'amore per la tua azienda =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Taglia" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Unità" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Donne" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Giallo" diff --git a/addons/product_matrix/i18n/ja.po b/addons/product_matrix/i18n/ja.po new file mode 100644 index 00000000..e027ae72 --- /dev/null +++ b/addons/product_matrix/i18n/ja.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "青" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "クローズ" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "確認" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "性別" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "利用不可" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "プロダクトテンプレート" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "サイズ" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "個" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "黄" diff --git a/addons/product_matrix/i18n/ka.po b/addons/product_matrix/i18n/ka.po new file mode 100644 index 00000000..53b2dcc6 --- /dev/null +++ b/addons/product_matrix/i18n/ka.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri <gmelitauri@live.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Giorgi Melitauri <gmelitauri@live.com>, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "დახურვა" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "დამოწმება" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "სქესი" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "პროდუქტის შაბლონი" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "ზომა" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/km.po b/addons/product_matrix/i18n/km.po new file mode 100644 index 00000000..2d7039b5 --- /dev/null +++ b/addons/product_matrix/i18n/km.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Samkhann Seang <seangsamkhann@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "ខៀវ" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "បិទ" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "បញ្ជាក់" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "ភេទ" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "មិនអាច" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "គំរូផលិតផល" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "ទំហំ" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "ពណ៌លឿង" diff --git a/addons/product_matrix/i18n/ko.po b/addons/product_matrix/i18n/ko.po new file mode 100644 index 00000000..b4249aac --- /dev/null +++ b/addons/product_matrix/i18n/ko.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI <hwangtog@gmail.com>, 2020 +# Link Up링크업 <linkup.way@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Link Up링크업 <linkup.way@gmail.com>, 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "파란색" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "파생 상품 선택하기" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "마감" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "확인" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "성별" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "남성" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "우리 회사 티셔츠(그리드)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "사용할 수 없음" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "핑크" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "상품 양식" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "상품 서식 속성 값" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "무지개색" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "당신의 회사 사랑을 보여주십시오 =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "사이즈" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "단위" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "여성" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "노랑" diff --git a/addons/product_matrix/i18n/lb.po b/addons/product_matrix/i18n/lb.po new file mode 100644 index 00000000..e61aa4fb --- /dev/null +++ b/addons/product_matrix/i18n/lb.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-26 08:17+0000\n" +"PO-Revision-Date: 2019-08-26 09:13+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" diff --git a/addons/product_matrix/i18n/lt.po b/addons/product_matrix/i18n/lt.po new file mode 100644 index 00000000..dd8d72e3 --- /dev/null +++ b/addons/product_matrix/i18n/lt.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2021 +# Arminas Grigonis <arminas@versada.lt>, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# digitouch UAB <digitouchagencyeur@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# Denis Knotko <denis_knotko@yahoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Denis Knotko <denis_knotko@yahoo.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Mėlyna" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Uždaryti" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Patvirtinti" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Lytis" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Nepasiekiama" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Produkto šablonas" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Dydis" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Vienetai" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Geltonas" diff --git a/addons/product_matrix/i18n/lv.po b/addons/product_matrix/i18n/lv.po new file mode 100644 index 00000000..6c53bc60 --- /dev/null +++ b/addons/product_matrix/i18n/lv.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/mn.po b/addons/product_matrix/i18n/mn.po new file mode 100644 index 00000000..216663c9 --- /dev/null +++ b/addons/product_matrix/i18n/mn.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Khishigbat Ganbold <khishigbat@asterisk-tech.mn>, 2020 +# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2020 +# Khoschuluu Khuderchuluu <khoschuluu@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Khoschuluu Khuderchuluu <khoschuluu@gmail.com>, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Цэнхэр" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Хаах" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Илгээх" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Хүйс" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Идэвхгүй" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Барааны загвар" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Хэмжээ" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Нэгж" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Шар" diff --git a/addons/product_matrix/i18n/nb.po b/addons/product_matrix/i18n/nb.po new file mode 100644 index 00000000..aea0e79d --- /dev/null +++ b/addons/product_matrix/i18n/nb.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Jorunn D. Newth, 2020 +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Blå" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Lukk" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Bekreft" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Kjønn" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Produktmal" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Attributtverdi for Produktmal" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Størrelse" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Enheter" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Gul" diff --git a/addons/product_matrix/i18n/nl.po b/addons/product_matrix/i18n/nl.po new file mode 100644 index 00000000..b74869e5 --- /dev/null +++ b/addons/product_matrix/i18n/nl.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Blauw" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Kies productvarianten" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Sluiten" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Bevestigen" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Geslacht" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Man" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Mijn bedrijf t-shirt (Matrix)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Niet beschikbaar" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Roze" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Productsjabloon" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Productsjabloon attribuut waarde" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Regenboog" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Toon uw liefde voor uw bedrijf rond u =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Grootte" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Stuks" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Vrouwen" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Geel" diff --git a/addons/product_matrix/i18n/pl.po b/addons/product_matrix/i18n/pl.po new file mode 100644 index 00000000..600d9b0e --- /dev/null +++ b/addons/product_matrix/i18n/pl.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Dariusz Żbikowski <darek@krokus.com.pl>, 2020 +# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Natalia Gros <nag@odoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Natalia Gros <nag@odoo.com>, 2020\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Niebieski" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Zamknij" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Potwierdź" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Płeć" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Nie dostępny/e" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Szablon produktu" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Rozmiar" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Jednostki" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Żółty" diff --git a/addons/product_matrix/i18n/product_matrix.pot b/addons/product_matrix/i18n/product_matrix.pot new file mode 100644 index 00000000..64a67542 --- /dev/null +++ b/addons/product_matrix/i18n/product_matrix.pot @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-29 13:46+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/pt.po b/addons/product_matrix/i18n/pt.po new file mode 100644 index 00000000..ed936896 --- /dev/null +++ b/addons/product_matrix/i18n/pt.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Nuno Silva <nuno.silva@arxi.pt>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Azul" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Género" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Indisponível" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Modelo de Artigo" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Tamanho" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/pt_BR.po b/addons/product_matrix/i18n/pt_BR.po new file mode 100644 index 00000000..7c31e041 --- /dev/null +++ b/addons/product_matrix/i18n/pt_BR.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# Luiz Fernando <lfpsgs@outlook.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Luiz Fernando <lfpsgs@outlook.com>, 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Azul" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Selecione as Variantes de Produto" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmar" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Sexo" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Homem" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Camiseta Minha Empresa (GRADE)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Não Disponível" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Rosa" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Modelo de Produto" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Valor de Atributo do Template de Produto" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Arco iris" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Mostre seu amor da sua empresa a sua volta =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Tamanho" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Unidades" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Mulher" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "GG" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "PP" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Amarelo" diff --git a/addons/product_matrix/i18n/ro.po b/addons/product_matrix/i18n/ro.po new file mode 100644 index 00000000..bc212b8d --- /dev/null +++ b/addons/product_matrix/i18n/ro.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Cozmin Candea <office@terrabit.ro>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Albastru" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Închide" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Confirmă" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Sex" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Nu este disponibil" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Șablon produs" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Valoare Atribut Model Produs" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Dimensiune" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "buc" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Galben" diff --git a/addons/product_matrix/i18n/ru.po b/addons/product_matrix/i18n/ru.po new file mode 100644 index 00000000..82598b26 --- /dev/null +++ b/addons/product_matrix/i18n/ru.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Collex100, 2020 +# Ivan Yelizariev <yelizariev@it-projects.info>, 2020 +# Sergey Vilizhanin, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Синий" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Закрыть" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Подтвердить" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Пол" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "Идентификатор" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "недоступен" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Шаблон продукта" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Размер" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Единицы" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Желтый" diff --git a/addons/product_matrix/i18n/si.po b/addons/product_matrix/i18n/si.po new file mode 100644 index 00000000..cd83bc3d --- /dev/null +++ b/addons/product_matrix/i18n/si.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/sk.po b/addons/product_matrix/i18n/sk.po new file mode 100644 index 00000000..bbeebe10 --- /dev/null +++ b/addons/product_matrix/i18n/sk.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Modrá" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Vyberte varianty produktu" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Zatvoriť" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Potvrdiť" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Pohlavie" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Muži" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Tričko mojej spoločnosti (GRID)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Nedostupné" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Ružová" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Šablóna produktu" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Hodnota atribútu šablóny produktu" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Dúha" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Ukážte lásku vašej spoločnosti okolo vás =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Veľkosť" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "kusy" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Ženy" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Žltá" diff --git a/addons/product_matrix/i18n/sl.po b/addons/product_matrix/i18n/sl.po new file mode 100644 index 00000000..0854871f --- /dev/null +++ b/addons/product_matrix/i18n/sl.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Grega Vavtar <grega@hbs.si>, 2021 +# Tadej Lupšina <tadej@hbs.si>, 2021 +# Jasmina Macur <jasmina@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Jasmina Macur <jasmina@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\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_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Modro" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Zaključi" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Potrdi" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Spol" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Ni na voljo" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Predloga izdelka" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Velikost" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Rumena" diff --git a/addons/product_matrix/i18n/sv.po b/addons/product_matrix/i18n/sv.po new file mode 100644 index 00000000..8fad6569 --- /dev/null +++ b/addons/product_matrix/i18n/sv.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Kim Asplund <kim.asplund@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Blå" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Stäng" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Bekräfta" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Kön" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Produktmall" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Storlek" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Enheter" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/th.po b/addons/product_matrix/i18n/th.po new file mode 100644 index 00000000..258f216f --- /dev/null +++ b/addons/product_matrix/i18n/th.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "สีน้ำเงิน" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "ปิด" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "ยืนยัน" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "เพศ" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "รหัส" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "รูปแบบสินค้า" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "ขนาด" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "หน่วย" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Yellow" diff --git a/addons/product_matrix/i18n/tr.po b/addons/product_matrix/i18n/tr.po new file mode 100644 index 00000000..54f20c86 --- /dev/null +++ b/addons/product_matrix/i18n/tr.po @@ -0,0 +1,149 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Ediz Duman <neps1192@gmail.com>, 2020 +# Martin Trigaux, 2020 +# dhkabayel <dhkabayel@gmail.com>, 2020 +# Tugay Hatıl <tugayh@projetgrup.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2020\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Mavi" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Ürün Varyantlarını Seçin" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Kapat" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Onayla" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Cinsiyeti" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Erkek" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "My Company Tshirt (GRID)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Mevcut değil" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Pembe" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Ürün Şablonu" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Ürün Şablon Nitelik Değeri" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Gökkuşağı" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Şirketinizin etrafınızdaki sevgisini gösterin =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Boyut" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Adet" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Kadın" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Sarı" diff --git a/addons/product_matrix/i18n/uk.po b/addons/product_matrix/i18n/uk.po new file mode 100644 index 00000000..c822d1f9 --- /dev/null +++ b/addons/product_matrix/i18n/uk.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Martin Trigaux, 2020 +# ТАрас <tratatuta@i.ua>, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Синій" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Оберіть варіанти товару" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Закрити" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Підтвердити" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Стать" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Останні зміни на" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "Чоловіки" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "Футболка моєї компанії (СІТКА)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Недоступний" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "Рожевий" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Шаблон товару" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Значення атрибуту шаблону товару" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "Веселка" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "Покажіть любов до своєї компанії навколо себе =)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Розмір" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Одиниці" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "Жінки" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Жовтий" diff --git a/addons/product_matrix/i18n/ur.po b/addons/product_matrix/i18n/ur.po new file mode 100644 index 00000000..7bcf0b91 --- /dev/null +++ b/addons/product_matrix/i18n/ur.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "" diff --git a/addons/product_matrix/i18n/vi.po b/addons/product_matrix/i18n/vi.po new file mode 100644 index 00000000..aa09ca2d --- /dev/null +++ b/addons/product_matrix/i18n/vi.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# Dung Nguyen Thi <dungnt@trobz.com>, 2020 +# Martin Trigaux, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "Xanh dương" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "Choose Product Variants" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "Đóng" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "Xác nhận" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "Giới tính" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "Không sẵn sàng" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "Mẫu sản phẩm" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "Giá trị thuộc tính sản phẩm mẫu" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "Kích thước" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "Cái" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "Vàng" diff --git a/addons/product_matrix/i18n/zh_CN.po b/addons/product_matrix/i18n/zh_CN.po new file mode 100644 index 00000000..1c3e85f2 --- /dev/null +++ b/addons/product_matrix/i18n/zh_CN.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# liAnGjiA <liangjia@qq.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# fausthuang, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: guohuadeng <guohuadeng@hotmail.com>, 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "蓝色" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "选择产品变体" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "关闭" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "确认" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "性别" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "不可用" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "产品模板" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "产品模板属性值" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "尺寸:" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "件" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "黄色" diff --git a/addons/product_matrix/i18n/zh_TW.po b/addons/product_matrix/i18n/zh_TW.po new file mode 100644 index 00000000..6b417219 --- /dev/null +++ b/addons/product_matrix/i18n/zh_TW.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_matrix +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:17+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1 +msgid "Blue" +msgstr "藍色" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Choose Product Variants" +msgstr "選擇產品變體" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Close" +msgstr "關閉" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/js/section_and_note_widget.js:0 +#, python-format +msgid "Confirm" +msgstr "確認" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__display_name +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_gender +msgid "Gender" +msgstr "性別" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template__id +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value__id +msgid "ID" +msgstr "ID" + +#. module: product_matrix +#: model:ir.model.fields,field_description:product_matrix.field_product_template____last_update +#: model:ir.model.fields,field_description:product_matrix.field_product_template_attribute_value____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_m +msgid "Men" +msgstr "男性" + +#. module: product_matrix +#: model:product.template,name:product_matrix.matrix_product_template_shirt +msgid "My Company Tshirt (GRID)" +msgstr "我的公司T恤(GRID)" + +#. module: product_matrix +#. openerp-web +#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0 +#, python-format +msgid "Not available" +msgstr "不可用" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2 +msgid "Pink" +msgstr "粉紅色" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template +msgid "Product Template" +msgstr "產品模板" + +#. module: product_matrix +#: model:ir.model,name:product_matrix.model_product_template_attribute_value +msgid "Product Template Attribute Value" +msgstr "產品模板屬性值" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4 +msgid "Rainbow" +msgstr "彩虹" + +#. module: product_matrix +#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt +msgid "Show your company love around you =)." +msgstr "展示你的公司愛你周圍=)." + +#. module: product_matrix +#: model:product.attribute,name:product_matrix.product_attribute_size +msgid "Size" +msgstr "尺寸" + +#. module: product_matrix +#: model:product.template,uom_name:product_matrix.matrix_product_template_shirt +msgid "Units" +msgstr "單位" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_w +msgid "Women" +msgstr "女性" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xl +msgid "XL" +msgstr "XL" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_size_xs +msgid "XS" +msgstr "XS" + +#. module: product_matrix +#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3 +msgid "Yellow" +msgstr "黃色" diff --git a/addons/product_matrix/models/__init__.py b/addons/product_matrix/models/__init__.py new file mode 100644 index 00000000..e8fa8f6b --- /dev/null +++ b/addons/product_matrix/models/__init__.py @@ -0,0 +1 @@ +from . import product_template diff --git a/addons/product_matrix/models/product_template.py b/addons/product_matrix/models/product_template.py new file mode 100644 index 00000000..6915833a --- /dev/null +++ b/addons/product_matrix/models/product_template.py @@ -0,0 +1,92 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +import itertools + +from odoo import models + + +class ProductTemplate(models.Model): + _inherit = 'product.template' + + def _get_template_matrix(self, **kwargs): + self.ensure_one() + company_id = kwargs.get('company_id', None) or self.company_id or self.env.company + currency_id = kwargs.get('currency_id', None) or self.currency_id + display_extra = kwargs.get('display_extra_price', False) + attribute_lines = self.valid_product_template_attribute_line_ids + + Attrib = self.env['product.template.attribute.value'] + first_line_attributes = attribute_lines[0].product_template_value_ids._only_active() + attribute_ids_by_line = [line.product_template_value_ids._only_active().ids for line in attribute_lines] + + header = [{"name": self.display_name}] + [ + attr._grid_header_cell( + fro_currency=self.currency_id, + to_currency=currency_id, + company=company_id, + display_extra=display_extra + ) for attr in first_line_attributes] + + result = [[]] + for pool in attribute_ids_by_line: + result = [x + [y] for y in pool for x in result] + args = [iter(result)] * len(first_line_attributes) + rows = itertools.zip_longest(*args) + + matrix = [] + for row in rows: + row_attributes = Attrib.browse(row[0][1:]) + row_header_cell = row_attributes._grid_header_cell( + fro_currency=self.currency_id, + to_currency=currency_id, + company=company_id, + display_extra=display_extra) + result = [row_header_cell] + + for cell in row: + combination = Attrib.browse(cell) + is_possible_combination = self._is_combination_possible(combination) + cell.sort() + result.append({ + "ptav_ids": cell, + "qty": 0, + "is_possible_combination": is_possible_combination + }) + matrix.append(result) + + return { + "header": header, + "matrix": matrix, + } + + +class ProductTemplateAttributeValue(models.Model): + _inherit = "product.template.attribute.value" + + def _grid_header_cell(self, fro_currency, to_currency, company, display_extra=True): + """Generate a header matrix cell for 1 or multiple attributes. + + :param res.currency fro_currency: + :param res.currency to_currency: + :param res.company company: + :param bool display_extra: whether extra prices should be displayed in the cell + True by default, used to avoid showing extra prices on purchases. + :returns: cell with name (and price if any price_extra is defined on self) + :rtype: dict + """ + header_cell = { + 'name': ' • '.join([attr.name for attr in self]) if self else " " + } # The " " is to avoid having 'Not available' if the template has only one attribute line. + extra_price = sum(self.mapped('price_extra')) if display_extra else 0 + if extra_price: + sign = '+ ' if extra_price > 0 else '- ' + header_cell.update({ + "price": sign + self.env['ir.qweb.field.monetary'].value_to_html( + extra_price, { + 'from_currency': fro_currency, + 'display_currency': to_currency, + 'company_id': company.id, + } + ) + }) + return header_cell diff --git a/addons/product_matrix/static/img/matrix_mycompany_tshirt.jpeg b/addons/product_matrix/static/img/matrix_mycompany_tshirt.jpeg Binary files differnew file mode 100644 index 00000000..b600989d --- /dev/null +++ b/addons/product_matrix/static/img/matrix_mycompany_tshirt.jpeg diff --git a/addons/product_matrix/static/src/js/section_and_note_widget.js b/addons/product_matrix/static/src/js/section_and_note_widget.js new file mode 100644 index 00000000..650efbf2 --- /dev/null +++ b/addons/product_matrix/static/src/js/section_and_note_widget.js @@ -0,0 +1,139 @@ +odoo.define('product_matrix.section_and_note_widget', function (require) { + +var Dialog = require('web.Dialog'); +var core = require('web.core'); +var _t = core._t; +var qweb = core.qweb; +var fieldRegistry = require('web.field_registry'); +require('account.section_and_note_backend'); + +var SectionAndNoteFieldOne2Many = fieldRegistry.get('section_and_note_one2many'); + +SectionAndNoteFieldOne2Many.include({ + custom_events: _.extend({}, SectionAndNoteFieldOne2Many.prototype.custom_events, { + open_matrix: '_openMatrix', + }), + + /** + * Sends the matrix modifications to the server + * Through a change on an invisible non stored field. + * + * @param {List} list of changes in the matrix, to be applied to the order. + * {integer} quantity: float + * {List} ptav_ids: product.template.attribute.value ids + * + * @private + */ + _applyGrid: function (changes, productTemplateId) { + // the getParent is to trigger the event on the form Controller instead of the one2many. + // If not, the one2many crashes on reset because it tries to find an operation in the event + // even if there isn't any. + // the only solution would be to use a custom event catched on a new controller + // on the so/po form (as a js_class). + this.trigger_up('field_changed', { + dataPointID: this.dataPointID, + changes: { + grid: JSON.stringify({changes: changes, product_template_id: productTemplateId}), + grid_update: true // to say that the changes to grid have to be applied to the SO. + }, + viewType: 'form', + }); + }, + + /** + * Catches the event asking for matrix opening + * + * @param {OdooEvent} ev various values needed to open the matrix + * {integer} data.product_template_id product.template id + * {list} data.editedCellAttributes list of product.template.attribute.value ids + * {bool} data.edit whether the line source should be deleted or not. + * + * @private + */ + _openMatrix: function (ev) { + ev.stopPropagation(); + var self = this; + var dataPointId = ev.data.dataPointId; + var productTemplateId = ev.data.product_template_id; + var editedCellAttributes = ev.data.editedCellAttributes; + if (!ev.data.edit) { + // remove the line used to open the matrix + this._setValue({operation: 'DELETE', ids: [dataPointId]}); + } + // the getParent is to trigger the event on the form Controller instead of the one2many. + // If not, the one2many crashes on reset because it tries to find an operation in the event + // even if there isn't any. + // the only solution would be to use a custom event catched on a new controller + // on the so/po form (as a js_class). + this.trigger_up('field_changed', { + dataPointID: this.dataPointID, + changes: { + grid_product_tmpl_id: {id: productTemplateId} + }, + viewType: 'form', + onSuccess: function () { + const gridInfo = self.recordData.grid; + self._openMatrixConfigurator(gridInfo, productTemplateId, editedCellAttributes); + } + }); + }, + + /** + * Triggers Matrix Dialog opening + * + * @param {String} jsonInfo matrix dialog content + * @param {integer} productTemplateId product.template id + * @param {editedCellAttributes} list of product.template.attribute.value ids + * used to focus on the matrix cell representing the edited line. + * + * @private + */ + _openMatrixConfigurator: function (jsonInfo, productTemplateId, editedCellAttributes) { + var self = this; + var infos = JSON.parse(jsonInfo); + var MatrixDialog = new Dialog(this, { + title: _t('Choose Product Variants'), + size: 'extra-large', // adapt size depending on matrix size? + $content: $(qweb.render( + 'product_matrix.matrix', { + header: infos.header, + rows: infos.matrix, + } + )), + buttons: [ + {text: _t('Confirm'), classes: 'btn-primary', close: true, click: function (result) { + var $inputs = this.$('.o_matrix_input'); + var matrixChanges = []; + _.each($inputs, function (matrixInput) { + if (matrixInput.value && matrixInput.value !== matrixInput.attributes.value.nodeValue) { + matrixChanges.push({ + qty: parseFloat(matrixInput.value), + ptav_ids: matrixInput.attributes.ptav_ids.nodeValue.split(",").map(function (id) { + return parseInt(id); + }), + }); + } + }); + if (matrixChanges.length > 0) { + self._applyGrid(matrixChanges, productTemplateId); + } + }}, + {text: _t('Close'), close: true}, + ], + }).open(); + + MatrixDialog.opened(function () { + if (editedCellAttributes.length > 0) { + var str = editedCellAttributes.toString(); + MatrixDialog.$content.find('.o_matrix_input').filter((k, v) => v.attributes.ptav_ids.nodeValue === str)[0].focus(); + } else { + MatrixDialog.$content.find('.o_matrix_input:first()').focus(); + } + }); + }, + +}); + +return SectionAndNoteFieldOne2Many; + +}); diff --git a/addons/product_matrix/static/src/scss/product_matrix.scss b/addons/product_matrix/static/src/scss/product_matrix.scss new file mode 100644 index 00000000..ead8137d --- /dev/null +++ b/addons/product_matrix/static/src/scss/product_matrix.scss @@ -0,0 +1,61 @@ +.o_web_client .o_matrix_input_table { + cursor: default; + + table { + margin-bottom: 0; + table-layout: fixed; + min-width: 100%; + width: auto; + max-width: none; + } + th, td { + border: 0 !important; + vertical-align: middle; + width: 5em; + } + .o_matrix_title_header { + width: 10em; + } + thead { + color: $o-main-text-color; + background-color: $o-brand-lightsecondary; + th { + text-align: center; + white-space: pre-line; + } + } + tbody { + background-color: $o-view-background-color; + text-align: right; + tr { + border-top: 1px solid $o-form-lightsecondary; + border-bottom: 1px solid $o-form-lightsecondary; + } + .o_matrix_input { + text-align: right; + border: none; + } + } + .o_matrix_text_muted{ + color: lighten($o-main-text-color, 15%); + font-style: italic; + } + + // ensure white background completely surrounds nocontent bubble + .o_matrix_nocontent_container { + overflow: auto; + + .oe_view_nocontent_img_link { + padding:10px; + } + } +} + +.o_product_variant_matrix { + .form-control { + &:focus { + box-shadow: none; + border: 1px solid $gray-400; + } + } +} diff --git a/addons/product_matrix/static/src/xml/product_matrix.xml b/addons/product_matrix/static/src/xml/product_matrix.xml new file mode 100644 index 00000000..09fc7ba0 --- /dev/null +++ b/addons/product_matrix/static/src/xml/product_matrix.xml @@ -0,0 +1,53 @@ +<template> + <div t-name="product_matrix.matrix"> + <table class="o_matrix_input_table o_product_variant_matrix table table-sm table-striped table-bordered"> + <thead> + <tr> + <t t-foreach="header" t-as="column_header"> + <th t-attf-class="o_matrix_title_header {{column_header_first?'text-left':'text-center'}}"> + <span t-esc="column_header.name"/> + <t t-call="product_matrix.extra_price"> + <t t-set="price" t-value="column_header.price"/> + </t> + </th> + </t> + </tr> + </thead> + <tbody> + <tr t-foreach="rows" t-as="row"> + <t t-foreach="row" t-as="cell"> + <td t-if="cell.name" class="text-left"> + <strong t-esc="cell.name"/> + <t t-call="product_matrix.extra_price"> + <t t-set="price" t-value="cell.price"/> + </t> + </td> + <td t-else=""> + <div t-if="cell.is_possible_combination" class="input-group"> + <input type="number" + class="o_matrix_input" + t-att-ptav_ids="cell.ptav_ids" + t-att-value="cell.qty"/> + </div> + <span t-else="" class="o_matrix_cell o_matrix_text_muted o_matrix_nocontent_container"> Not available </span> + </td> + </t> + </tr> + </tbody> + </table> + </div> + <span t-name="product_matrix.extra_price" t-if="price" class="badge badge-pill badge-secondary"> + <!-- + price_extra is displayed as catalog price instead of + price after pricelist because it is impossible to + compute. Indeed, the pricelist rule might depend on the + selected variant, so the price_extra will be different + depending on the selected combination. The price of an + attribute is therefore variable and it's not very + accurate to display it. + --> + <span class="variant_price_extra" style="white-space: nowrap;"> + <t t-raw="price"/> + </span> + </span> +</template> diff --git a/addons/product_matrix/tests/__init__.py b/addons/product_matrix/tests/__init__.py new file mode 100644 index 00000000..511e649c --- /dev/null +++ b/addons/product_matrix/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import common diff --git a/addons/product_matrix/tests/common.py b/addons/product_matrix/tests/common.py new file mode 100644 index 00000000..51e0a366 --- /dev/null +++ b/addons/product_matrix/tests/common.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo.tests import tagged, common + + +@tagged('post_install', '-at_install') +class TestMatrixCommon(common.HttpCase): + + def setUp(self): + super(TestMatrixCommon, self).setUp() + + # Prepare relevant test data + # This is not included in demo data to avoid useless noise + product_attributes = self.env['product.attribute'].create([{ + 'name': 'PA1', + 'create_variant': 'always', + 'sequence': 1 + }, { + 'name': 'PA2', + 'create_variant': 'always', + 'sequence': 2 + }, { + 'name': 'PA3', + 'create_variant': 'dynamic', + 'sequence': 3 + }, { + 'name': 'PA4', + 'create_variant': 'no_variant', + 'sequence': 4 + }]) + + self.env['product.attribute.value'].create([{ + 'name': 'PAV' + str(product_attribute.sequence) + str(i), + 'attribute_id': product_attribute.id + } for i in range(1, 3) for product_attribute in product_attributes]) + + self.matrix_template = self.env['product.template'].create({ + 'name': "Matrix", + 'type': "consu", + 'uom_id': self.ref("uom.product_uom_unit"), + 'uom_po_id': self.ref("uom.product_uom_unit"), + 'attribute_line_ids': [(0, 0, { + 'attribute_id': attribute.id, + 'value_ids': [(6, 0, attribute.value_ids.ids)] + }) for attribute in product_attributes], + }) diff --git a/addons/product_matrix/views/assets.xml b/addons/product_matrix/views/assets.xml new file mode 100644 index 00000000..7f0793f8 --- /dev/null +++ b/addons/product_matrix/views/assets.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <template id="assets_backend_inherit_sale" inherit_id="web.assets_backend" name="Sale Grid assets"> + <xpath expr="script[last()]" position="after"> + <script type="text/javascript" src="/product_matrix/static/src/js/section_and_note_widget.js"/> + <link rel="stylesheet" type="text/scss" href="/product_matrix/static/src/scss/product_matrix.scss"/> + </xpath> + </template> +</odoo> diff --git a/addons/product_matrix/views/matrix_templates.xml b/addons/product_matrix/views/matrix_templates.xml new file mode 100644 index 00000000..e4fda487 --- /dev/null +++ b/addons/product_matrix/views/matrix_templates.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <template id="matrix"> + <t t-foreach="order.get_report_matrixes()" t-as="grid"> + <table class="o_view_grid o_product_variant_grid table table-sm table-striped table-bordered"> + <thead> + <tr> + <th t-foreach="grid['header']" t-as="column_header" class="o_grid_title_header text-center"> + <span t-esc="column_header['name']"/> + <t t-call="product_matrix.extra_price"> + <t t-set="price" t-value="column_header.get('price', False)"/> + </t> + </th> + </tr> + </thead> + <tbody> + <tr t-foreach="grid['matrix']" t-as="row"> + <t t-foreach="row" t-as="cell"> + <td t-if="cell.get('name', False)" class="text-left"> + <strong t-esc="cell['name']"/> + <t t-call="product_matrix.extra_price"> + <t t-set="price" t-value="cell.get('price', False)"/> + </t> + </td> + <td t-else="" class="text-right"> + <span t-esc="cell.get('qty', 0)" class="o_grid_cell_container"/> + </td> + </t> + </tr> + </tbody> + </table> + </t> + </template> + + <template id="extra_price"> + <span t-if="price" class="badge badge-pill badge-secondary"> + <!-- + price_extra is displayed as catalog price instead of + price after pricelist because it is impossible to + compute. Indeed, the pricelist rule might depend on the + selected variant, so the price_extra will be different + depending on the selected combination. The price of an + attribute is therefore variable and it's not very + accurate to display it. + --> + <span class="variant_price_extra" style="white-space: nowrap;"> + <t t-raw="price"/> + </span> + </span> + </template> +</odoo> |
