mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-18 04:12:06 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
48
odoo-bringout-oca-ocb-product_matrix/README.md
Normal file
48
odoo-bringout-oca-ocb-product_matrix/README.md
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
# Product Matrix
|
||||
|
||||
|
||||
Please refer to Sale Matrix or Purchase Matrix for the use of this module.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-product_matrix
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- account
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Product Matrix
|
||||
- **Version**: 1.0
|
||||
- **Category**: Sales/Sales
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `product_matrix`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
32
odoo-bringout-oca-ocb-product_matrix/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-product_matrix/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Product_matrix Module - product_matrix
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for product_matrix. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-product_matrix/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-product_matrix/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
5
odoo-bringout-oca-ocb-product_matrix/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-product_matrix/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [account](../../odoo-bringout-oca-ocb-account)
|
||||
4
odoo-bringout-oca-ocb-product_matrix/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-product_matrix/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon product_matrix or install in UI.
|
||||
7
odoo-bringout-oca-ocb-product_matrix/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-product_matrix/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-product_matrix"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-product_matrix"
|
||||
```
|
||||
13
odoo-bringout-oca-ocb-product_matrix/doc/MODELS.md
Normal file
13
odoo-bringout-oca-ocb-product_matrix/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in product_matrix.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class product_template
|
||||
class product_template_attribute_value
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-product_matrix/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-product_matrix/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: product_matrix. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon product_matrix
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-product_matrix/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-product_matrix/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
8
odoo-bringout-oca-ocb-product_matrix/doc/SECURITY.md
Normal file
8
odoo-bringout-oca-ocb-product_matrix/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-product_matrix/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-product_matrix/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon product_matrix
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-product_matrix/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-product_matrix/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
# -*- 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.
|
||||
'data': [
|
||||
'views/matrix_templates.xml',
|
||||
],
|
||||
'demo': [
|
||||
'data/product_matrix_demo.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'product_matrix/static/src/scss/product_matrix.scss',
|
||||
'product_matrix/static/src/xml/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -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="detailed_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>
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2022\n"
|
||||
"Language-Team: Arabic (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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 "قميص شركتي (GRID) "
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "أصفر"
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2024
|
||||
# erpgo translator <jumshud@erpgo.az>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0
|
||||
#, python-format
|
||||
msgid "Not available"
|
||||
msgstr "Mövcud deyil"
|
||||
|
||||
#. 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"
|
||||
msgstr "Məhsul"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Məhsul Şablon Atribut Dəyəri"
|
||||
|
||||
#. 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 "Ölçü"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3
|
||||
msgid "Yellow"
|
||||
msgstr "Sarı"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/bg.po
Normal file
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/bg.po
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Veselina Slavkova, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Veselina Slavkova, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3
|
||||
msgid "Yellow"
|
||||
msgstr "Жълт"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:32+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 "Plava"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Spol"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. 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 "Proširite ljubav svoje tvrtke oko sebe :)"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Veličina"
|
||||
|
||||
#. 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"
|
||||
103
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/ca.po
Normal file
103
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/ca.po
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# Jonatan Gk, 2022
|
||||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# marcescu, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: marcescu, 2022\n"
|
||||
"Language-Team: Catalan (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Sexe"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Home"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "Samarreta de la meva empresa (GRID)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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 "Rosa"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Producte"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Valor d' atribut de plantilla de producte"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Arc de Sant Martí"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Mostra l'amor de la teva empresa al teu voltant =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Mida"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Dones"
|
||||
|
||||
#. 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 "Groc"
|
||||
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/cs.po
Normal file
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/cs.po
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
# Marta Wacławek, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Marta Wacławek, 2025\n"
|
||||
"Language-Team: Czech (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Pohlaví"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. 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 "Duha"
|
||||
|
||||
#. 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.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 "Žlutý"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Danish (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Køn"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. 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.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"
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Friederike Fasterling-Nesselbosch, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Geschlecht"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Herren"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "My Company T-Shirt (RASTER)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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 "Pink"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Attributwert der Produktvorlage"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Regenbogen"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Zeigen Sie Ihrer Umgebung, wie sehr Sie Ihr Unternehmen lieben =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Größe"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Damen"
|
||||
|
||||
#. 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 "Gelb"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1
|
||||
msgid "Blue"
|
||||
msgstr "Azul"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Género"
|
||||
|
||||
#. 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 MiCompañía (TABLA)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Valor del atributo de la plantilla de producto"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Arcoíris"
|
||||
|
||||
#. 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.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"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1
|
||||
msgid "Blue"
|
||||
msgstr "Azul"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Género"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "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íris"
|
||||
|
||||
#. 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 empresa =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#. 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"
|
||||
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/et.po
Normal file
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/et.po
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Sugu"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Mehed"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "Minu ettevõtte särk (Võrgustik)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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 "Roosa"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Toode"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Tootemalli atribuudi väärtus"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Vikerkaar"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Näita firma armastust enda ümber =). "
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Suurus"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Naised"
|
||||
|
||||
#. 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 "Kollane"
|
||||
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/fa.po
Normal file
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/fa.po
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "زرد"
|
||||
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/fi.po
Normal file
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/fi.po
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Simo Suurla <simo@suurla.fi>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tommi Rintala <tommi.rintala@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Sukupuoli"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Miehet"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "Yritykseni T-paita (RUUDUKKO)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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 "Vaaleanpunainen"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Tuote"
|
||||
|
||||
#. 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 "Sateenkaari"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Näytä yrityksesi rakkautta ympärilläsi =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Koko"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Naiset"
|
||||
|
||||
#. 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 "Keltainen"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1
|
||||
msgid "Blue"
|
||||
msgstr "Bleu"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Genre"
|
||||
|
||||
#. 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 société (GRID)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Valeur attribut 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.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"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Product"
|
||||
|
||||
#. 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.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 ""
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Nis bar <nisim60@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\n"
|
||||
"Language-Team: Hebrew (https://app.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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "צהוב"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Hindi (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/hr.po
Normal file
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/hr.po
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Milan Tribuson <one.mile.code@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2023\n"
|
||||
"Language-Team: Croatian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Spol"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. 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 "Proširite ljubav svoje tvrtke oko sebe :)"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Veličina"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# krnkris, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2022\n"
|
||||
"Language-Team: Hungarian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Neme"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Férfi"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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 "Rózsaszín"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Termék"
|
||||
|
||||
#. 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 "Szivárvány"
|
||||
|
||||
#. 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.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "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 "Sárga"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Jenis kelamin"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Pria"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "Tshirt Perusahaan Saya (GRID)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0
|
||||
#, python-format
|
||||
msgid "Not available"
|
||||
msgstr "Tidak tersedia"
|
||||
|
||||
#. 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"
|
||||
msgstr "Produk"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Nilai Atribut Templat Produk"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Pelangi"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Show your company love around you =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Ukuran"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Wanita"
|
||||
|
||||
#. 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 "Kuning"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1
|
||||
msgid "Blue"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Vara"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Eiginleikavirði vörusniðmáts"
|
||||
|
||||
#. 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ærð"
|
||||
|
||||
#. 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 ""
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Italian (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1
|
||||
msgid "Blue"
|
||||
msgstr "Blu"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Sesso"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "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.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"
|
||||
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/ja.po
Normal file
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/ja.po
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Andy Yiu, 2023
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "黄"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Samkhann Seang <seangsamkhann@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "ពណ៌លឿង"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Korean (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "노랑"
|
||||
|
|
@ -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 ""
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Lytis"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Produktas"
|
||||
|
||||
#. 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.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"
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\n"
|
||||
"Language-Team: Latvian (https://app.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 "Zils"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Dzimums"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0
|
||||
#, python-format
|
||||
msgid "Not available"
|
||||
msgstr "Nav pieejams"
|
||||
|
||||
#. 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"
|
||||
msgstr "Produkts"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Preces veidnes atribūta vērtība"
|
||||
|
||||
#. 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 "Izmērs"
|
||||
|
||||
#. 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 "Dzeltens"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "മഞ്ഞ"
|
||||
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/mn.po
Normal file
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/mn.po
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# 486aab72cd7cb5d98a82d40b0db4c5f2_4397374 <25b041e3e1ecd3f217ca34118196bd3e_836923>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# hish, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2025\n"
|
||||
"Language-Team: Mongolian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "Шар"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "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 "Saiz"
|
||||
|
||||
#. 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 ""
|
||||
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/nb.po
Normal file
100
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/nb.po
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Jorunn D. Newth, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Rune Restad, 2024\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Kjønn"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0
|
||||
#, python-format
|
||||
msgid "Not available"
|
||||
msgstr "Ikke tilgjengelig"
|
||||
|
||||
#. 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"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. 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.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"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2023\n"
|
||||
"Language-Team: Dutch (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Geslacht"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Productsjabloon kenmerk 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 je bedrijfsliefde om je heen =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Grootte"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/pl.po
Normal file
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/pl.po
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Natalia Gros <nag@odoo.com>, 2022
|
||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Dariusz Żbikowski <darek@krokus.com.pl>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Płeć"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Mężczyźni"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "Tshirt mojej firmy (GRID)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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 "Różowy"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Wartość atrybutu szablonu produktu"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Tęcza"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Pokaż swojej firmie miłość wokół siebie =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Rozmiar"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Kobiety"
|
||||
|
||||
#. 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 "Żółty"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:32+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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/pt.po
Normal file
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/pt.po
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Luiz Fernando <lfpsgs@outlook.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2022
|
||||
# Samuel Afonso, 2024
|
||||
# Daniel Reis, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Daniel Reis, 2025\n"
|
||||
"Language-Team: Portuguese (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1
|
||||
msgid "Blue"
|
||||
msgstr "Azul"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Género"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "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 Modelo de Produto"
|
||||
|
||||
#. 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.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 "Amarelo"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_1
|
||||
msgid "Blue"
|
||||
msgstr "Azul"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Gênero"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "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 o amor da sua empresa à sua volta =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Tamanho"
|
||||
|
||||
#. 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"
|
||||
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/ro.po
Normal file
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/ro.po
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Larisa_nexterp, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Larisa_nexterp, 2025\n"
|
||||
"Language-Team: Romanian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Sex"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Bărbaț"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "Tricou Compania Mea (GRID)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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 "Roz"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "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 "Curcubeu"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Arată dragostea pentru compania ta în jurul tău =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Dimensiune"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Femeie"
|
||||
|
||||
#. 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 "Galben"
|
||||
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/ru.po
Normal file
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/ru.po
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Sergey Vilizhanin, 2022
|
||||
# Collex100, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "Желтый"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Pohlavie"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. 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.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á"
|
||||
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/sl.po
Normal file
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/sl.po
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Spol"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Moški"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr ""
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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 "Roza"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. 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.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Ženske"
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_3
|
||||
msgid "Yellow"
|
||||
msgstr "Rumena"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\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 "Blue"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Pol"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Men"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Product Template Attribute Value"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Rainbow"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Show your company love around you =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Veličina"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Women"
|
||||
|
||||
#. 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 "Yellow"
|
||||
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/sv.po
Normal file
101
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/sv.po
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Lasse L, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2024
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Kön"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Män"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "T-tröja för mitt företag (GRID)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0
|
||||
#, python-format
|
||||
msgid "Not available"
|
||||
msgstr "Ej tillgänglig"
|
||||
|
||||
#. 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"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template_attribute_value
|
||||
msgid "Product Template Attribute Value"
|
||||
msgstr "Attributvärde för produktmall"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Regnbåge"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Visa ditt företag kärlek runt omkring dig =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Storlek"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "Kvinna"
|
||||
|
||||
#. 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"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 ""
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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 "บริษัทเสื้อยืดของฉัน (GRID)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "สีเหลือง"
|
||||
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/tr.po
Normal file
102
odoo-bringout-oca-ocb-product_matrix/product_matrix/i18n/tr.po
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2022
|
||||
# dhkabayel <dhkabayel@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: dhkabayel <dhkabayel@gmail.com>, 2022\n"
|
||||
"Language-Team: Turkish (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Cinsiyeti"
|
||||
|
||||
#. 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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. 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.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ı"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Ukrainian (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "Жовтий"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
msgstr "Giới tính"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_m
|
||||
msgid "Men"
|
||||
msgstr "Nam"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,name:product_matrix.matrix_product_template_shirt
|
||||
msgid "My Company Tshirt (GRID)"
|
||||
msgstr "Áo phông công ty (GRID)"
|
||||
|
||||
#. module: product_matrix
|
||||
#. odoo-javascript
|
||||
#: code:addons/product_matrix/static/src/xml/product_matrix.xml:0
|
||||
#, python-format
|
||||
msgid "Not available"
|
||||
msgstr "Không khả dụng"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_2
|
||||
msgid "Pink"
|
||||
msgstr "Hồng"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:ir.model,name:product_matrix.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "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 mẫu sản phẩm"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_color_4
|
||||
msgid "Rainbow"
|
||||
msgstr "Cầu vồng"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.template,description_sale:product_matrix.matrix_product_template_shirt
|
||||
msgid "Show your company love around you =)."
|
||||
msgstr "Lan toả tình yêu công ty =)."
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_size
|
||||
msgid "Size"
|
||||
msgstr "Kích thước"
|
||||
|
||||
#. module: product_matrix
|
||||
#: model:product.attribute.value,name:product_matrix.product_attribute_value_w
|
||||
msgid "Women"
|
||||
msgstr "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 "Vàng"
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "黄色"
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * product_matrix
|
||||
#
|
||||
# Translators:
|
||||
# 敬雲 林 <chingyun@yuanchih-consult.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.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
|
||||
#: model:product.attribute,name:product_matrix.product_attribute_gender
|
||||
msgid "Gender"
|
||||
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
|
||||
#. odoo-javascript
|
||||
#: 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"
|
||||
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.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 "黃色"
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import product_template
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import itertools
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
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:
|
||||
header_cell['currency_id'] = to_currency.id
|
||||
header_cell['price'] = fro_currency._convert(
|
||||
extra_price, to_currency, company, fields.Date.today())
|
||||
return header_cell
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 109 KiB |
|
|
@ -0,0 +1,59 @@
|
|||
.o_web_client .o_matrix_input_table {
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
<template>
|
||||
<div t-name="product_matrix.matrix">
|
||||
<table class="o_matrix_input_table o_product_variant_matrix table table-sm table-striped table-bordered cursor-default">
|
||||
<thead>
|
||||
<tr>
|
||||
<t t-foreach="header" t-as="column_header">
|
||||
<th t-attf-class="o_matrix_title_header {{column_header_first?'text-start':'text-center'}}">
|
||||
<span t-esc="column_header.name"/>
|
||||
<t t-call="product_matrix.extra_price">
|
||||
<t t-set="cell" t-value="column_header"/>
|
||||
</t>
|
||||
</th>
|
||||
</t>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr t-foreach="rows" t-as="row">
|
||||
<t t-foreach="row" t-as="cell">
|
||||
<th t-if="cell.name" class="text-start">
|
||||
<strong t-esc="cell.name"/>
|
||||
<t t-call="product_matrix.extra_price"/>
|
||||
</th>
|
||||
<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="cell.price" class="badge rounded-pill text-bg-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-out="format(cell)"/>
|
||||
</span>
|
||||
</span>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import common
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo.tests import tagged, common
|
||||
|
||||
|
||||
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],
|
||||
})
|
||||
def get_ptav(pav_name):
|
||||
return self.env['product.template.attribute.value']\
|
||||
.search([('product_attribute_value_id.name', '=', pav_name)])
|
||||
get_ptav('PAV12').price_extra = 50
|
||||
get_ptav('PAV31').price_extra = -25
|
||||
|
|
@ -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-start">
|
||||
<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-end">
|
||||
<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 rounded-pill text-bg-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-out="price"/>
|
||||
</span>
|
||||
</span>
|
||||
</template>
|
||||
</odoo>
|
||||
44
odoo-bringout-oca-ocb-product_matrix/pyproject.toml
Normal file
44
odoo-bringout-oca-ocb-product_matrix/pyproject.toml
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-product_matrix"
|
||||
version = "16.0.0"
|
||||
description = "Product Matrix -
|
||||
Technical module: Matrix Implementation
|
||||
"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-account>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["product_matrix"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue