Initial commit: Sale packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 14e3d26998
6469 changed files with 2479670 additions and 0 deletions

View file

@ -0,0 +1,50 @@
# Online Event Booth Sale
Use the e-commerce to sell your event booths.
## Installation
```bash
pip install odoo-bringout-oca-ocb-website_event_booth_sale
```
## Dependencies
This addon depends on:
- event_booth_sale
- website_event_booth
- website_sale
## Manifest Information
- **Name**: Online Event Booth Sale
- **Version**: 1.0
- **Category**: Marketing/Events
- **License**: LGPL-3
- **Installable**: False
## Source
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `website_event_booth_sale`.
## 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

View 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 Website_event_booth_sale Module - website_event_booth_sale
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.

View file

@ -0,0 +1,3 @@
# Configuration
Refer to Odoo settings for website_event_booth_sale. Configure related models, access rights, and options as needed.

View file

@ -0,0 +1,17 @@
# Controllers
HTTP routes provided by this module.
```mermaid
sequenceDiagram
participant U as User/Client
participant C as Module Controllers
participant O as ORM/Views
U->>C: HTTP GET/POST (routes)
C->>O: ORM operations, render templates
O-->>U: HTML/JSON/PDF
```
Notes
- See files in controllers/ for route definitions.

View file

@ -0,0 +1,7 @@
# Dependencies
This addon depends on:
- [event_booth_sale](../../odoo-bringout-oca-ocb-event_booth_sale)
- [website_event_booth](../../odoo-bringout-oca-ocb-website_event_booth)
- [website_sale](../../odoo-bringout-oca-ocb-website_sale)

View 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 website_event_booth_sale or install in UI.

View file

@ -0,0 +1,7 @@
# Install
```bash
pip install odoo-bringout-oca-ocb-website_event_booth_sale"
# or
uv pip install odoo-bringout-oca-ocb-website_event_booth_sale"
```

View file

@ -0,0 +1,15 @@
# Models
Detected core models and extensions in website_event_booth_sale.
```mermaid
classDiagram
class product_product
class product_template
class sale_order
class website
```
Notes
- Classes show model technical names; fields omitted for brevity.
- Items listed under _inherit are extensions of existing models.

View file

@ -0,0 +1,6 @@
# Overview
Packaged Odoo addon: website_event_booth_sale. Provides features documented in upstream Odoo 16 under this addon.
- Source: OCA/OCB 16.0, addon website_event_booth_sale
- License: LGPL-3

View file

@ -0,0 +1,3 @@
# Reports
This module does not define custom reports.

View 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

View file

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

View 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 website_event_booth_sale
```

View file

@ -0,0 +1,3 @@
# Wizards
This module does not include UI wizards.

View file

@ -0,0 +1,44 @@
[project]
name = "odoo-bringout-oca-ocb-website_event_booth_sale"
version = "16.0.0"
description = "Online Event Booth Sale - Events, sell your booths online"
authors = [
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
]
dependencies = [
"odoo-bringout-oca-ocb-event_booth_sale>=16.0.0",
"odoo-bringout-oca-ocb-website_event_booth>=16.0.0",
"odoo-bringout-oca-ocb-website_sale>=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 = ["website_event_booth_sale"]
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.4.1",
]

View file

@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import controllers
from . import models

View file

@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
{
'name': 'Online Event Booth Sale',
'category': 'Marketing/Events',
'version': '1.0',
'summary': 'Events, sell your booths online',
'description': """
Use the e-commerce to sell your event booths.
""",
'depends': ['event_booth_sale', 'website_event_booth', 'website_sale'],
'data': [
'views/event_booth_templates.xml',
],
'auto_install': True,
'assets': {
'web.assets_frontend': [
'/website_event_booth_sale/static/src/js/booth_register.js',
],
'web.assets_tests': [
'/website_event_booth_sale/static/tests/tours/**/**.js'
],
},
'license': 'LGPL-3',
}

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import event_booth

View file

@ -0,0 +1,48 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import json
from odoo.http import request, route
from odoo.addons.website_event.controllers.main import WebsiteEventController
class WebsiteEventBoothController(WebsiteEventController):
@route()
def event_booth_main(self, event):
pricelist = request.website.pricelist_id
if pricelist:
event = event.with_context(pricelist=pricelist.id)
return super(WebsiteEventBoothController, self).event_booth_main(event)
@route()
def event_booth_registration_confirm(self, event, booth_category_id, event_booth_ids, **kwargs):
"""Override: Doesn't call the parent method because we go through the checkout
process which will confirm the booths when receiving the payment."""
booths = self._get_requested_booths(event, event_booth_ids)
booth_category = request.env['event.booth.category'].sudo().browse(int(booth_category_id))
error_code = self._check_booth_registration_values(
booths,
kwargs['contact_email'],
booth_category=booth_category)
if error_code:
return json.dumps({'error': error_code})
booth_values = self._prepare_booth_registration_values(event, kwargs)
order_sudo = request.website.sale_get_order(force_create=True)
order_sudo._cart_update(
product_id=booth_category.product_id.id,
set_qty=1,
event_booth_pending_ids=booths.ids,
registration_values=booth_values,
)
if order_sudo.amount_total:
if request.env.user._is_public():
order_sudo.partner_id = booth_values['partner_id']
return json.dumps({'redirect': '/shop/cart'})
elif order_sudo:
order_sudo.action_confirm()
request.website.sale_reset()
return self._prepare_booth_registration_success_values(event.name, booth_values)

View file

@ -0,0 +1,57 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# 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:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Webtuiste"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,53 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Malaz Abuidris <msea@odoo.com>, 2023
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">الإجمالي</span> "
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "مجاني"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "المنتج"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "متغير المنتج "
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "أمر البيع"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "الموقع الإلكتروني"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "لا يمكنك تغيير كمية منتج في كشك الفعالية يدوياً. "

View file

@ -0,0 +1,58 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# erpgo translator <jumshud@erpgo.az>, 2022
# Jumshud Sultanov <cumshud@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:56+0000\n"
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Azad"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Məhsul"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Məhsul Çeşidi"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Satış Sifarişi"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Veb sayt"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,57 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Ivan Shakh, 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:56+0000\n"
"Last-Translator: Ivan Shakh, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Вэб-сайт"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Igor Sheludko <igor.sheludko@gmail.com>, 2023
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
# Martin Trigaux, 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:56+0000\n"
"Last-Translator: Martin Trigaux, 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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Безплатен"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Продукт"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Продуктов вариант"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Поръчка"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Уебсайт"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,53 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Ukupno</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Slobodan"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Proizvod"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Varijanta proizvoda"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Prodajni nalog"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Web stranica"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "You cannot manually change the quantity of an događaj štand product."

View file

@ -0,0 +1,63 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
# Martin Trigaux, 2022
# marcescu, 2022
# Ivan Espinola, 2023
# Quim - eccit <quim@eccit.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:56+0000\n"
"Last-Translator: Quim - eccit <quim@eccit.com>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Total</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Lliure"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Producte"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Variants de producte"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Comanda de venda"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Lloc web"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"No podeu canviar manualment la quantitat d'un producte de la cabina "
"d'esdeveniment."

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
# Jakub Smolka, 2023
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Zdarma"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Varianta výrobku"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Prodejní objednávka"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Webstránka"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,58 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2024
# Kira Petersen, 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:56+0000\n"
"Last-Translator: Kira Petersen, 2025\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Ledig"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Varevariant"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Salgsordre"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Hjemmeside"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "Det er ikke muligt at ændre produktmængden til en eventstand manuelt."

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2023
# Larissa Manderfeld, 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:56+0000\n"
"Last-Translator: Larissa Manderfeld, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Gesamt</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Verfügbar"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Produktvariante"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Verkaufsauftrag"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Website"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"Sie können die Menge eines Veranstaltungsstandsprodukts nicht manuell "
"ändern."

View file

@ -0,0 +1,61 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Total</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratuito"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Producto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Variante de producto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Pedido de venta"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Sitio web"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"No puede modificar manualmente la cantidad de un producto del estands para "
"eventos."

View file

@ -0,0 +1,62 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Lucia Pacheco, 2022
# Wil Odoo, 2024
# Fernanda Alvarez, 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:56+0000\n"
"Last-Translator: Fernanda Alvarez, 2025\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Total</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratis"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Producto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Variante del producto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Orden de venta"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Sitio web"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"No puede cambiar la cantidad de un producto de estand de evento de forma "
"manual."

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Eneli Õigus <enelioigus@gmail.com>, 2022
# Anna, 2023
# Triine Aavik <triine@avalah.ee>, 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:56+0000\n"
"Last-Translator: Triine Aavik <triine@avalah.ee>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Kokku</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Vaba"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Toode"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Toote variatsioon"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Müügitellimus"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Veebileht"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "Ürituste stendi toote koguseid ei saa käsitsi muuta."

View file

@ -0,0 +1,58 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Hanna Kheradroosta, 2023
# Martin Trigaux, 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:56+0000\n"
"Last-Translator: Martin Trigaux, 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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "رایگان"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "محصول"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "گونه محصول"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "سفارش فروش"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "تارنما"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,61 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 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:56+0000\n"
"Last-Translator: Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Yhteensä</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Ilmainen"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Tuote"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Tuotevariaatio"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Myyntitilaus"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Verkkosivu"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "Et voi muuttaa tapahtuman näyttelyalueen tuotteen määrää käsin."

View file

@ -0,0 +1,61 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Jolien De Paepe, 2023
# Wil Odoo, 2024
# Manon Rondou, 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:56+0000\n"
"Last-Translator: Manon Rondou, 2025\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Total</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratuit"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produit"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Variante de produit"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Commande client"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Site web"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"Vous ne pouvez pas modifier manuellement la quantité d'un produit Stand "
"d'événement."

View file

@ -0,0 +1,57 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Qaidjohar Barbhaya, 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:56+0000\n"
"Last-Translator: Qaidjohar Barbhaya, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Product"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Product Variant"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,58 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# ZVI BLONDER <ZVIBLONDER@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:56+0000\n"
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "פנוי"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "מוצר"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "וריאנט מוצר"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "הזמנת לקוח"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "אתר אינטרנט"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Wil Odoo, 2024
# Jaisal Shah <jaisal13shah@gmail.com>, 2025
# Ujjawal Pathak, 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:56+0000\n"
"Last-Translator: Ujjawal Pathak, 2025\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "स्वतंत्र"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "उत्पाद"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "उत्पाद प्रकार"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "सेल्स ऑर्डर"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "वेबसाइट"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
# Bole <bole@dajmi5.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:56+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Slobodan"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Proizvod"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Varijanta proizvoda"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Prodajni nalog"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Web stranica"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
# Tamás Németh <ntomasz81@gmail.com>, 2022
# krnkris, 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:56+0000\n"
"Last-Translator: krnkris, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Szabad"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Termék"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Termékváltozat"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Vevői rendelések"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Honlap"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,53 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Abe Manyo, 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Total</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratis"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produk"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Varian Produk"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Sales Order"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Website"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "Anda tidak dapat merubah secara manual kuantitas produk Booth Acara."

View file

@ -0,0 +1,57 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# 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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Frítt"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Vara"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Vöruafbrigði"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Sölupöntun"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Vefsíða"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Marianna Ciofani, 2023
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Totale</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratuito"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Prodotto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Variante prodotto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Ordine di vendita"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Sito web"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"Non è possibile modificare la quantità di un prodotto di Stand Eventi."

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Ryoko Tsuda <ryoko@quartile.co>, 2023
# Junko Augias, 2023
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">合計</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "無料"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "プロダクト"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "プロダクトバリアント"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "販売オーダ"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "ウェブサイト"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "イベントブースプロダクトの数量を手動で変更することはできません。"

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Lux Sok <sok.lux@gmail.com>, 2023
# Chan Nath <channath@gmail.com>, 2023
# Samkhann Seang <seangsamkhann@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:56+0000\n"
"Last-Translator: Samkhann Seang <seangsamkhann@gmail.com>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "ទំនេរ"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "ផលិតផល"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "ការផ្លាស់ប្តូរផលិតផល"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "លក់តាមការបញ្ជាទិញ"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "វែបសាយ"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Sarah Park, 2023
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">총계</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "무료"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "품목"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "품목 세부선택"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "판매 주문"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "웹사이트"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "행사 부스 품목의 수량은 수기로 변경할 수 없습니다."

View file

@ -0,0 +1,57 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 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:56+0000\n"
"Last-Translator: Martin Trigaux, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "ສິນຄ້າ"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "ໃບສັ່ງຊື້"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,58 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
# Martin Trigaux, 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:56+0000\n"
"Last-Translator: Martin Trigaux, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Laisvas"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produktas"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Produkto variantas"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Pardavimo užsakymas"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Svetainė"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Will Sensors, 2023
# Arnis Putniņš <arnis@allegro.lv>, 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:56+0000\n"
"Last-Translator: Arnis Putniņš <arnis@allegro.lv>, 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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Kopā</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Brīvs"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produkts"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Produkta Veids"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Pasūtījums"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Tīkla vietne"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,57 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Niyas Raphy, 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:56+0000\n"
"Last-Translator: Niyas Raphy, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "സൗജന്യം "
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "പ്രോഡക്റ്റ്"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "പ്രോഡക്റ്റ് വേരിയന്റ്"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "സെയിൽസ് ഓർഡർ"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "വെബ്‌സൈറ്റ് "
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,58 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
# Martin Trigaux, 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:56+0000\n"
"Last-Translator: Martin Trigaux, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "үнэгүй"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Бараа"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Барааны хувилбар"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Борлуулалтын захиалга"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Вэбсайт"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,57 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Mehjabin Farsana, 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:56+0000\n"
"Last-Translator: Mehjabin Farsana, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Percuma"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produk"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Varian Produk"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Pesanan Jualan"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "laman web"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,58 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Marius Stedjan <marius@stedjan.com>, 2022
# Martin Trigaux, 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:56+0000\n"
"Last-Translator: Martin Trigaux, 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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Ledig"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Produktvariant"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Salgsordre"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Nettsted"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,61 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Jolien De Paepe, 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Totaal</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratis"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Product"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Productvariant"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Verkooporder"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Website"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"Je kunt de hoeveelheid van een evenementstand-product niet handmatig "
"wijzigen."

View file

@ -0,0 +1,53 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
# Wil Odoo, 2024
# Marta Wacławek, 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:56+0000\n"
"Last-Translator: Marta Wacławek, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Suma</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratis"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Wariant produktu"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Zamówienie sprzedaży"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Strona internetowa"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "Nie możesz manualnie zmienić ilości produktów Event Booth"

View file

@ -0,0 +1,61 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Nuno Silva <nuno.silva@arxi.pt>, 2022
# Marcelo Pereira <marcelo.pereira@arxi.pt>, 2022
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
# Rita Bastos, 2024
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 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:56+0000\n"
"Last-Translator: Peter Lawrence Romão <peterromao@yahoo.co.uk>, 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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Total</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Livre"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Artigo"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Variante de Artigo"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Ordem de Venda"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Website"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,63 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Luis Bispo, 2023
# Kevilyn Rosa, 2023
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Total</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratuito"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Variação do Produto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Pedido de venda"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Site"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"Não é possível alterar manualmente a quantidade de um produto de estande de "
"eventos."

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2024
# Corina Calin, 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:56+0000\n"
"Last-Translator: Corina Calin, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Disponibil"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produs"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Variantă produs"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Comandă de vânzare"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Pagină web"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"Nu puteți modifica manual cantitatea unui produs pentru standul de "
"evenimente."

View file

@ -0,0 +1,61 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Oleg Kuryan <oleg@ventor.tech>, 2022
# Константин Коровин <korovin74@gmail.com>, 2022
# ILMIR <karamov@it-projects.info>, 2022
# Martin Trigaux, 2024
# 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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Бесплатно"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Продукт"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Вариант продукта"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Заказ на продажу"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Вебсайт"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "Вы не можете вручную изменить количество продукта Event Booth."

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Matus Krnac <matus.krnac@gmail.com>, 2022
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Voľný"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Varianta produktu"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Objednávka "
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Webstránka"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
# Martin Trigaux, 2022
# Tomaž Jug <tomaz@editor.si>, 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:56+0000\n"
"Last-Translator: Tomaž Jug <tomaz@editor.si>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Prosto"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Izdelek"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Različica proizvoda"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Prodajni nalog"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Spletna stran"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,53 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
# Milan Bojovic <mbojovic@outlook.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:56+0000\n"
"Last-Translator: Milan Bojovic <mbojovic@outlook.com>, 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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Ukupno</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Slobodan"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Proizvod"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Varijante proizvoda"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Porudžbenica"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Website"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "Ne možete ručno menjati količinu za proizvod Štand događaja."

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Simon S, 2022
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
# Martin Trigaux, 2022
# Anders Wallenquist <anders.wallenquist@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:56+0000\n"
"Last-Translator: Anders Wallenquist <anders.wallenquist@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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Gratis"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Produkt"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Produktvariant"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Order"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Webbplats"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,53 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,53 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
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:56+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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Wichanon Jamwutthipreecha, 2022
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "ฟรี"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "สินค้า"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "ตัวแปรสินค้า"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "คำสั่งขาย"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "เว็บไซต์"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "คุณไม่สามารถเปลี่ยนแปลงปริมาณของสินค้าบูธกิจกรรมได้ด้วยตนเอง"

View file

@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Halil, 2023
# Murat Kaplan <muratk@projetgrup.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:56+0000\n"
"Last-Translator: Murat Kaplan <muratk@projetgrup.com>, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Toplam</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Ücretsiz"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Ürün"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Ürün Varyantı"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Satış Siparişi"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Websitesi"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"Bir Etkinlik Standı ürününün miktarını manuel olarak değiştiremezsiniz."

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Всього</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Безкоштовно"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Товар"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Варіант товару"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Замовлення на продаж"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Веб-сайт"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "Ви не можете вручну змінити кількість товару Стенд події."

View file

@ -0,0 +1,61 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Wil Odoo, 2024
# Thi Huong Nguyen, 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:56+0000\n"
"Last-Translator: Thi Huong Nguyen, 2025\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">Tổng</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "Miễn phí"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "Sản phẩm"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "Biến thể sản phẩm"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "Đơn bán hàng"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "Trang web"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""
"Bạn không thể thay đổi theo cách thủ công số lượng của sản phẩm Gian hàng sự"
" kiện. "

View file

@ -0,0 +1,53 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr ""
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr ""
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr ""
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr ""

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Raymond Yu <cl_yu@hotmail.com>, 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">总计</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "免费"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "产品"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "产品变体"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "销售订单"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "网站"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "您不能手动更改 活动展位 产品的数量。"

View file

@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_event_booth_sale
#
# Translators:
# Martin Trigaux, 2022
# Tony Ng, 2023
# 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:56+0000\n"
"Last-Translator: Wil Odoo, 2024\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: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "<span class=\"fw-bold\">Total</span>"
msgstr "<span class=\"fw-bold\">總額</span>"
#. module: website_event_booth_sale
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
msgid "Free"
msgstr "免費"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_template
msgid "Product"
msgstr "商品"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_product_product
msgid "Product Variant"
msgstr "產品款式"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_sale_order
msgid "Sales Order"
msgstr "銷售訂單"
#. module: website_event_booth_sale
#: model:ir.model,name:website_event_booth_sale.model_website
msgid "Website"
msgstr "網站"
#. module: website_event_booth_sale
#. odoo-python
#: code:addons/website_event_booth_sale/models/sale_order.py:0
#, python-format
msgid "You cannot manually change the quantity of an Event Booth product."
msgstr "您無法手動更改 活動攤位 產品的數量。"

View file

@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import product_product
from . import product_template
from . import sale_order
from . import website

View file

@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class ProductProduct(models.Model):
_inherit = 'product.product'
def _is_add_to_cart_allowed(self):
# `event_booth_registration_confirm` calls `_cart_update` with specific products, allow those aswell.
return super()._is_add_to_cart_allowed() or\
self.env['event.booth.category'].sudo().search_count([('product_id', '=', self.id)])

View file

@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models
class ProductTemplate(models.Model):
_inherit = 'product.template'
@api.model
def _get_product_types_allow_zero_price(self):
return super()._get_product_types_allow_zero_price() + ["event_booth"]

View file

@ -0,0 +1,76 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import Command
from odoo import models, _
class SaleOrder(models.Model):
_inherit = 'sale.order'
def _cart_find_product_line(
self, product_id=None, line_id=None,
event_booth_pending_ids=None, **kwargs
):
"""Check if there is another sale order line which already contains the requested event_booth_pending_ids
to overwrite it with the newly requested booths to avoid having multiple so_line related to the same booths"""
lines = super()._cart_find_product_line(product_id, line_id, **kwargs)
if not event_booth_pending_ids or line_id:
return lines
return lines.filtered(
lambda line: any(booth.id in event_booth_pending_ids for booth in line.event_booth_pending_ids)
)
def _verify_updated_quantity(self, order_line, product_id, new_qty, **kwargs):
"""Forbid quantity updates on event booth lines."""
product = self.env['product.product'].browse(product_id)
if product.detailed_type == 'event_booth' and new_qty > 1:
return 1, _('You cannot manually change the quantity of an Event Booth product.')
return super()._verify_updated_quantity(order_line, product_id, new_qty, **kwargs)
def _prepare_order_line_values(
self, product_id, quantity, event_booth_pending_ids=False, registration_values=None,
**kwargs
):
"""Add corresponding event to the SOline creation values (if booths are provided)."""
values = super()._prepare_order_line_values(product_id, quantity, **kwargs)
if not event_booth_pending_ids:
return values
booths = self.env['event.booth'].browse(event_booth_pending_ids)
values['event_id'] = booths.event_id.id
values['event_booth_registration_ids'] = [
Command.create({
'event_booth_id': booth.id,
**registration_values,
}) for booth in booths
]
return values
# FIXME VFE investigate if it ever happens.
# Probably not
def _prepare_order_line_update_values(
self, order_line, quantity, event_booth_pending_ids=False, registration_values=None,
**kwargs
):
"""Delete existing booth registrations and create new ones with the update values."""
values = super()._prepare_order_line_update_values(order_line, quantity, **kwargs)
if not event_booth_pending_ids:
return values
booths = self.env['event.booth'].browse(event_booth_pending_ids)
values['event_booth_registration_ids'] = [
Command.delete(registration.id)
for registration in order_line.event_booth_registration_ids
] + [
Command.create({
'event_booth_id': booth.id,
**registration_values,
}) for booth in booths
]

View file

@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class Website(models.Model):
_inherit = 'website'
def sale_product_domain(self):
return ['&'] + super(Website, self).sale_product_domain() + [('detailed_type', '!=', 'event_booth')]

View file

@ -0,0 +1,43 @@
odoo.define('website_event_booth_sale.booth_registration', function (require) {
'use strict';
const BoothRegistration = require('website_event_booth.booth_registration');
/**
* This class changes the displayed price after selecting the requested booths.
*/
BoothRegistration.include({
//--------------------------------------------------------------------------
// Overrides
//--------------------------------------------------------------------------
_onChangeBoothType(ev) {
this.categoryPrice = parseFloat($(ev.currentTarget).data('price'));
return this._super.apply(this, arguments);
},
/**
* Updates the displayed total price after selecting the requested booths
* @param boothCount
* @private
*/
_updateUiAfterBoothChange(boothCount) {
this._super.apply(this, arguments);
let $elem = this.$('.o_wbooth_booth_total_price');
$elem.toggleClass('d-none', !boothCount || !this.categoryPrice);
this._updatePrice(boothCount);
},
//--------------------------------------------------------------------------
// Private
//--------------------------------------------------------------------------
_updatePrice(boothsCount) {
let $elem = this.$('.o_wbooth_booth_total_price .oe_currency_value');
$elem.text(boothsCount * this.categoryPrice);
},
});
});

View file

@ -0,0 +1,58 @@
odoo.define('website_event_booth_sale.tour.WebsiteEventBoothSaleTourMethods', function (require) {
'use strict';
const { changePricelist, checkPriceCart } = require('website_event_sale.tour.WebsiteEventSaleTourMethods');
function checkPriceBooth(eventName, price, priceSelected) {
return [
{
content: "Go to page Event",
trigger: '.nav-link:contains("Event")',
},
{
content: 'Open "Test Event Booths" event',
trigger: `h5.card-title span:contains(${eventName})`,
},
{
content: 'Go to "Get A Booth" page',
trigger: 'li.nav-item a:has(span:contains("Get A Booth"))',
},
{
content: 'Select the booth',
trigger: '.o_wbooth_booths input[name="event_booth_ids"]',
run: function () {
$('.o_wbooth_booths input[name="event_booth_ids"]:lt(1)').click();
},
},
{
content: "Verify Price displayed",
trigger: `.oe_currency_value:contains(${price})`,
run: function () {}, // it's a check
},
{
content: "Verify Price of selected booth",
trigger: `div.o_wbooth_booth_total_price span.oe_currency_value:contains(${priceSelected})`,
run: function () {}, // it's a check
},
]
}
function checkPriceDiscountBooth(eventName, price, priceSelected, discount) {
return [
...checkPriceBooth(eventName, price, priceSelected),
{
content: "Verify Price before discount",
trigger: `del:contains(${discount})`,
run: function () {}, // it's a check
},
]
}
const getPriceListChecksSteps = function ({pricelistName, eventName, price, priceSelected, priceCart, priceBeforeDiscount=false}) {
const checkPriceSteps = priceBeforeDiscount ? checkPriceDiscountBooth(eventName, price, priceSelected, priceBeforeDiscount) : checkPriceBooth(eventName, price, priceSelected);
return [
...changePricelist(pricelistName),
...checkPriceSteps,
...checkPriceCart(priceCart),
]
}
return { getPriceListChecksSteps }
});

View file

@ -0,0 +1,54 @@
/** @odoo-module **/
import tour from 'web_tour.tour';
tour.register('website_event_booth_tour', {
test: true,
url: '/event',
}, [
{
content: 'Open "Test Event Booths" event',
trigger: 'h5.card-title span:contains("Test Event Booths")',
}, {
content: 'Go to "Get A Booth" page',
trigger: 'li.nav-item a:has(span:contains("Get A Booth"))',
}, {
content: 'Select the first two booths',
trigger: '.o_wbooth_booths input[name="event_booth_ids"]',
run: function () {
$('.o_wbooth_booths input[name="event_booth_ids"]:lt(2)').click();
},
}, {
content: 'Confirm the booths by clicking the submit button',
trigger: 'button.o_wbooth_registration_submit',
}, {
content: 'Fill in your contact information',
trigger: 'input[name="contact_name"]',
run: function () {
$('input[name="contact_name"]').val('John Doe');
$('input[name="contact_email"]').val('jdoe@example.com');
},
}, {
content: 'Submit your informations',
trigger: 'button[type="submit"]',
}, {
content: 'Check if the price is correct',
trigger: 'tr#order_total_untaxed .oe_currency_value:containsExact(200.00)',
run: function () {},
}, {
content: 'Check if the tax is correct',
trigger: 'tr#order_total_taxes .oe_currency_value:containsExact(20.00)',
run: function () {},
}, {
content: 'Click Process Checkout to continue',
trigger: 'a[role="button"] span:contains("Process Checkout")',
}, {
content: 'Check if the price is correct',
trigger: 'tr#order_total_untaxed .oe_currency_value:containsExact(200.00)',
run: function () {},
}, {
content: 'Check if the total price is correct',
trigger: 'tr#order_total .oe_currency_value:containsExact(220.00)',
run: function () {},
},
]);

View file

@ -0,0 +1,75 @@
/** @odoo-module **/
import tour from 'web_tour.tour';
import { getPriceListChecksSteps } from 'website_event_booth_sale.tour.WebsiteEventBoothSaleTourMethods';
tour.register('event_booth_sale_pricelists_different_currencies', {
test: true,
url: '/event',
}, [
// Init: registering the booth
{
content: 'Open "Test Event Booths" event',
trigger: 'h5.card-title span:contains("Test Event Booths")',
},
{
content: 'Go to "Get A Booth" page',
trigger: 'li.nav-item a:has(span:contains("Get A Booth"))',
},
{
content: 'Select the booth',
trigger: '.o_wbooth_booths input[name="event_booth_ids"]',
run: function () {
$('.o_wbooth_booths input[name="event_booth_ids"]:lt(1)').click();
},
},
{
content: 'Confirm the booth by clicking the submit button',
trigger: 'button.o_wbooth_registration_submit',
},
{
content: 'Fill in your contact information',
trigger: 'input[name="contact_name"]',
run: function () {
$('input[name="contact_name"]').val('John Doe');
$('input[name="contact_email"]').val('jdoe@example.com');
},
},
{
content: 'Submit your informations',
trigger: 'button[type="submit"]',
}, {
content: 'Checkout your order',
trigger: 'a[role="button"] span:contains("Process Checkout")',
},
...getPriceListChecksSteps({
pricelistName: "EUR With Discount Included",
eventName: "Test Event Booths",
price: "90.00",
priceSelected: "90",
priceCart: "99.00",
}),
...getPriceListChecksSteps({
pricelistName: "EUR Without Discount Included",
eventName: "Test Event Booths",
price: "90.00",
priceSelected: "90",
priceCart: "99.00",
priceBeforeDiscount: "100.00",
}),
...getPriceListChecksSteps({
pricelistName: "EX With Discount Included",
eventName: "Test Event Booths",
price: "900.00",
priceSelected: "900",
priceCart: "990.00",
}),
...getPriceListChecksSteps({
pricelistName: "EX Without Discount Included",
eventName: "Test Event Booths",
price: "900.00",
priceSelected: "900",
priceCart: "990.00",
priceBeforeDiscount: "1,000.00",
}),
]);

View file

@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import test_event_booth_sale
from . import test_website_event_booth_sale_pricelist

View file

@ -0,0 +1,85 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from datetime import datetime, timedelta
from odoo import Command, fields
from odoo.addons.website_event_sale.tests.common import TestWebsiteEventSaleCommon
from odoo.addons.base.tests.common import HttpCaseWithUserPortal
from odoo.tests.common import tagged
@tagged('post_install', '-at_install')
class TestWebsiteEventBoothSale(HttpCaseWithUserPortal, TestWebsiteEventSaleCommon):
def setUp(self):
super().setUp()
self.env['ir.config_parameter'].sudo().set_param('account.show_line_subtotals_tax_selection', 'tax_included')
self.tax = self.env['account.tax'].sudo().create({
'name': 'Tax 10',
'amount': 10,
})
self.booth_product = self.env['product.product'].create({
'name': 'Test Booth Product',
'description_sale': 'Mighty Booth Description',
'list_price': 20,
'standard_price': 60.0,
'taxes_id': [(6, 0, [self.tax.id])],
'detailed_type': 'event_booth',
})
self.event_booth_category = self.env['event.booth.category'].create({
'name': 'Standard',
'description': '<p>Standard</p>',
'product_id': self.booth_product.id,
'price': 100.0,
})
self.event_type = self.env['event.type'].create({
'name': 'Booth Type',
'event_type_booth_ids': [
Command.create({
'name': 'Standard 1',
'booth_category_id': self.event_booth_category.id,
}),
Command.create({
'name': 'Standard 2',
'booth_category_id': self.event_booth_category.id,
}),
Command.create({
'name': 'Standard 3',
'booth_category_id': self.event_booth_category.id,
}),
],
})
self.env['event.event'].create({
'name': 'Test Event Booths',
'event_type_id': self.event_type.id,
'date_begin': fields.Datetime.to_string(datetime.today() + timedelta(days=1)),
'date_end': fields.Datetime.to_string(datetime.today() + timedelta(days=15)),
'website_published': True,
'website_menu': True,
'booth_menu': True,
})
def test_tour(self):
self.partner_portal.write({
'street': '858 Lynn Street',
'city': 'Bayonne',
'country_id': self.env.ref('base.state_us_25').id,
'zip': '07002',
'phone': '(683)-556-5104',
})
self.start_tour('/event', 'website_event_booth_tour', login='portal')
def test_booth_pricelists_different_currencies(self):
self.env.ref('base.user_admin').partner_id.write({
'email': 'mitchell.stephen@example.com',
'name': 'Mitchell Admin',
'street': '215 Vine St',
'city': 'Scranton',
'zip': '18503',
'country_id': self.env.ref('base.us').id,
'state_id': self.env.ref('base.state_us_39').id,
'phone': '+1 555-555-5555',
})
self.start_tour("/web", 'event_booth_sale_pricelists_different_currencies', login='admin')

View file

@ -0,0 +1,79 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.addons.event_booth_sale.tests.common import TestEventBoothSaleCommon
from odoo.addons.website_event_sale.tests.common import TestWebsiteEventSaleCommon
from odoo.addons.website_sale.controllers.main import WebsiteSale
from odoo.addons.website.tools import MockRequest
from odoo.tests import tagged
@tagged('post_install', '-at_install')
class TestWebsiteBoothPriceList(TestEventBoothSaleCommon, TestWebsiteEventSaleCommon):
@classmethod
def setUpClass(cls):
super(TestWebsiteBoothPriceList, cls).setUpClass()
cls.WebsiteSaleController = WebsiteSale()
cls.booth_1 = cls.env['event.booth'].create({
'booth_category_id': cls.event_booth_category_1.id,
'event_id': cls.event.id,
'name': 'Test Booth 1',
})
cls.booth_2 = cls.env['event.booth'].create({
'booth_category_id': cls.event_booth_category_1.id,
'event_id': cls.event.id,
'name': 'Test Booth 2',
})
def test_pricelist_different_currency(self):
so_line = self.env['sale.order.line'].create({
'event_booth_category_id': self.event_booth_category_1.id,
'event_booth_pending_ids': (self.booth_1 + self.booth_2).ids,
'event_id': self.event.id,
'order_id': self.so.id,
'product_id': self.event_booth_product.id,
})
# set pricelist to 0 - currency: company
self.pricelist.write({
'currency_id': self.env.company.currency_id.id,
'discount_policy': 'with_discount',
'item_ids': [(5, 0, 0), (0, 0, {
'applied_on': '3_global',
'compute_price': 'percentage',
'percent_price': 0,
})],
'name': 'With Discount Included',
})
with MockRequest(self.env, sale_order_id=self.so.id, website=self.current_website):
self.WebsiteSaleController.pricelist(promo=None)
self.so._cart_update(line_id=so_line.id, product_id=self.event_booth_product.id, set_qty=1)
self.assertEqual(so_line.price_reduce, 40)
# set pricelist to 10% - without discount
self.pricelist.write({
'currency_id': self.currency_test.id,
'discount_policy': 'without_discount',
'item_ids': [(5, 0, 0), (0, 0, {
'applied_on': '3_global',
'compute_price': 'percentage',
'percent_price': 10,
})],
'name': 'Without Discount Included',
})
with MockRequest(self.env, sale_order_id=self.so.id, website=self.current_website):
self.WebsiteSaleController.pricelist(promo=None)
self.so._cart_update(line_id=so_line.id, product_id=self.event_booth_product.id, set_qty=1)
self.assertEqual(so_line.price_reduce, 360, 'Incorrect amount based on the pricelist "Without Discount" and its currency.')
# set pricelist to 10% - with discount
self.pricelist.write({
'discount_policy': 'with_discount',
'name': 'With Discount Included',
})
with MockRequest(self.env, sale_order_id=self.so.id, website=self.current_website):
self.WebsiteSaleController.pricelist(promo=None)
self.so._cart_update(line_id=so_line.id, product_id=self.event_booth_product.id, set_qty=1)
self.assertEqual(so_line.price_reduce, 360, 'Incorrect amount based on the pricelist "With Discount" and its currency.')

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo><data>
<template id="event_booth_registration" inherit_id="website_event_booth.event_booth_registration">
<xpath expr="//h5[@name='booth_category_name']" position="after">
<t t-if="booth_category.price">
<t t-if="(booth_category.price - booth_category.price_reduce) &gt; 1 and website.get_current_pricelist().discount_policy == 'without_discount'">
<del class="text-danger me-1"
t-field="booth_category.price"
t-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.get_current_pricelist().currency_id}"/>
</t>
<span t-field="booth_category.price_reduce" class="fw-normal text-muted"
t-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.pricelist_id.currency_id}"
groups="account.group_show_line_subtotals_tax_excluded"/>
<span t-field="booth_category.price_reduce_taxinc" class="fw-normal text-muted"
t-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.pricelist_id.currency_id}"
groups="account.group_show_line_subtotals_tax_included"/>
</t>
<span t-else="" class="fw-normal text-muted">Free</span>
</xpath>
<xpath expr="//input[@name='booth_category_id']" position="attributes">
<attribute name="t-att-data-price">
event.company_id.sudo().currency_id._convert(
booth_category.price_reduce_taxinc if env.user.has_group('account.group_show_line_subtotals_tax_included') else booth_category.price_reduce,
website.get_current_pricelist().currency_id,
event.company_id,
datetime.date.today()
) or '0'
</attribute>
</xpath>
<xpath expr="//div[@name='booth_registration_submit']" position="before">
<div class="row o_wbooth_booth_total_price d-none">
<div class="col-sm-2 offset-sm-1">
<span class="fw-bold">Total</span>
</div>
<div class="col-sm-6">
<span class="fw-bold" t-out="float(0)"
t-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.pricelist_id.currency_id}"/>
</div>
</div>
</xpath>
</template>
</data></odoo>