mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 11:32:07 +02:00
19.0 vanilla
This commit is contained in:
parent
79f83631d5
commit
73afc09215
6267 changed files with 1534193 additions and 1130106 deletions
|
|
@ -12,39 +12,16 @@ 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`.
|
||||
- Repository: https://github.com/OCA/OCB
|
||||
- Branch: 19.0
|
||||
- Path: addons/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
|
||||
This package preserves the original LGPL-3 license.
|
||||
|
|
|
|||
|
|
@ -1,14 +1,16 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-website_event_booth_sale"
|
||||
version = "16.0.0"
|
||||
description = "Online Event Booth Sale - Events, sell your booths online"
|
||||
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",
|
||||
"odoo-bringout-oca-ocb-event_booth_sale>=19.0.0",
|
||||
"odoo-bringout-oca-ocb-website_event_booth>=19.0.0",
|
||||
"odoo-bringout-oca-ocb-website_sale>=19.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
|
|
@ -18,7 +20,7 @@ classifiers = [
|
|||
"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.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -10,16 +10,18 @@ Use the e-commerce to sell your event booths.
|
|||
""",
|
||||
'depends': ['event_booth_sale', 'website_event_booth', 'website_sale'],
|
||||
'data': [
|
||||
'views/event_booth_registration_templates.xml',
|
||||
'views/event_booth_templates.xml',
|
||||
],
|
||||
'auto_install': True,
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'/website_event_booth_sale/static/src/js/booth_register.js',
|
||||
'/website_event_booth_sale/static/src/interactions/*',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'/website_event_booth_sale/static/tests/tours/**/**.js'
|
||||
'/website_event_booth_sale/static/tests/tours/**/*.js'
|
||||
],
|
||||
},
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,13 +9,6 @@ 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
|
||||
|
|
@ -30,19 +23,31 @@ class WebsiteEventBoothController(WebsiteEventController):
|
|||
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(
|
||||
order_sudo = request.cart or request.website._create_cart()
|
||||
if order_sudo._is_anonymous_cart():
|
||||
order_sudo._update_address(booth_values['partner_id'], ['partner_id'])
|
||||
order_sudo._cart_add(
|
||||
product_id=booth_category.product_id.id,
|
||||
set_qty=1,
|
||||
quantity=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:
|
||||
else:
|
||||
order_sudo.action_confirm()
|
||||
request.website.sale_reset()
|
||||
|
||||
return self._prepare_booth_registration_success_values(event.name, booth_values)
|
||||
|
||||
def _prepare_booth_contact_form_values(self, event, booth_ids, booth_category_id):
|
||||
values = super()._prepare_booth_contact_form_values(event, booth_ids, booth_category_id)
|
||||
values['has_payment_step'] = request.cart.amount_total or \
|
||||
values.get('booth_category', request.env['event.booth.category']).price
|
||||
return values
|
||||
|
||||
def _prepare_booth_main_values(self, event, booth_category_id=False, booth_ids=False):
|
||||
values = super()._prepare_booth_main_values(event, booth_category_id=booth_category_id, booth_ids=booth_ids)
|
||||
values['has_payment_step'] = request.cart.amount_total or \
|
||||
any(booth_category.price for booth_category in values.get('available_booth_category_ids', request.env['event.booth.category']))
|
||||
return values
|
||||
|
|
|
|||
|
|
@ -1,57 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,59 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 13:46+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/ar/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.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\">الإجمالي</span> "
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>المجموع</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "قم بحجز أجنحتي"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "تم التأكيد"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "الذهاب إلى الدفع"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "لا يمكنك تغيير كمية منتج في كشك الفعالية يدوياً. "
|
||||
msgstr "لا يمكنك تغيير كمية منتج في كشك الفعالية يدوياً."
|
||||
|
|
|
|||
|
|
@ -1,58 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Azad"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,57 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,59 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Безплатен"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "Продуктов вариант"
|
||||
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 "Уебсайт"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,58 +1,77 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Slobodan"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Varijanta proizvoda"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_website
|
||||
msgid "Website"
|
||||
msgstr "Web stranica"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#. odoo-python
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py
|
||||
#, python-format
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py:0
|
||||
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."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,62 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:34+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/ca/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Fer la reserva del meu estand"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmat"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Lliure"
|
||||
msgstr "Gratuït"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Dirigir-se al pagament"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Pagament"
|
||||
|
||||
#. 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"
|
||||
msgstr "Comanda"
|
||||
|
||||
#. 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 "
|
||||
|
|
|
|||
|
|
@ -1,60 +1,78 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:32+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/cs/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Součet</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Potvrzený"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Přejít na Platby"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Platba"
|
||||
|
||||
#. 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 ""
|
||||
|
|
|
|||
|
|
@ -1,58 +1,81 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2024
|
||||
# Kira Petersen, 2025
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Kira Petersen François (peti)" <peti@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-25 13:31+0000\n"
|
||||
"Last-Translator: \"Kira Petersen François (peti)\" <peti@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/da/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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 ""
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Reservér min(e) stand(e)"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Bekræftet"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Ledig"
|
||||
msgstr "Gratis"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Gå til betaling"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Betaling"
|
||||
|
||||
#. 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."
|
||||
msgstr ""
|
||||
"Det er ikke muligt manuelt at ændre produktmængden for en stand til "
|
||||
"arrangementer."
|
||||
|
|
|
|||
|
|
@ -1,60 +1,80 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-31 13:02+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/de/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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\">Gesamt</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Gesamt</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Meine Stände buchen"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Bestätigt"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Zur Zahlung"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Zahlung"
|
||||
|
||||
#. 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."
|
||||
"Sie können die Menge eines Veranstaltungsstandsprodukts nicht manuell ändern."
|
||||
|
|
|
|||
|
|
@ -0,0 +1,78 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-24 19:24+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Επιβεβαιώθηκε"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Παραγγελία"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#. odoo-python
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py:0
|
||||
msgid "You cannot manually change the quantity of an Event Booth product."
|
||||
msgstr ""
|
||||
|
|
@ -1,60 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:27+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/es/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Reservar mis estands"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmado"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Ir al pago"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Pago"
|
||||
|
||||
#. 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 "
|
||||
|
|
|
|||
|
|
@ -0,0 +1,80 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 06:32+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/website_event_booth_sale/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Reservar mis estands"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmado"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Ir al pago"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Pago"
|
||||
|
||||
#. 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_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Orden de venta"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#. odoo-python
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py:0
|
||||
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."
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
# 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."
|
||||
|
|
@ -1,60 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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\">Kokku</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Vaba"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
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 "Ürituste stendi toote koguseid ei saa käsitsi muuta."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,58 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "رایگان"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "گونه محصول"
|
||||
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 "تارنما"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,61 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/fi/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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\">Yhteensä</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Yhteensä</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Varaa myyntikoju(t)"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Vahvistettu"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Siirry maksamaan"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Maksu"
|
||||
|
||||
#. 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."
|
||||
msgstr ""
|
||||
"Et voi muuttaa tapahtuman näyttelypöydän tuotteen määrää manuaalisesti."
|
||||
|
|
|
|||
|
|
@ -1,60 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:20+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/fr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Réservez mon (mes) stand(s)"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmé"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Aller au Paiement"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Paiement"
|
||||
|
||||
#. 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 "
|
||||
|
|
|
|||
|
|
@ -1,57 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,58 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "פנוי"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "וריאנט מוצר"
|
||||
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 "אתר אינטרנט"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,59 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "स्वतंत्र"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "उत्पाद प्रकार"
|
||||
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 "वेबसाइट"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,59 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Slobodan"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,30 +1,43 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 19:48+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/hu/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Összes</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Megerősített"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
|
|
@ -32,29 +45,34 @@ msgstr ""
|
|||
msgid "Free"
|
||||
msgstr "Szabad"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Fizetés"
|
||||
|
||||
#. 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"
|
||||
msgstr "Vevői rendelés"
|
||||
|
||||
#. 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 ""
|
||||
|
|
|
|||
|
|
@ -1,53 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,59 +1,78 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:49+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/id/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Book Booth saya"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Dikonfirmasi"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Gratis"
|
||||
msgstr "Bebas"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Pergi ke Pembayaran"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Pembayaran"
|
||||
|
||||
#. 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"
|
||||
msgstr "Order Penjualan"
|
||||
|
||||
#. 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."
|
||||
|
|
|
|||
|
|
@ -1,57 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,60 +1,78 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:20+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/it/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Totale</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Prenota il/i mio/miei stand"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Confermato"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Vai al pagamento"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Pagamento"
|
||||
|
||||
#. 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."
|
||||
msgstr "Non è possibile modificare la quantità di un prodotto di Stand Eventi."
|
||||
|
|
|
|||
|
|
@ -1,60 +1,78 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:17+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/ja/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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\">合計</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>合計</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "ブースを予約"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "確認済"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "支払へ移動する"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "イベントブースプロダクトの数量を手動で変更することはできません。"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,76 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#. odoo-python
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py:0
|
||||
msgid "You cannot manually change the quantity of an Event Booth product."
|
||||
msgstr ""
|
||||
|
|
@ -1,59 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,59 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Kwanghee Park (kwpa)" <kwpa@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-02-12 07:09+0000\n"
|
||||
"Last-Translator: \"Kwanghee Park (kwpa)\" <kwpa@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/ko/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.14.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>전체</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "부스 예약하기"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "확인됨"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "결제로 이동"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "행사 부스 품목의 수량은 수기로 변경할 수 없습니다."
|
||||
|
|
|
|||
|
|
@ -0,0 +1,75 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#. odoo-python
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py:0
|
||||
msgid "You cannot manually change the quantity of an Event Booth product."
|
||||
msgstr ""
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,58 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Laisvas"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. 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ė"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,59 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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\">Kopā</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Brīvs"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,57 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,58 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "үнэгүй"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "Барааны хувилбар"
|
||||
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 "Вэбсайт"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,57 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -0,0 +1,75 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#. odoo-python
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py:0
|
||||
msgid "You cannot manually change the quantity of an Event Booth product."
|
||||
msgstr ""
|
||||
|
|
@ -1,58 +1,78 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:49+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/nb_NO/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Totalt</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Bekreftet"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Ledig"
|
||||
msgstr "Gratis"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Betaling"
|
||||
|
||||
#. 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 ""
|
||||
|
|
|
|||
|
|
@ -1,61 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 08:07+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/nl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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\">Totaal</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Totaal</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Boek mijn stand(s)"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Bevestigd"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Ga naar de betaling"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Betaling"
|
||||
|
||||
#. 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."
|
||||
"Je kunt het aantal van een evenementstand-product niet handmatig wijzigen."
|
||||
|
|
|
|||
|
|
@ -1,53 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,60 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:26+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/pl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.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\">Suma</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Wszystkie</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Zarezerwuj moją budkę(budki)"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Potwierdzone"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Przejdź do płatności"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Płatność"
|
||||
|
||||
#. 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"
|
||||
|
|
|
|||
|
|
@ -1,61 +1,80 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:20+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/pt/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Reservar meus estandes"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmado"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Livre"
|
||||
msgstr "Gratuito"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Ir para o pagamento"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Pagamento"
|
||||
|
||||
#. 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"
|
||||
msgstr "Produto"
|
||||
|
||||
#. 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"
|
||||
msgstr "Pedido de venda"
|
||||
|
||||
#. 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."
|
||||
|
|
|
|||
|
|
@ -1,62 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:19+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/website_event_booth_sale/pt_BR/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Reservar meus estandes"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmado"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Ir para o pagamento"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Pagamento"
|
||||
|
||||
#. 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 "
|
||||
|
|
|
|||
|
|
@ -1,59 +1,80 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2024
|
||||
# Corina Calin, 2024
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# Busoi Cristina <elena.busoi@capps.ai>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-01-15 10:17+0000\n"
|
||||
"Last-Translator: Busoi Cristina <elena.busoi@capps.ai>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/ro/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.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 ""
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Total</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Rezervați-mi standul (urile)"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Confirmat"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Disponibil"
|
||||
msgstr "Liber"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Mergeți la plată"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Plata"
|
||||
|
||||
#. 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 "
|
||||
|
|
|
|||
|
|
@ -1,31 +1,46 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# * 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
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 17.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:31+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/ru/>\n"
|
||||
"Language: 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"
|
||||
"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"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Итого</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Забронировать стенд(ы)"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Подтверждена"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
|
|
@ -34,28 +49,39 @@ msgid "Free"
|
|||
msgstr "Бесплатно"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_template
|
||||
msgid "Product"
|
||||
msgstr "Продукт"
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Перейти к оплате"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_product
|
||||
msgid "Product Variant"
|
||||
msgstr "Вариант продукта"
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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_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."
|
||||
|
||||
#~ msgid "Product Variant"
|
||||
#~ msgstr "Вариант продукта"
|
||||
|
||||
#~ msgid "Website"
|
||||
#~ msgstr "Сайт"
|
||||
|
|
|
|||
|
|
@ -1,60 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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ý"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
msgstr ""
|
||||
|
||||
#. 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"
|
||||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,59 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:35+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/sl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Skupaj</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Potrjeno"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Prosto"
|
||||
msgstr "Brezplačna dostava"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Plačilo"
|
||||
|
||||
#. 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"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. 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 ""
|
||||
|
|
|
|||
|
|
@ -1,23 +1,40 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
|
|
@ -26,13 +43,24 @@ msgid "Free"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_template
|
||||
msgid "Product"
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_product
|
||||
msgid "Product Variant"
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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
|
||||
|
|
@ -40,14 +68,8 @@ msgstr ""
|
|||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,59 +0,0 @@
|
|||
# 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."
|
||||
|
|
@ -0,0 +1,75 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#. odoo-python
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py:0
|
||||
msgid "You cannot manually change the quantity of an Event Booth product."
|
||||
msgstr ""
|
||||
|
|
@ -1,60 +1,79 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Hanna Kharraziha <hakha@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-03-06 17:51+0000\n"
|
||||
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/sv/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.16.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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Bekräftad"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Gå till betalning"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Betalning"
|
||||
|
||||
#. 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"
|
||||
msgstr "Försäljningsorder"
|
||||
|
||||
#. 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 ""
|
||||
|
|
|
|||
|
|
@ -1,53 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
# 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 ""
|
||||
|
|
@ -1,59 +1,78 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 22:55+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/th/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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 ""
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>ทั้งหมด</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "จองบูธของฉัน"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "ยืนยันแล้ว"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "ไปที่การชำระเงิน"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "คุณไม่สามารถเปลี่ยนแปลงปริมาณของสินค้าบูธกิจกรรมได้ด้วยตนเอง"
|
||||
|
|
|
|||
|
|
@ -1,60 +1,81 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
|
||||
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-21 14:47+0000\n"
|
||||
"Last-Translator: Odoo Turkish Import <dyki+tr@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/tr/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.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\">Toplam</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Toplam</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Stand(lar)ımı ayırt"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Doğrulanmış"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Ödeme bölümüne git"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Ödeme"
|
||||
|
||||
#. 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."
|
||||
|
|
|
|||
|
|
@ -1,59 +1,75 @@
|
|||
# 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"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 14:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"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\">Всього</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
msgid "Free"
|
||||
msgstr "Безкоштовно"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "Варіант товару"
|
||||
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 "Веб-сайт"
|
||||
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 "Ви не можете вручну змінити кількість товару Стенд події."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -0,0 +1,94 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\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
|
||||
#, fuzzy
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Jami</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
#, fuzzy
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Stendimni band qilish"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
#, fuzzy
|
||||
msgid "Confirmed"
|
||||
msgstr "Tasdiqlangan"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration
|
||||
#, fuzzy
|
||||
msgid "Free"
|
||||
msgstr "Bepul"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
#, fuzzy
|
||||
msgid "Go to Payment"
|
||||
msgstr "To‘lovga o‘tish"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
#, fuzzy
|
||||
msgid "Payment"
|
||||
msgstr "To‘lov"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_template
|
||||
#, fuzzy
|
||||
msgid "Product"
|
||||
msgstr "Mahsulot"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_sale_order
|
||||
#, fuzzy
|
||||
msgid "Sales Order"
|
||||
msgstr "Savdo buyurtmasi"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#. odoo-python
|
||||
#: code:addons/website_event_booth_sale/models/sale_order.py:0
|
||||
#, fuzzy
|
||||
msgid "You cannot manually change the quantity of an Event Booth product."
|
||||
msgstr "Siz tadbir stendi mahsulotining miqdorini qo‘lda o‘zgartira olmaysiz."
|
||||
|
|
@ -1,61 +1,80 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:49+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"website_event_booth_sale/vi/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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\">Tổng</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>Tổng</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "Đặt (các) gian hàng của tôi"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "Đã xác nhận"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. 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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "Đi đến thanh toán"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
msgstr "Thanh toán"
|
||||
|
||||
#. 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. "
|
||||
"Bạn không thể thay đổi số lượng sản phẩm của gian hàng sự kiện theo cách thủ "
|
||||
"công."
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -17,7 +17,23 @@ msgstr ""
|
|||
|
||||
#. 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>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
|
|
@ -26,13 +42,24 @@ msgid "Free"
|
|||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_template
|
||||
msgid "Product"
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model,name:website_event_booth_sale.model_product_product
|
||||
msgid "Product Variant"
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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
|
||||
|
|
@ -40,14 +67,8 @@ msgstr ""
|
|||
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 ""
|
||||
|
|
|
|||
|
|
@ -1,59 +1,78 @@
|
|||
# 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
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/website_event_booth_sale/zh_Hans/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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\">总计</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>总计</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "预订我的展位"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "已确认"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "前往付款"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "您不能手动更改 活动展位 产品的数量。"
|
||||
|
|
|
|||
|
|
@ -1,59 +1,81 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# * website_event_booth_sale
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.3\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"
|
||||
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 08:12+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/website_event_booth_sale/zh_Hant/>\n"
|
||||
"Language: 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"
|
||||
"X-Generator: Weblate 5.12.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\">總額</span>"
|
||||
msgid "<span>Total</span>"
|
||||
msgstr "<span>總計</span>"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Book my Booth(s)"
|
||||
msgstr "預訂我的展位"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Confirmed"
|
||||
msgstr "已確認"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__display_name
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__display_name
|
||||
msgid "Display Name"
|
||||
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_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_registration_details
|
||||
msgid "Go to Payment"
|
||||
msgstr "前往付款"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_product_template__id
|
||||
#: model:ir.model.fields,field_description:website_event_booth_sale.field_sale_order__id
|
||||
msgid "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: website_event_booth_sale
|
||||
#: model_terms:ir.ui.view,arch_db:website_event_booth_sale.event_booth_order_progress
|
||||
msgid "Payment"
|
||||
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 "您無法手動更改 活動攤位 產品的數量。"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,4 @@
|
|||
# -*- 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
|
||||
|
|
|
|||
|
|
@ -1,12 +0,0 @@
|
|||
# -*- 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)])
|
||||
|
|
@ -1,41 +1,44 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import Command
|
||||
from odoo import models, _
|
||||
from odoo import _, models
|
||||
from odoo.fields import Command
|
||||
|
||||
|
||||
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
|
||||
):
|
||||
def _cart_find_product_line(self, *args, 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)
|
||||
lines = super()._cart_find_product_line(
|
||||
*args, event_booth_pending_ids=event_booth_pending_ids, **kwargs,
|
||||
)
|
||||
|
||||
if not event_booth_pending_ids or line_id:
|
||||
if not event_booth_pending_ids:
|
||||
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):
|
||||
def _verify_updated_quantity(self, order_line, product_id, new_qty, uom_id, **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:
|
||||
if product.service_tracking == '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)
|
||||
return super()._verify_updated_quantity(order_line, product_id, new_qty, uom_id, **kwargs)
|
||||
|
||||
def _prepare_order_line_values(
|
||||
self, product_id, quantity, event_booth_pending_ids=False, registration_values=None,
|
||||
self, *args, 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)
|
||||
values = super()._prepare_order_line_values(
|
||||
*args,
|
||||
event_booth_pending_ids=event_booth_pending_ids,
|
||||
registration_values=registration_values,
|
||||
**kwargs,
|
||||
)
|
||||
|
||||
if not event_booth_pending_ids:
|
||||
return values
|
||||
|
|
@ -55,7 +58,7 @@ class SaleOrder(models.Model):
|
|||
# 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,
|
||||
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."""
|
||||
|
|
|
|||
|
|
@ -0,0 +1,14 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class SaleOrderLine(models.Model):
|
||||
_inherit = 'sale.order.line'
|
||||
|
||||
@api.depends('event_booth_ids')
|
||||
def _compute_name_short(self):
|
||||
wbooth = self.filtered(lambda line: line.event_booth_pending_ids)
|
||||
for record in wbooth:
|
||||
record.name_short = record.event_booth_pending_ids.event_id.name
|
||||
super(SaleOrderLine, self - wbooth)._compute_name_short()
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
# -*- 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')]
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
import { BoothRegistration } from "@website_event_booth/interactions/booth_registration";
|
||||
import { patch } from "@web/core/utils/patch";
|
||||
|
||||
/**
|
||||
* This class changes the displayed price after selecting the requested booths.
|
||||
*/
|
||||
patch(BoothRegistration.prototype, {
|
||||
start() {
|
||||
super.start();
|
||||
this.categoryPrice = this.selectedBoothCategory ? this.selectedBoothCategory.dataset.price : undefined;
|
||||
},
|
||||
onBoothTypeChange(ev, currentTargetEl) {
|
||||
super.onBoothTypeChange(ev, currentTargetEl);
|
||||
this.categoryPrice = parseFloat(currentTargetEl.dataset.price);
|
||||
},
|
||||
onBoothChange(ev, currentTargetEl) {
|
||||
super.onBoothChange(ev, currentTargetEl);
|
||||
const boothCount = this.countSelectedBooths();
|
||||
const boothTotalPriceEl = this.el.querySelector(".o_wbooth_booth_total_price");
|
||||
boothTotalPriceEl?.classList.toggle("d-none", !boothCount || !this.categoryPrice);
|
||||
this.updatePrice(boothCount);
|
||||
},
|
||||
updatePrice(boothCount) {
|
||||
const boothCurrencyEl = this.el.querySelector(".o_wbooth_booth_total_price .oe_currency_value");
|
||||
if (boothCurrencyEl) {
|
||||
boothCurrencyEl.textContent = `${boothCount * this.categoryPrice}`;
|
||||
}
|
||||
},
|
||||
});
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
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);
|
||||
},
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
|
@ -1,38 +1,39 @@
|
|||
odoo.define('website_event_booth_sale.tour.WebsiteEventBoothSaleTourMethods', function (require) {
|
||||
'use strict';
|
||||
|
||||
const { changePricelist, checkPriceCart } = require('website_event_sale.tour.WebsiteEventSaleTourMethods');
|
||||
import { changePricelist, checkPriceCart } from "@website_event_sale/../tests/tours/helpers/WebsiteEventSaleTourMethods";
|
||||
|
||||
function checkPriceBooth(eventName, price, priceSelected) {
|
||||
return [
|
||||
{
|
||||
content: "Go to page Event",
|
||||
trigger: '.nav-link:contains("Event")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'Open "Test Event Booths" event',
|
||||
trigger: `h5.card-title span:contains(${eventName})`,
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'Go to "Get A Booth" page',
|
||||
trigger: 'li.nav-item a:has(span:contains("Get A Booth"))',
|
||||
content: 'Go to "Booth" page',
|
||||
trigger: 'a:contains("Become exhibitor")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'Select the booth',
|
||||
trigger: '.o_wbooth_booths input[name="event_booth_ids"]',
|
||||
trigger: ".o_wbooth_booths input[name=event_booth_ids]:not(:visible)",
|
||||
run: function () {
|
||||
$('.o_wbooth_booths input[name="event_booth_ids"]:lt(1)').click();
|
||||
document.querySelector('.o_wbooth_booths input[name="event_booth_ids"]:nth-child(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
|
||||
},
|
||||
]
|
||||
}
|
||||
|
|
@ -42,11 +43,10 @@ odoo.define('website_event_booth_sale.tour.WebsiteEventBoothSaleTourMethods', fu
|
|||
{
|
||||
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}) {
|
||||
export 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),
|
||||
|
|
@ -54,5 +54,4 @@ odoo.define('website_event_booth_sale.tour.WebsiteEventBoothSaleTourMethods', fu
|
|||
...checkPriceCart(priceCart),
|
||||
]
|
||||
}
|
||||
return { getPriceListChecksSteps }
|
||||
});
|
||||
export default { getPriceListChecksSteps }
|
||||
|
|
|
|||
|
|
@ -1,54 +1,54 @@
|
|||
/** @odoo-module **/
|
||||
import { registry } from "@web/core/registry";
|
||||
import * as wsTourUtils from '@website_sale/js/tours/tour_utils';
|
||||
|
||||
import tour from 'web_tour.tour';
|
||||
|
||||
tour.register('website_event_booth_tour', {
|
||||
test: true,
|
||||
registry.category("web_tour.tours").add('website_event_booth_tour', {
|
||||
url: '/event',
|
||||
}, [
|
||||
steps: () => [
|
||||
{
|
||||
content: 'Open "Test Event Booths" event',
|
||||
trigger: 'h5.card-title span:contains("Test Event Booths")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
content: 'Go to "Get A Booth" page',
|
||||
trigger: 'li.nav-item a:has(span:contains("Get A Booth"))',
|
||||
content: 'Go to "Booth" page',
|
||||
trigger: 'a:contains("Become exhibitor")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
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();
|
||||
trigger: ".o_wbooth_booths input[name=event_booth_ids]:not(:visible)",
|
||||
run() {
|
||||
document.querySelectorAll('.o_wbooth_booths input[name="event_booth_ids"]')[0].click();
|
||||
document.querySelectorAll('.o_wbooth_booths input[name="event_booth_ids"]')[1].click();
|
||||
},
|
||||
}, {
|
||||
content: 'Confirm the booths by clicking the submit button',
|
||||
trigger: 'button.o_wbooth_registration_submit',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
}, {
|
||||
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');
|
||||
run() {
|
||||
this.anchor.value = 'John Doe';
|
||||
document.querySelector('input[name="contact_email"]').value = '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 () {},
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
]);
|
||||
...wsTourUtils.assertCartAmounts({
|
||||
taxes: '20.00',
|
||||
untaxed: '200.00',
|
||||
total: '220.00',
|
||||
}),
|
||||
wsTourUtils.goToCheckout(),
|
||||
...wsTourUtils.assertCartAmounts({
|
||||
taxes: '20.00',
|
||||
untaxed: '200.00',
|
||||
total: '220.00',
|
||||
}),
|
||||
]});
|
||||
|
|
|
|||
|
|
@ -1,75 +1,63 @@
|
|||
/** @odoo-module **/
|
||||
import { registry } from "@web/core/registry";
|
||||
import { getPriceListChecksSteps } from '@website_event_booth_sale/../tests/tours/helpers/WebsiteEventBoothSaleTourMethods';
|
||||
import * as wsTourUtils from '@website_sale/js/tours/tour_utils';
|
||||
|
||||
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,
|
||||
registry.category("web_tour.tours").add('event_booth_sale_pricelists_different_currencies', {
|
||||
url: '/event',
|
||||
}, [
|
||||
steps: () => [
|
||||
// Init: registering the booth
|
||||
{
|
||||
content: 'Open "Test Event Booths" event',
|
||||
trigger: 'h5.card-title span:contains("Test Event Booths")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
content: 'Go to "Get A Booth" page',
|
||||
trigger: 'li.nav-item a:has(span:contains("Get A Booth"))',
|
||||
content: 'Go to "Become exhibitor" page',
|
||||
trigger: 'a:contains("Become exhibitor")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
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();
|
||||
},
|
||||
trigger: ".o_wbooth_booths input[name=event_booth_ids]:nth-child(1):not(:visible)",
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
content: 'Confirm the booth by clicking the submit button',
|
||||
trigger: 'button.o_wbooth_registration_submit',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
{
|
||||
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');
|
||||
run() {
|
||||
this.anchor.value = 'John Doe';
|
||||
document.querySelector('input[name="contact_email"]').value = 'jdoe@example.com';
|
||||
},
|
||||
},
|
||||
{
|
||||
content: 'Submit your informations',
|
||||
trigger: 'button[type="submit"]',
|
||||
}, {
|
||||
content: 'Checkout your order',
|
||||
trigger: 'a[role="button"] span:contains("Process Checkout")',
|
||||
run: "click",
|
||||
expectUnloadPage: true,
|
||||
},
|
||||
...getPriceListChecksSteps({
|
||||
pricelistName: "EUR With Discount Included",
|
||||
eventName: "Test Event Booths",
|
||||
price: "90.00",
|
||||
priceSelected: "90",
|
||||
priceCart: "99.00",
|
||||
}),
|
||||
wsTourUtils.goToCheckout(),
|
||||
...getPriceListChecksSteps({
|
||||
pricelistName: "EUR Without Discount Included",
|
||||
eventName: "Test Event Booths",
|
||||
price: "90.00",
|
||||
priceSelected: "90",
|
||||
price: "99.00",
|
||||
priceSelected: "99",
|
||||
priceCart: "99.00",
|
||||
priceBeforeDiscount: "100.00",
|
||||
}),
|
||||
...getPriceListChecksSteps({
|
||||
pricelistName: "EX With Discount Included",
|
||||
eventName: "Test Event Booths",
|
||||
price: "900.00",
|
||||
priceSelected: "900",
|
||||
priceCart: "990.00",
|
||||
priceBeforeDiscount: "110.00",
|
||||
}),
|
||||
...getPriceListChecksSteps({
|
||||
pricelistName: "EX Without Discount Included",
|
||||
eventName: "Test Event Booths",
|
||||
price: "900.00",
|
||||
priceSelected: "900",
|
||||
price: "990.00",
|
||||
priceSelected: "990",
|
||||
priceCart: "990.00",
|
||||
priceBeforeDiscount: "1,000.00",
|
||||
priceBeforeDiscount: "1,100.00",
|
||||
}),
|
||||
]);
|
||||
]});
|
||||
|
|
|
|||
|
|
@ -13,47 +13,49 @@ 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({
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.env['website'].sudo().search([]).show_line_subtotals_tax_selection = 'tax_included'
|
||||
cls.tax = cls.env['account.tax'].sudo().create({
|
||||
'name': 'Tax 10',
|
||||
'amount': 10,
|
||||
})
|
||||
self.booth_product = self.env['product.product'].create({
|
||||
cls.booth_product = cls.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',
|
||||
'taxes_id': [(6, 0, [cls.tax.id])],
|
||||
'type': 'service',
|
||||
'service_tracking': 'event_booth',
|
||||
})
|
||||
self.event_booth_category = self.env['event.booth.category'].create({
|
||||
cls.event_booth_category = cls.env['event.booth.category'].create({
|
||||
'name': 'Standard',
|
||||
'description': '<p>Standard</p>',
|
||||
'product_id': self.booth_product.id,
|
||||
'product_id': cls.booth_product.id,
|
||||
'price': 100.0,
|
||||
})
|
||||
self.event_type = self.env['event.type'].create({
|
||||
cls.event_type = cls.env['event.type'].create({
|
||||
'name': 'Booth Type',
|
||||
'event_type_booth_ids': [
|
||||
Command.create({
|
||||
'name': 'Standard 1',
|
||||
'booth_category_id': self.event_booth_category.id,
|
||||
'booth_category_id': cls.event_booth_category.id,
|
||||
}),
|
||||
Command.create({
|
||||
'name': 'Standard 2',
|
||||
'booth_category_id': self.event_booth_category.id,
|
||||
'booth_category_id': cls.event_booth_category.id,
|
||||
}),
|
||||
Command.create({
|
||||
'name': 'Standard 3',
|
||||
'booth_category_id': self.event_booth_category.id,
|
||||
'booth_category_id': cls.event_booth_category.id,
|
||||
}),
|
||||
],
|
||||
})
|
||||
self.env['event.event'].create({
|
||||
cls.env['event.event'].create({
|
||||
'name': 'Test Event Booths',
|
||||
'event_type_id': self.event_type.id,
|
||||
'event_type_id': cls.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,
|
||||
|
|
@ -62,6 +64,7 @@ class TestWebsiteEventBoothSale(HttpCaseWithUserPortal, TestWebsiteEventSaleComm
|
|||
})
|
||||
|
||||
def test_tour(self):
|
||||
self.env['product.pricelist'].sudo().search([]).action_archive()
|
||||
self.partner_portal.write({
|
||||
'street': '858 Lynn Street',
|
||||
'city': 'Bayonne',
|
||||
|
|
@ -82,4 +85,4 @@ class TestWebsiteEventBoothSale(HttpCaseWithUserPortal, TestWebsiteEventSaleComm
|
|||
'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')
|
||||
self.start_tour("/odoo", 'event_booth_sale_pricelists_different_currencies', login='admin')
|
||||
|
|
|
|||
|
|
@ -1,11 +1,12 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.fields import Command
|
||||
from odoo.tests import tagged
|
||||
|
||||
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
|
||||
from odoo.addons.website_sale.tests.common import MockRequest
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
|
|
@ -13,7 +14,7 @@ class TestWebsiteBoothPriceList(TestEventBoothSaleCommon, TestWebsiteEventSaleCo
|
|||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestWebsiteBoothPriceList, cls).setUpClass()
|
||||
super().setUpClass()
|
||||
|
||||
cls.WebsiteSaleController = WebsiteSale()
|
||||
cls.booth_1 = cls.env['event.booth'].create({
|
||||
|
|
@ -33,47 +34,25 @@ class TestWebsiteBoothPriceList(TestEventBoothSaleCommon, TestWebsiteEventSaleCo
|
|||
'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,
|
||||
'order_id': self.empty_cart.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)
|
||||
self.assertEqual(so_line.price_reduce_taxexcl, 40)
|
||||
|
||||
# set pricelist to 10% - without discount
|
||||
self.pricelist.write({
|
||||
pl2 = self.pricelist.copy({
|
||||
'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',
|
||||
'item_ids': [
|
||||
Command.create({
|
||||
'applied_on': '3_global',
|
||||
'compute_price': 'percentage',
|
||||
'percent_price': 10,
|
||||
}),
|
||||
],
|
||||
'name': 'Test pricelist (with discount)',
|
||||
'selectable': True,
|
||||
})
|
||||
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.')
|
||||
with MockRequest(self.env, website=self.website, sale_order_id=self.empty_cart.id) as req:
|
||||
self.assertEqual(req.pricelist, self.pricelist)
|
||||
self.WebsiteSaleController.pricelist_change(pl2)
|
||||
self.assertEqual(so_line.price_reduce_taxexcl, 360, 'Incorrect amount based on the pricelist "Without Discount" and its currency.')
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo><data>
|
||||
|
||||
<template id="event_booth_registration_details" inherit_id="website_event_booth.event_booth_registration_details">
|
||||
<xpath expr="//button[hasclass('o_wbooth_registration_confirm')]//span" position="replace">
|
||||
<t t-if="has_payment_step">Go to Payment</t>
|
||||
<t t-else="">Book my Booth(s)</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</data></odoo>
|
||||
|
|
@ -1,44 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo><data>
|
||||
<odoo>
|
||||
|
||||
<template id="event_booth_registration" inherit_id="website_event_booth.event_booth_registration">
|
||||
<xpath expr="//h5[@name='booth_category_name']" position="after">
|
||||
<xpath expr="//label//span[hasclass('booth_category_price')]" position="replace">
|
||||
<t t-if="booth_category.price">
|
||||
<t t-if="(booth_category.price - booth_category.price_reduce) > 1 and website.get_current_pricelist().discount_policy == 'without_discount'">
|
||||
<del class="text-danger me-1"
|
||||
<t t-if="(booth_category.price - booth_category.price_reduce) > 0">
|
||||
<del t-if="website.show_line_subtotals_tax_selection == 'tax_excluded'"
|
||||
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-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.currency_id}"/>
|
||||
<del t-else=""
|
||||
class="text-danger me-1"
|
||||
t-field="booth_category.price_incl"
|
||||
t-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.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"/>
|
||||
<h5 t-if="website.show_line_subtotals_tax_selection == 'tax_excluded'"
|
||||
t-field="booth_category.price_reduce"
|
||||
t-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.currency_id}"/>
|
||||
<h5 t-else=""
|
||||
t-field="booth_category.price_reduce_taxinc"
|
||||
t-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.currency_id}"/>
|
||||
</t>
|
||||
<span t-else="" class="fw-normal text-muted">Free</span>
|
||||
<h5 t-else="">Free</h5>
|
||||
</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,
|
||||
booth_category.price_reduce_taxinc if website.show_line_subtotals_tax_selection == 'tax_included' else booth_category.price_reduce,
|
||||
website.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}"/>
|
||||
<xpath expr="//button[hasclass('o_wbooth_registration_submit')]" position="before">
|
||||
<div class="o_wbooth_booth_total_price d-none text-end">
|
||||
<div class="fw-bold">
|
||||
<span>Total</span>
|
||||
<span t-out="float(0)"
|
||||
t-options="{'widget': 'monetary', 'from_currency': event.company_id.sudo().currency_id, 'display_currency': website.currency_id}"/>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</data></odoo>
|
||||
<template id="event_booth_order_progress" inherit_id="website_event_booth.event_booth_order_progress">
|
||||
<xpath expr="//li[last()]//span" position="replace">
|
||||
<t t-if="has_payment_step">Payment</t>
|
||||
<t t-else="">Confirmed</t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue