From bf5582a83c826d177cd5e3d0f7779d24e50eeefe Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:19:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 5 + __manifest__.py | 33 +++ controllers/__init__.py | 4 + controllers/event_booth.py | 171 +++++++++++ data/event_demo.xml | 15 + i18n/ar.po | 266 +++++++++++++++++ i18n/bg.po | 256 +++++++++++++++++ i18n/ca.po | 267 +++++++++++++++++ i18n/cs.po | 254 ++++++++++++++++ i18n/da.po | 253 ++++++++++++++++ i18n/de.po | 268 +++++++++++++++++ i18n/es.po | 267 +++++++++++++++++ i18n/es_419.po | 268 +++++++++++++++++ i18n/et.po | 272 ++++++++++++++++++ i18n/fa.po | 255 ++++++++++++++++ i18n/fi.po | 262 +++++++++++++++++ i18n/fr.po | 266 +++++++++++++++++ i18n/he.po | 261 +++++++++++++++++ i18n/hu.po | 256 +++++++++++++++++ i18n/id.po | 266 +++++++++++++++++ i18n/it.po | 268 +++++++++++++++++ i18n/ja.po | 266 +++++++++++++++++ i18n/ko.po | 266 +++++++++++++++++ i18n/lt.po | 257 +++++++++++++++++ i18n/lv.po | 255 ++++++++++++++++ i18n/nl.po | 267 +++++++++++++++++ i18n/pl.po | 259 +++++++++++++++++ i18n/pt.po | 254 ++++++++++++++++ i18n/pt_BR.po | 267 +++++++++++++++++ i18n/ru.po | 269 +++++++++++++++++ i18n/sk.po | 253 ++++++++++++++++ i18n/sl.po | 254 ++++++++++++++++ i18n/sr.po | 261 +++++++++++++++++ i18n/sv.po | 257 +++++++++++++++++ i18n/th.po | 266 +++++++++++++++++ i18n/tr.po | 265 +++++++++++++++++ i18n/uk.po | 260 +++++++++++++++++ i18n/vi.po | 257 +++++++++++++++++ i18n/website_event_booth.pot | 249 ++++++++++++++++ i18n/zh_CN.po | 266 +++++++++++++++++ i18n/zh_TW.po | 259 +++++++++++++++++ models/__init__.py | 6 + models/event_event.py | 55 ++++ models/event_type.py | 17 ++ models/website_event_menu.py | 11 + security/event_booth_security.xml | 15 + security/ir.model.access.csv | 5 + static/src/img/exhibition-map.gif | Bin 0 -> 65375 bytes static/src/js/booth_register.js | 238 +++++++++++++++ static/src/scss/website_event_booth.scss | 84 ++++++ .../event_booth_registration_templates.xml | 37 +++ views/event_booth_registration_templates.xml | 61 ++++ views/event_booth_templates.xml | 137 +++++++++ views/event_event_views.xml | 19 ++ views/event_type_views.xml | 18 ++ 55 files changed, 10343 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 controllers/__init__.py create mode 100644 controllers/event_booth.py create mode 100644 data/event_demo.xml create mode 100644 i18n/ar.po create mode 100644 i18n/bg.po create mode 100644 i18n/ca.po create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/et.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fr.po create mode 100644 i18n/he.po create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ko.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sr.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/website_event_booth.pot create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/event_event.py create mode 100644 models/event_type.py create mode 100644 models/website_event_menu.py create mode 100644 security/event_booth_security.xml create mode 100644 security/ir.model.access.csv create mode 100644 static/src/img/exhibition-map.gif create mode 100644 static/src/js/booth_register.js create mode 100644 static/src/scss/website_event_booth.scss create mode 100644 static/src/xml/event_booth_registration_templates.xml create mode 100644 views/event_booth_registration_templates.xml create mode 100644 views/event_booth_templates.xml create mode 100644 views/event_event_views.xml create mode 100644 views/event_type_views.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..7d34c7c --- /dev/null +++ b/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..ea934b2 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Online Event Booths', + 'category': 'Marketing/Events', + 'version': '1.0', + 'summary': 'Events, display your booths on your website', + 'description': """ +Display your booths on your website for the users to register. + """, + 'depends': ['website_event', 'event_booth'], + 'data': [ + 'security/ir.model.access.csv', + 'security/event_booth_security.xml', + 'views/event_type_views.xml', + 'views/event_event_views.xml', + 'views/event_booth_registration_templates.xml', + 'views/event_booth_templates.xml', + ], + 'demo': [ + 'data/event_demo.xml', + ], + 'auto_install': True, + 'assets': { + 'web.assets_frontend': [ + '/website_event_booth/static/src/js/booth_register.js', + '/website_event_booth/static/src/scss/website_event_booth.scss', + 'website_event_booth/static/src/xml/event_booth_registration_templates.xml', + ], + }, + 'license': 'LGPL-3', +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..1e9f6c7 --- /dev/null +++ b/controllers/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import event_booth diff --git a/controllers/event_booth.py b/controllers/event_booth.py new file mode 100644 index 0000000..9c850c0 --- /dev/null +++ b/controllers/event_booth.py @@ -0,0 +1,171 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import json +import werkzeug +from werkzeug.exceptions import Forbidden, NotFound + +from odoo import exceptions, http, tools +from odoo.http import request +from odoo.addons.website_event.controllers.main import WebsiteEventController + + +class WebsiteEventBoothController(WebsiteEventController): + + @http.route('/event//booth', type='http', auth='public', website=True, sitemap=True) + def event_booth_main(self, event, booth_category_id=False, booth_ids=False): + try: + event.check_access_rights('read') + event.check_access_rule('read') + except exceptions.AccessError: + raise Forbidden() + + booth_category_id = int(booth_category_id) if booth_category_id else False + return request.render( + 'website_event_booth.event_booth_registration', + self._prepare_booth_main_values(event, booth_category_id=booth_category_id, booth_ids=booth_ids) + ) + + @http.route('/event//booth/register', + type='http', auth='public', methods=['POST'], website=True, sitemap=False) + def event_booth_register(self, event, booth_category_id, event_booth_ids): + # `event_booth_id` in `requests.params` only contains the first + # checkbox, we re-parse the form using getlist to get them all + event_booth_ids = request.httprequest.form.getlist('event_booth_ids') + + return request.redirect(('/event/%s/booth/register_form?' % event.id) + werkzeug.urls.url_encode({ + 'booth_ids': ','.join(event_booth_ids), + 'booth_category_id': int(booth_category_id), + })) + + @http.route('/event//booth/register_form', + type='http', auth='public', methods=['GET'], website=True, sitemap=False) + def event_booth_contact_form(self, event, booth_ids=None, booth_category_id=None): + if not booth_ids or not booth_category_id: + raise NotFound() + + return request.render( + 'website_event_booth.event_booth_registration_details', + self._prepare_booth_contact_form_values(event, booth_ids, booth_category_id) + ) + + def _prepare_booth_contact_form_values(self, event, booth_ids, booth_category_id): + booth_category = request.env['event.booth.category'].sudo().browse(int(booth_category_id)) + event_booths = request.env['event.booth'].sudo().browse([int(booth_id) for booth_id in booth_ids.split(',')]) + default_contact = {} + + if not request.env.user._is_public(): + default_contact = { + 'name': request.env.user.partner_id.name, + 'email': request.env.user.partner_id.email, + 'phone': request.env.user.partner_id.phone or request.env.user.partner_id.mobile, + 'mobile': request.env.user.partner_id.mobile, + } + else: + visitor = request.env['website.visitor']._get_visitor_from_request() + if visitor.email: + default_contact = { + 'name': visitor.name, + 'email': visitor.email, + 'mobile': visitor.mobile, + } + + return { + 'booth_category': booth_category, + 'default_contact': default_contact, + 'event': event.sudo(), + 'event_booths': event_booths, + 'hide_sponsors': True, + } + + @http.route('/event//booth/confirm', + type='http', auth='public', methods=['POST'], website=True, sitemap=False) + def event_booth_registration_confirm(self, event, booth_category_id, event_booth_ids, **kwargs): + booths = self._get_requested_booths(event, event_booth_ids) + + if not booths: + return json.dumps({'error': 'boothError'}) + booth_values = self._prepare_booth_registration_values(event, kwargs) + booths.action_confirm(booth_values) + + return self._prepare_booth_registration_success_values(event.name, booth_values) + + def _get_requested_booths(self, event, event_booth_ids): + booth_ids = json.loads(event_booth_ids) + booths = request.env['event.booth'].sudo().search([ + ('event_id', '=', event.id), + ('state', '=', 'available'), + ('id', 'in', booth_ids) + ]) + if booth_ids != booths.ids or len(booths.booth_category_id) != 1: + return request.env['event.booth'] + return booths + + def _prepare_booth_main_values(self, event, booth_category_id=False, booth_ids=False): + event_sudo = event.sudo() + available_booth_categories = event_sudo.event_booth_category_available_ids + chosen_booth_category = available_booth_categories.filtered(lambda cat: cat.id == booth_category_id) + default_booth_category = available_booth_categories[0] if available_booth_categories else request.env['event.booth.category'] + return { + 'available_booth_category_ids': available_booth_categories, + 'event': event_sudo, + 'event_booths': event_sudo.event_booth_ids, + 'hide_sponsors': True, + 'main_object': event_sudo, + 'selected_booth_category_id': (chosen_booth_category or default_booth_category).id, + 'selected_booth_ids': booth_ids if booth_category_id == chosen_booth_category.id and booth_ids else False, + } + + def _prepare_booth_registration_values(self, event, kwargs): + return self._prepare_booth_registration_partner_values(event, kwargs) + + def _prepare_booth_registration_partner_values(self, event, kwargs): + if request.env.user._is_public(): + conctact_email_normalized = tools.email_normalize(kwargs['contact_email']) + contact_name_email = tools.formataddr((kwargs['contact_name'], conctact_email_normalized)) + partner = request.env['res.partner'].sudo().find_or_create(contact_name_email) + if not partner.name and kwargs.get('contact_name'): + partner.name = kwargs['contact_name'] + if not partner.phone and kwargs.get('contact_phone'): + partner.phone = kwargs['contact_phone'] + else: + partner = request.env.user.partner_id + return { + 'partner_id': partner.id, + 'contact_name': kwargs.get('contact_name') or partner.name, + 'contact_email': kwargs.get('contact_email') or partner.email, + 'contact_phone': kwargs.get('contact_phone') or partner.phone or partner.mobile, + } + + def _prepare_booth_registration_success_values(self, event_name, booth_values): + return json.dumps({ + 'success': True, + 'event_name': event_name, + 'contact': { + 'name': booth_values.get('contact_name'), + 'email': booth_values.get('contact_email'), + 'phone': booth_values.get('contact_phone'), + }, + }) + + @http.route('/event/booth/check_availability', type='json', auth='public', methods=['POST']) + def check_booths_availability(self, event_booth_ids=None): + if not event_booth_ids: + return {} + booths = request.env['event.booth'].sudo().browse(event_booth_ids) + return { + 'unavailable_booths': booths.filtered(lambda booth: not booth.is_available).ids + } + + @http.route(['/event/booth_category/get_available_booths'], type='json', auth='public') + def get_booth_category_available_booths(self, event_id, booth_category_id): + booth_ids = request.env['event.booth'].sudo().search([ + ('event_id', '=', int(event_id)), + ('booth_category_id', '=', int(booth_category_id)), + ('state', '=', 'available') + ]) + + return [ + {'id': booth.id, 'name': booth.name} + for booth in booth_ids + ] diff --git a/data/event_demo.xml b/data/event_demo.xml new file mode 100644 index 0000000..d2a2cb3 --- /dev/null +++ b/data/event_demo.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..f444e1a --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Malaz Abuidris , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Malaz Abuidris , 2023\n" +"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" عذراً، لقد بيعت العديد من الأجنحة بالفعل. يرجى تغيير خياراتك قبل التصديق مجدداً. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "عرض الخطة " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " تهيئة الأجنحة " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "نفدت الكمية " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "حجز جناحي (أجنحتي) " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "حجز أجنحتي " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"اختيار الجناح " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "تم التأكيد " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"البريد الإكتروني\n" +" * " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"الاسم\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "عنصر قائمة الجناح " + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "التسجيل للجناح " + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "تم تسجيل الجناح! " + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "فشل تسجيل الجناح. " + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "الأجنحة في الموقع الإلكتروني " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "ألقِ نظرة على " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "اختر نوع جناحك " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "تفاصيل جهة الاتصال" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"معلومات التواصل " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "تواصل معنا" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "الفعالية" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "قوائم أجنحة الفعالية " + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "قوائم أجنحة الفعالية " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "انتهت الفعالية " + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "قالب الفعالية " + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "خريطة المعرض " + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "احصل على جناح " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "لم يعد من الممكن حجز جناح. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "رابط لقائمة الفعاليات المستقبلية " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "قائمة الفعاليات المستقبلية " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "الموقع " + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "نوع القائمة " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "رقم الهاتف" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "يرجى تعبئة الاستمارة بشكل صحيح. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "التسجيل غير مفتوح. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "عذراً، لقد بيعت كافة الأجنحة. " + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "فئة الجناح غير موجودة. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "هذه الفعالية غير مفتوحة لتسجيل العارضين في هذا الوقت. " + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "قائمة فعالية الموقع الإلكتروني " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "إذا كانت لديك أي أسئلة. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "قائمة الفعاليات المستقبلية " diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..0de2427 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,256 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Rosen Vladimirov , 2023 +# aleksandar ivanov, 2023 +# Albena Mincheva , 2023 +# Maria Boyadjieva , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Maria Boyadjieva , 2023\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Данни за контакта" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Свържете се с нас" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Събитие" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Локация" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Телефон" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..a95df72 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,267 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Carles Antoli , 2023 +# Quim - eccit , 2023 +# jabiri7, 2023 +# Martin Trigaux, 2023 +# Josep Anton Belchi, 2023 +# Manel Fernandez Ramirez , 2023 +# Ivan Espinola, 2023 +# Sandra Franch , 2023 +# marcescu, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: marcescu, 2023\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "S'ha venut" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Reservar estands" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Confirmat" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Correu electrònic\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nom\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Element de menú de l'eina de desnivell" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Registre de booth" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "S'ha completat el registre de l'armador!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Ha fallat el registre del booth." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Estands al lloc web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Detalls del contacte" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Contacta'ns" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Esdeveniment" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menús del Booth d'esdeveniments" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menús de la Caixa d'Esdeveniments" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Plantilla d'esdeveniment" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Mapa d'exposicions" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Obteniu un bony" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Ubicació" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Tipus de menú" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telèfon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Ompliu el formulari correctament." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Disculpeu, s'han esgotat els estands" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "La categoria de la cabina no existeix." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menú d'esdeveniments del lloc web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "si tens cap pregunta." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "llista d'esdeveniments futurs" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..9772c40 --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,254 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Jakub Smolka, 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Potvrzeno" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontaktní údaje" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Kontaktujte nás" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Událost" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Šablona události" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Místo" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Typ nabídky" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menu událostí na webu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..e90b6da --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,253 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Bekræftet" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontakt detaljer" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Kontakt os" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Arrangement" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Begivenhed Skabelon" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Adresse" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Menutype" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Arrangementsmenu på hjemmeside " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..8507d43 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,268 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2023\n" +"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Es tut uns leid, mehrere Stände sind bereits ausverkauft. Bitte ändern Sie Ihre Auswahl, bevor Sie erneut validieren." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Plan ansehen" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Stände konfigurieren" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Ausverkauft" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Meine Stände buchen" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Meine Stände buchen" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Standauswahl" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Bestätigt" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"E-Mail\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Name\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Menüpunkt für Stände" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Standregistrierung" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Standregistrierung abgeschlossen!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Standregistrierung fehlgeschlagen." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Stände auf Website" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Hier finden Sie unsere" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Wählen Sie Ihren Standtyp" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontaktdaten" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Kontaktdaten" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Kontaktieren Sie uns" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Veranstaltung" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menüs für Veranstaltungsstand" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menüs für Veranstaltungsstände" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Veranstaltung beendet" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Veranstaltungsvorlage" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Ausstellungsplan" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Sichern Sie sich einen Stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Sie können keinen Stand mehr buchen." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Link zur Liste zukünftiger Veranstaltungen" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Liste zukünftiger Veranstaltungen" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Standort" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Menüart" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Bitte füllen Sie das Formular korrekt aus." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Registrierung nicht geöffnet." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Es tut uns leid, alle Stände sind ausgebucht." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Die Standkategorie existiert nicht." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" +"Diese Veranstaltung ist noch nicht für die Registrierung von Ausstellern " +"geöffnet," + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Website-Veranstaltungsmenü" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr ", falls Sie Fragen haben." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "Liste zukünftiger Veranstaltungen" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..7602844 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,267 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2023\n" +"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Lo sentimons, varias cabinas están agotadas. Cambie sus preferencias antes de volver a validar." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Ver plan " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Configurar cabinas " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Agotados" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Reservar mi(s) cabina(s)" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Agendar mis cabinas" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Selección de cabina" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Confirmado" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Correo electrónico\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nombre\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Elemento de menú de cabinas" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Registro de cabinas" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "¡Se completó la inscripción del stand!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Error en el registro de la cabina." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Cabinas en el sitio web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Consulte nuestra" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Elija su tipo de cabina" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Detalles del contacto" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Detalles del contacto" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Contáctenos" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Evento" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menús de cabina de evento" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menús de cabinas de evento" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Evento finalizado " + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Plantilla de evento" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Mapa de exposición" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Obtener una cabina" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Ya no es posible reservar una cabina." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Enlace a lista de futuros eventos " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Lista de futuros eventos " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Ubicación" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Tipo de Menú" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Teléfono" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Por favor, complete el formulario correctamente." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Inscripción no abierta." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Lo lamentamos, todas las cabinas están agotadas." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "La categoría de cabina no existe." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" +"Este evento no está disponible al registro de expositores en este momento. " + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menú de Eventos del Sitio Web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "Si tienes cualquier pregunta." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "lista de futuros eventos" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..536c56f --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,268 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Iran Villalobos López, 2023 +# Fernanda Alvarez, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Fernanda Alvarez, 2023\n" +"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_419\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Lo sentimos, varios estands están agotados. Cambie sus preferencias antes de volver a validar." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Ver plan " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Configurar estands " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Agotado" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Reservar mis estands" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Reservar mis estands" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Selección de estand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Confirmado" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Correo electrónico\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nombre\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Elemento de menú de estands" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Registro de estands" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "¡Se completó el registro de estand!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Error en el registro del estand." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Estands en el sitio web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Eche un vistazo a " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Elija su tipo de estand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Detalles del contacto" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Detalles del contacto" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Contáctenos" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Evento" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menús de estand de evento" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menús de estands de evento" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Evento finalizado " + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Plantilla de evento" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Mapa de exposición" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Obtener un estand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Ya no es posible reservar un estand." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Enlace a lista de próximos eventos " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Lista de próximos eventos " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Ubicación" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Tipo de menú" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Teléfono" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Complete el formulario de forma correcta." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Registro cerrado. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Lo sentimos, todos los estands están agotados." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "La categoría de estand no existe." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" +"Por el momento, los expositores aún no se pueden registrar a este evento." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menú de eventos del sitio web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "si tiene alguna pregunta." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "lista de próximos eventos" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..7e30de5 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,272 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Eneli Õigus , 2023 +# Leaanika Randmets, 2023 +# Patrick-Jordan Kiudorv, 2023 +# Martin Trigaux, 2023 +# Triine Aavik , 2023 +# Anna, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anna, 2023\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" \n" +"1\n" +"2" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Vabanda, mitmed stendid on juba välja müüdud. Palun muuda oma valikud ja proovi uuesti." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Vaata plaani" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Seadista stendid" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Välja müüdud" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Broneeri minu stendid" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Broneeri minu stendid" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Stendi valik" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Kinnitatud" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"E-post\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nimi\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Koha menüükirje" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Stendi registreerimine" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Stendi registreerimine on lõpetatud!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Koha registreerimine ei õnnestunud." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Stendid veebilehel" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Vaata meie" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Vali oma stendi tüüp" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontakti andmed" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Kontaktandmed" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Võta meiega ühendust" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Sündmus" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Ürituse Koha Menüü" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Ürituse Kohtade Menüüd" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Sündmus on lõppenud. " + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Sündmuse mall" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Ürituse plaan" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Vali Stend" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Enam ei ole võimalik stende broneerida. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Tulevaste sündmuste nimekiri" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Tulevaste sündmuste nimikiri" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Asukoht" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Menüü tüüp" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Palun täida vorm õigesti." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Registreerimine pole avatud." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Kahjuks on kõik stendid välja müüdud." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Stendi kategooriat pole olemas." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "Antud üritus ei ole praegu eksponentide registreerimiseks avatud." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Veebilehe sündmuste menüü" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "kui teil on küsimusi." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "tulevaste sündmuste nimekiri" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..a21d244 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Hamed Mohammadi , 2023 +# Hamid Darabi, 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "تایید شده" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "جزییات تماس" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "تماس با ما" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "رویداد" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "مکان" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "تلفن" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..5bc5ffc --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,262 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Tuomo Aura , 2023 +# Miika Nissi , 2023 +# Ossi Mantylahti , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Loppuunmyyty" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Palaa omiin näytteilleasettajien alueisiin" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Hyväksytty" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Sähköposti\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nimi\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Näytteilleasettajan alueen valikon kohde" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Näytteilleasettajan alueen ilmoittautuminen" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Näytteilleasettajan alueen ilmoittautuminen valmis!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Näytteilleasettajan alueen ilmoittautuminen epäonnistui." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Näytteilleasettajien alueet verkkosivulla" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Yhteystiedot" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Ota yhteyttä" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Tapahtuma" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Näytteilleasettajan alueen valikot" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Näytteilleasettajan alueen valikot" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Tapahtuman mallipohja" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Messualueen kartta" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Hanki näytteilleasettajan alue" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Sijainti" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Valikkotyyppi" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Puhelin" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Ole hyvä ja täytä lomake oikein." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Valitettavasti kaikki näytteilleasettajien alueet on loppuunmyyty." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Tätä näytteilleasettajan alueen kategoriaa ei ole olemassa." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Verkkosivun tapahtumavalikko" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "mikäli sinulla on kysyttävää" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "lista tulevista tapahtumista" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..8587891 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jolien De Paepe, 2023\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Désolé, plusieurs stands sont actuellement épuisés. Veuillez modifier vos choix avant de valider à nouveau." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Voir le plan" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Configurer des stands" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Épuisé" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Réserver mon (mes) stand(s)" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Réservez mes stands" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Sélection de stands" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Confirmé" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Email\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nom\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Rubrique sur les stands" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Réservation de stand" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Réservation du stand réussie !" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Échec de la réservation du stand." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Stands sur Site web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Consultez notre" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Choisir votre type de stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Coordonnées" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Coordonnées" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Contactez-nous" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Événement" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menus des stands de l'événement" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menus des stands de l'événement" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Événement terminé" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Modèle d'événement" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Plan du salon" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Réservez un stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Il n'est plus possible de réserver un stand." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Lien vers la liste des événements futurs" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Liste des événements futurs" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Lieu" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Type de Menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Téléphone" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Merci de remplir correctement le formulaire." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Inscription non ouverte." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Désolé, tous les stands sont épuisés." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "La catégorie de stands n'existe pas." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "Cet événement n'est pas encore ouvert à l'inscription des exposants." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menu des événements du site web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "si vous avez des questions." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "liste des événements futurs" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..382cf18 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# ZVI BLONDER , 2023 +# Yihya Hugirat , 2023 +# Martin Trigaux, 2023 +# Ha Ketem , 2023 +# Lilach Gilliam , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Lilach Gilliam , 2023\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "אזל" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "הזמנת הדוכנים שלי" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "מאושר" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"מייל\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"שם\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "פריט תפריט דוכן" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "רישום דוכן" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "רישום דוכן הסתיים!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "דוכנים באתר" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "פרטי איש קשר" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "צור קשר" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "אירוע" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "תפריטי דוכן אירוע" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "תפריטי דוכני אירוע" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "תבניות ארוע" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "מפת אולם" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "מציאת דוכן" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "מיקום" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "סוג תפריט" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "טלפון" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "סליחה, כל הדוכנים הוזמנו." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "תפריט אירועים באתר האינטרנט" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "אם יש לך שאלות." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "רשימת אירועים עתידיים" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..c7ad050 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,256 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Ákos Nagy , 2023 +# Martin Trigaux, 2023 +# krnkris, 2023 +# Tamás Németh , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tamás Németh , 2023\n" +"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Megerősített" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Partner részletei" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Vegye fel a kapcsolatot velünk" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Esemény" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Esemény sablon" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Helyszín" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..c8cb218 --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Abe Manyo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Abe Manyo, 2023\n" +"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Maaf, beberapa booth sekarang sudah sold out. Mohon ubah pilihan Anda sebelum memvalidasi lagi." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Lihat Rencana" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Konfigurasi Booth" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Sold Out" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Book Booth saya" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Book Booth saya" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Pilihan Booth" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Dikonfirmasi" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Email\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nama\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Item Menu Booth" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Daftar Booth" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Pendaftaran Booth selesai!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Pendaftaran Booth gagal." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Booth pada Website" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Periksa" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Pilih tipe booth Anda" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Informasi Kontak" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Detail Kontak" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Hubungi Kami" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Acara" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menu Booth Acara" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menu Booth-Booth Acara" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Acara Selesai" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Templat Acara" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Peta Exhibition" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Dapatkan Booth" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Sudah tidak dapat booking booth lagi." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Link ke daftar acara di masa depan" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Daftar Acara di Masa Depan" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Lokasi " + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Jenis Menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telepon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Mohon isi formulir dengan benar." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Pendaftaran Belum Dibuka." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Maaf, semua booth sudah dipesan." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Kategori booth tersebut tidak tersedia." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "Acara ini saat ini tidak terbuka untuk pendaftaran exhibitor." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menu Acara Website" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "jika Anda memiliki pertanyaan apapun." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "daftar acara-acara mendatang" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..a2fc640 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,268 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Marianna Ciofani, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Marianna Ciofani, 2023\n" +"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Ci dispiace, diversi stand sono esauriti. Ti preghiamo di modificare le tue scelte prima di convalidare di nuovo." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Mostra piano" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Configura stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Esaurito" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Prenota il/i mio/miei stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Prenota il mio stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Scelta stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Confermato" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"E-mail\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nome\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Voce di menu stand" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Registro di stand" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Registrazione stand confermata!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Registrazione stand non riuscita." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Stand sul sito web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Consulta" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Scegli il tuo tipo di stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Dettagli Contatto" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Dettagli contatto" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Contattaci" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Evento" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menù di stand eventi" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menù di stand per eventi" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Evento terminato" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Modello evento" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Mappa della mostra" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Prendi uno stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Non è più possibile prenotare uno stand." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Link all'elenco degli eventi futuri" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Elenco eventi futuri" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Luogo" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Tipo di menù" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefono" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Compila correttamente il modulo." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Registrazione non aperta." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Ci dispiace, tutti gli stand sono esauriti." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "La categoria stand non esiste." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" +"In questo momento, le registrazioni degli espositori all'evento non sono " +"aperte." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menù eventi sito web" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "Nel caso che tu abbia domande." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "Elenco degli eventi futuri" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..782883f --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Junko Augias, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Junko Augias, 2023\n" +"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" 申し訳ございません。現在、いくつかのブースは完売しています。お手数ですが、選択内容を変更し、再度ご確認下さい。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "プランを見る" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "ブース設定" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "完売" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "ブースを予約" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "ブースを予約" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"ブース選択" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "確認されました" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Eメール\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"氏名\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "ブースメニューアイテム" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "ブース登録" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "ブース登録が完了しました!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "ブース登録に失敗しました。" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "ウェブサイト上のブース" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "以下をチェックする:" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "ブースタイプ選択" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "コンタクトの詳細" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"連絡先詳細" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "お問い合わせ" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "イベント" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "イベントブースメニュー" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "イベントブースメニュー" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "イベント終了" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "イベントテンプレート" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "展示会マップ" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "ブースを入手" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "ブースを予約することは不可能になりました。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "今後のイベントリストへのリンク" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "今後のイベントリスト" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "ロケーション" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "メニュータイプ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "電話" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "フォームに正しく記入して下さい。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "登録を受け付けていません。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "申し訳ございませんが、全ブース完売となりました。" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "ブースカテゴリが存在しません。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "本イベントは、今回出展者登録を受け付けておりません。" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "ウェブサイトイベントメニュー" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "ご質問がある場合。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "今後のイベントリスト" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..c19f53b --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Daye Jeong, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Daye Jeong, 2023\n" +"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" 죄송합니다. 현재 몇몇 부스가 매진되었습니다. 선택 사항을 변경 후 다시 승인해 주십시오." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "계획 보기" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " 부스 설정" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "매진" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "부스 예약하기" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "부스 예약하기" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"부스 선택" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "확인함" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"이메일\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"이름\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "부스 메뉴 항목" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "부스 등록" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "부스 등록을 완료했습니다!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "부스 등록에 실패했습니다." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "웹사이트 부스" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "우리의" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "부스 유형 선택" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "연락처 상세 내용" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"연락처 세부 정보" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "문의하기" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "행사" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "행사 부스 메뉴" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "행사 부스 메뉴" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "행사 완료됨" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "행사 서식" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "전시회 지도" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "부스 예약하기" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "지금은 부스를 예약할 수 없습니다." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "향후 행사 목록 링크" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "향후 행사 목록 " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "위치" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "메뉴 유형" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "전화번호" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "양식을 정확하게 작성해주세요." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "등록이 시작되지 않았습니다." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "죄송합니다, 모든 부스가 매진되었습니다." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "부스 카테고리가 존재하지 않습니다." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "이 행사에는 현재 전시업체 등록이 불가합니다." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "웹사이트 행사 메뉴" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "문의 사항이 있으시면" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "향후 예정된 행사 목록" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..4ffee83 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,257 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Šarūnas Ažna , 2023 +# Ramunė ViaLaurea , 2023 +# Jonas Zinkevicius , 2023 +# Linas Versada , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Patvirtinta" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontakto detalės" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Susisiekite su mumis" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Renginys" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Renginio šablonas" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Vieta" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Meniu tipas" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefonas" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Prašome užpildyti šią formą teisingai." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Svetainės renginių meniu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..747adc4 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,255 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# JanisJanis , 2023 +# Arnis Putniņš , 2023 +# ievaputnina , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: ievaputnina , 2023\n" +"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontakta informācija" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Kontakti" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Notikums" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Atrašanās vieta" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefons" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..6cdf01d --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,267 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jolien De Paepe, 2023\n" +"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Sorry, verschillende stands zijn nu uitverkocht. Wijzig je keuzes voordat je opnieuw bevestigt." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Plan bekijken" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Stands configureren" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Uitverkocht" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Boek mijn stand(s)" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Mijn stands boeken" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Standselectie" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Bevestigd" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"E-mail\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Naam\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Menu-item stand" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Stand registreren" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Standregistratie voltooid!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Standregistratie mislukt." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Stands op website" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Bekijk onze" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Kies je type stand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Contactgegevens" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Contactgegevens" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Ons contacteren" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Evenement" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Evenementstandsmenu's" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menu's voor evenementenstands" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Evenement afgelopen" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Evenementsjabloon" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Evenement plattegrond" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Een stand bekomen" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Het is niet meer mogelijk om een stand te reserveren." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Link naar de lijst met toekomstige evenementen" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Lijst met toekomstige evenementen" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Locatie" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Soort menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefoon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Graag het formulier correct in te vullen." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Registratie nog niet open." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Sorry, alle stands zijn uitverkocht." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "De standcategorie bestaat niet." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" +"Standhouders kunnen zich momenteel niet registreren voor dit evenement." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Website event menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "als je vragen heeft." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "lijst met toekomstige evenementen" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..c586ff8 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +"" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Wyprzedane" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Zarezerwuj moje stoiska" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Potwierdzone" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Email\n" +"*" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nazwa\n" +"*" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Pozycja menu stoiska" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Rejestr stoisk" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Rejestracja stoiska zakończona!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Rejestracja stoiska nie powiodła się." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Stoiska na stronie internetowej" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Szczegóły kontaktu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Skontaktuj się z nami" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Wydarzenie" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menu stoiska wydarzenia" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menu stoisk wydarzeń" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Szablon Wydarzenia" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Mapa wystawy" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Uzyskaj stoisko" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Miejsce" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Typ menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Proszę wypełnij poprawnie formularz." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Przepraszamy, wszystkie stoiska zostały wyprzedane." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Kategoria stoiska nie istnieje." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menu Wydarzeń Strony" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "jeśli masz jakiekolwiek pytania." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "list of future events" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..c74472e --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,254 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Vasco Rodrigues, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Vasco Rodrigues, 2024\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Confirmado" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Detalhes do Contacto" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Contacte-nos" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Evento" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Modelo de evento" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Localização" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Tipo de menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefone" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menu de Evento do Site" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..628c9e6 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,267 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Layna Nascimento, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Layna Nascimento, 2023\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" Vários estandes já estão esgotados. Altere suas opções antes de validar novamente." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Ver plano" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Configurar estandes" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Esgotado" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Reservar meu estande" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Reservar meus estandes" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Seleção de estande" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Confirmado" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"E-mail\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Nome\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Item de menu do estande" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Inscrição do estande" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Inscrição do estande finalizada!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "A inscrição do estande falhou." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Estandes no site" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Confira" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Escolha o tipo de estande" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Informações de contato" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Informações de contato" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Entre em contato" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Evento" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menus de estande de eventos" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menu de estandes de eventos" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Evento concluído" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Modelo de evento" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Mapa da exposição" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Reserve um estande" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Não é mais possível reservar um estande." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Link para a lista de eventos futuros" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Lista de eventos futuros" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Local" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Tipo de menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefone" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Preencha o formulário corretamente." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "As inscrições ainda não estão abertas." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Sentimos muito, todos os estandes estão esgotados." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "A categoria de estande não existe." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" +"Este evento não está aberto para inscrições de expositores no momento." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menu de evento do site" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "caso tenha dúvidas." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "a lista de eventos futuros" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..7066cf8 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,269 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Oleg Kuryan , 2023 +# Martin Trigaux, 2023 +# Irina Fedulova , 2023 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" К сожалению, несколько стендов уже распроданы. Пожалуйста, измените свой выбор перед повторной проверкой." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "Посмотреть план" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " Настройка кабинок" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Продано" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "Забронировать стенд(ы)" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Забронировать стенды" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"Выбор стенда" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Подтверждено" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Электронная почта\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Имя\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Пункт меню стенда" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Регистратура стенда" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Регистрация стенда завершена!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Регистрация стенда не удалась." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Стенды на сайте" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "Ознакомьтесь с нашей" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "Выберите тип стенда" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Контактная информация" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"Контактная информация" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Свяжитесь с нами" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Событие" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Меню стенда для мероприятий" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Меню стендов для мероприятий" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "Событие завершено" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Шаблон события" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Карта выставки" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Получить стенд" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "Забронировать стенд больше невозможно." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "Ссылка на список будущих мероприятий" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "Список будущих событий" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Местоположение" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Тип меню" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Телефон" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Пожалуйста, заполните форму правильно." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "Регистрация не открыта." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "К сожалению, все стенды распроданы." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Категория стенда не существует." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" +"На данный момент это мероприятие не открыто для регистрации экспонентов." + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Меню мероприятий на сайте" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "если у вас есть вопросы." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "список будущих мероприятий" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..9a52f9e --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,253 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontaktné údaje" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Kontaktujte nás" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Udalosť" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Šablóna udalosti" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Miesto" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Typ menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefón" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..55e8e7e --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,254 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Jasmina Macur , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Potrjeno" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Podrobnosti stika" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Kontakt" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Dogodek" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Lokacija" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..e5756b1 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Milan Bojovic, 2023 +# Dragan Vukosavljevic , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\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 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Rasprodato" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Rezerviši moje štandove" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Potvrđeno" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Email\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Ime\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Stavka menija štanda" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Registruj štand" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Registracija štanda je završena!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Registracija štanda nije uspela." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Štandovi na Website-u" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontakt podaci" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Kontaktirajte nas" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Događaj" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Meniji štanda događaja" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Meniji štandova događaja" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Šablon događaja" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Mapa sajma" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Nabavite štand" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Lokacija" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Vrsta menija" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Molimo vas da ispravno popunite formu." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Žao nam je, svi štandovi su rasprodati." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Kategorija štanda ne postoji." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Website meni događaja" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "ako imate bilo kakvih pitanja." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "lista budućih događaja" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..07e4a9b --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,257 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Kim Asplund , 2023 +# Anders Wallenquist , 2023 +# Chrille Hedberg , 2023 +# Martin Trigaux, 2023 +# Jakob Krabbe , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jakob Krabbe , 2023\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Bekräftad" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontaktuppgifter" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Kontakta oss" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Evenemang" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Evenemangsmall" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Plats" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Menytyp" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Webbplatsens meny för evenemang" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..2c2c315 --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# Rasareeyar Lappiam, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rasareeyar Lappiam, 2024\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" ขออภัย ขณะนี้หลายบูธได้ถูกจำหน่ายหมดแล้ว โปรดเปลี่ยนตัวเลือกของคุณก่อนที่จะยืนยันอีกครั้ง" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "ดูแผน" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " กำหนดค่าบูธ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "ขายหมดแล้ว" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "จองบูธของฉัน" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "จองบูธของฉัน" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"การเลือกบูธ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "ยืนยันแล้ว" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"อีเมล\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"ชื่อ\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "รายการเมนูบูธ" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "ลงทะเบียนบูธ" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "ลงทะเบียนบูธเสร็จแล้ว!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "การลงทะเบียนบูธล้มเหลว" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "บูธบนเว็บไซต์" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "ลองดู" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "เลือกประเภทบูธของคุณ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "รายละเอียดการติดต่อ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"รายละเอียดการติดต่อ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "ติดต่อเรา" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "อีเวนต์" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "เมนูบูธอีเวนต์" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "เมนูบูธอีเวนต์" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "กิจกรรมเสร็จสิ้น" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "เทมเพลตอีเวนต์" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "แผนที่จัดแสดงนิทรรศการ" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "รับบูธ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "ไม่สามารถจองบูธได้อีกต่อไป" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "ลิงค์ไปยังรายการกิจกรรมในอนาคต" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "รายชื่อกิจกรรมในอนาคต" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "สถานที่" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "ประเภทเมนู" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "โทรศัพท์" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "กรุณากรอกแบบฟอร์มให้ถูกต้อง" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "ไม่เปิดลงทะเบียน" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "ขออภัย บูธขายหมดแล้ว" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "ไม่มีหมวดหมู่บูธอยู่" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "กิจกรรมนี้ยังไม่เปิดให้ลงทะเบียนผู้แสดงสินค้าในขณะนี้" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "เมนูเว็บไซต์อีเวนต์" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "หากคุณมีคำถามใด ๆ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "รายการอีเวนต์ในอนาคต" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..eac32ac --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Martin Trigaux, 2023 +# Halil, 2023 +# Murat Durmuş , 2023 +# Metin Akın , 2023 +# Ertuğrul Güreş , 2023 +# Murat Kaplan , 2023 +# Nadir Gazioglu , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Nadir Gazioglu , 2023\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Tükendi" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Standlarımı ayırtın" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Onaylandı" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"E-posta\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"İsim\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Stand Menü Öğesi" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Stand Kayıt" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Stand Kayıtları Tamamlandı!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Stand kaydı başarısız oldu." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Web Sitesindeki Standlar" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Kontak Ayrıntıları" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Bize Ulaşın" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Etkinlik" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Etkinlik Standı Menüleri" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Etkinlik Standları Menüleri" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Etkinlik Şablonu" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Sergi Haritası" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Bir Stand Edinin" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Konum" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Menü Türü" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Telefon" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Lütfen formu doğru doldurunuz." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Üzgünüz, tüm stantlar tükendi." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Stand kategorisi mevcut değil." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Web Sitesi Etkinlik Menüsü" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "herhangi bir sorun varmı." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "gelecekteki etkinliklerin listesi" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..2db955d --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,260 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Alina Lisnenko , 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Продано" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Забронювати мої стенди" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Підтверджено" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Email\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Ім'я\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Елемент меню стенду" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Реєстрація стенду" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Реєстрація стенду завершена!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "Реєстрація стенду не вдалася." + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Стенди на веб-сайті" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Деталі контактної особи" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Зв'яжіться з нами" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Подія" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Меню стенду події" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Меню стендів події" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Шаблон події" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Карта виставки" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Отримати стенд" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Розташування" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Тип меню" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Телефон" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Будь ласка, заповніть форму правильно." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Вибачте, усі стенди розпродані." + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "Категорія стенду не існує." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Меню події сайту" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "якщо у вас є будь-які запитання." + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "список майбутніх подій" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..bc53e42 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,257 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "Đã hết" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "Đặt gian hàng" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "Đã xác nhận" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Email\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"Tên\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "Mục menu gian hàng" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "Đăng ký gian hàng" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "Đăng ký gian hàng đã hoàn tất!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "Gian hàng trên website" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "Chi tiết liên hệ" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "Liên hệ với chúng tôi" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "Sự kiện" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "Menu gian hàng sự kiện" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "Menu gian hàng sự kiện" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "Event Template" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "Bản đồ triển lãm" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "Nhận gian hàng " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "Vị trí" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "Loại menu" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "Điện thoại" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "Vui lòng điền đơn chính xác. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "Xin lỗi, không còn gian hàng nào. " + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "Menu sự kiện website" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "nếu bạn có bất kỳ câu hỏi nào. " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "danh sách sự kiện sắp tới" diff --git a/i18n/website_event_booth.pot b/i18n/website_event_booth.pot new file mode 100644 index 0000000..04d7ba7 --- /dev/null +++ b/i18n/website_event_booth.pot @@ -0,0 +1,249 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 21:56+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..7746a36 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,266 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" +"\n" +" 很抱歉,有几个展位已经售罄。请更改您的选择后再重新验证。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr "查看平面图" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " 设置展位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "售罄" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "预订我的展位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "预订我的展位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" +"展位选择" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "已确认" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"Email\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"名称\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "展位菜单项" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "展位登记" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "展位注册完成!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "展位注册失败。" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "网站上的展位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "请看看我们的" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "选择展位类型" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "联系人细节" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" +"联系方式" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "联系我们" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "活动" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "活动展位菜单" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "活动展位菜单" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "活动已结束" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "活动模板" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "展览地图" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "获得展位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "现在已无法预订展位。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "未来活动列表链接" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "未来活动列表" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "位置" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "菜单类型" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "电话" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "请正确填写表格。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "未开放注册。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "对不起,所有的摊位都卖完了。" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "展位类别不存在。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "本次活动暂不接受参展商报名。" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "网站活动菜单" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "如果您有任何问题。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "将来活动列表" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..97ac39c --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,259 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_booth +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"\n" +" " +msgstr "" +"\n" +" " + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "" +"\n" +" Sorry, several booths are now sold out. Please change your choices before validating again." +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "View Plan" +msgstr " 查看平面圖" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid " Configure Booths" +msgstr " 設定展位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sold Out" +msgstr "售完" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Book my Booth(s)" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Book my Booths" +msgstr "預訂我的攤位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Booth Selection" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "Confirmed" +msgstr "已確認" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Email\n" +" *" +msgstr "" +"電子郵件\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "" +"Name\n" +" *" +msgstr "" +"姓名\n" +" *" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_type_view_form +msgid "Booth Menu Item" +msgstr "攤位清單項目" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu +msgid "Booth Register" +msgstr "攤位註冊" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/xml/event_booth_registration_templates.xml:0 +#, python-format +msgid "Booth Registration completed!" +msgstr "攤位註冊完成!" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Booth registration failed." +msgstr "展位註冊失敗。" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_type__booth_menu +msgid "Booths on Website" +msgstr "網站攤位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Check our" +msgstr "請看看我們的" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Choose your type of booth" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Contact Details" +msgstr "聯絡人詳情" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_order_progress +msgid "" +"Contact Details" +msgstr "" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Contact Us" +msgstr "聯絡我們" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_event +msgid "Event" +msgstr "活動" + +#. module: website_event_booth +#: model:ir.model.fields.selection,name:website_event_booth.selection__website_event_menu__menu_type__booth +msgid "Event Booth Menus" +msgstr "活動攤位清單" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__booth_menu_ids +msgid "Event Booths Menus" +msgstr "活動攤位清單" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Event Finished" +msgstr "活動完結" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_event_type +msgid "Event Template" +msgstr "活動模板" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_event_event__exhibition_map +msgid "Exhibition Map" +msgstr "展覽地圖" + +#. module: website_event_booth +#. odoo-python +#: code:addons/website_event_booth/models/event_event.py:0 +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +#, python-format +msgid "Get A Booth" +msgstr "預定攤位" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "It's no longer possible to book a booth." +msgstr "已不可再預訂展位。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Link to list of future events" +msgstr "未來活動列表連結" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "List of Future Events" +msgstr "未來活動列表" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Location" +msgstr "地點" + +#. module: website_event_booth +#: model:ir.model.fields,field_description:website_event_booth.field_website_event_menu__menu_type +msgid "Menu Type" +msgstr "選單類型" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration_details +msgid "Phone" +msgstr "電話" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "Please fill out the form correctly." +msgstr "請正確填寫表格。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "Registration Not Open." +msgstr "不接受報名" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "Sorry, all the booths are sold out." +msgstr "對不起,所有的攤位都賣完了。" + +#. module: website_event_booth +#. odoo-javascript +#: code:addons/website_event_booth/static/src/js/booth_register.js:0 +#, python-format +msgid "The booth category doesn't exist." +msgstr "沒有這個展位類別。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "This event is not open to exhibitors registration at this time." +msgstr "活動目前不開放給參展商報名。" + +#. module: website_event_booth +#: model:ir.model,name:website_event_booth.model_website_event_menu +msgid "Website Event Menu" +msgstr "網站活動功能表" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_registration +msgid "if you have any question." +msgstr "如果你有任何問題。" + +#. module: website_event_booth +#: model_terms:ir.ui.view,arch_db:website_event_booth.event_booth_layout +msgid "list of future events" +msgstr "未來活動列表" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..883289b --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import event_type +from . import event_event +from . import website_event_menu diff --git a/models/event_event.py b/models/event_event.py new file mode 100644 index 0000000..24d9b34 --- /dev/null +++ b/models/event_event.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, fields, models, _ +from odoo.addons.http_routing.models.ir_http import slug + + +class Event(models.Model): + _inherit = 'event.event' + + exhibition_map = fields.Image(string='Exhibition Map', max_width=1024, max_height=1024) + # frontend menu management + booth_menu = fields.Boolean( + string='Booth Register', compute='_compute_booth_menu', + readonly=False, store=True) + booth_menu_ids = fields.One2many( + 'website.event.menu', 'event_id', string='Event Booths Menus', + domain=[('menu_type', '=', 'booth')]) + + @api.depends('event_type_id', 'website_menu') + def _compute_booth_menu(self): + for event in self: + if event.event_type_id and event.event_type_id != event._origin.event_type_id: + event.booth_menu = event.event_type_id.booth_menu + elif event.website_menu and (event.website_menu != event._origin.website_menu or not event.booth_menu): + event.booth_menu = True + elif not event.website_menu: + event.booth_menu = False + + # ------------------------------------------------------------ + # WEBSITE MENU MANAGEMENT + # ------------------------------------------------------------ + + def toggle_booth_menu(self, val): + self.booth_menu = val + + def _get_menu_update_fields(self): + return super(Event, self)._get_menu_update_fields() + ['booth_menu'] + + def _update_website_menus(self, menus_update_by_field=None): + super(Event, self)._update_website_menus(menus_update_by_field=menus_update_by_field) + for event in self: + if event.menu_id and (not menus_update_by_field or event in menus_update_by_field.get('booth_menu')): + event._update_website_menu_entry('booth_menu', 'booth_menu_ids', 'booth') + + def _get_menu_type_field_matching(self): + res = super(Event, self)._get_menu_type_field_matching() + res['booth'] = 'booth_menu' + return res + + def _get_website_menu_entries(self): + self.ensure_one() + return super(Event, self)._get_website_menu_entries() + [ + (_('Get A Booth'), '/event/%s/booth' % slug(self), False, 90, 'booth') + ] diff --git a/models/event_type.py b/models/event_type.py new file mode 100644 index 0000000..6f7808d --- /dev/null +++ b/models/event_type.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, fields, models + + +class EventType(models.Model): + _inherit = 'event.type' + + booth_menu = fields.Boolean( + string='Booths on Website', compute='_compute_booth_menu', + readonly=False, store=True) + + @api.depends('website_menu') + def _compute_booth_menu(self): + for event_type in self: + event_type.booth_menu = event_type.website_menu diff --git a/models/website_event_menu.py b/models/website_event_menu.py new file mode 100644 index 0000000..384cdc7 --- /dev/null +++ b/models/website_event_menu.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class EventMenu(models.Model): + _inherit = "website.event.menu" + + menu_type = fields.Selection( + selection_add=[('booth', 'Event Booth Menus')], ondelete={'booth': 'cascade'}) diff --git a/security/event_booth_security.xml b/security/event_booth_security.xml new file mode 100644 index 0000000..c349835 --- /dev/null +++ b/security/event_booth_security.xml @@ -0,0 +1,15 @@ + + + + + Event Booth: public/portal: published read + + [('event_id.website_published', '=', True)] + + + + + + + + diff --git a/security/ir.model.access.csv b/security/ir.model.access.csv new file mode 100644 index 0000000..c0daaaf --- /dev/null +++ b/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_event_booth_public,event.booth.public,event_booth.model_event_booth,base.group_public,1,0,0,0 +access_event_booth_portal,event.booth.public,event_booth.model_event_booth,base.group_portal,1,0,0,0 +access_event_booth_employee,event.booth.public,event_booth.model_event_booth,base.group_user,1,0,0,0 +access_event_booth_category_public,event.booth.category.public,event_booth.model_event_booth_category,base.group_public,1,0,0,0 diff --git a/static/src/img/exhibition-map.gif b/static/src/img/exhibition-map.gif new file mode 100644 index 0000000000000000000000000000000000000000..ff618d99af20bd27322ebfb3a2ce21e6b77c5fa4 GIT binary patch literal 65375 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 input[type="checkbox"]': '_onChangeBooth', + 'click .o_wbooth_registration_submit': '_onSubmitBoothSelectionClick', + 'click .o_wbooth_registration_confirm': '_onConfirmRegistrationClick', + }, + + init() { + this._super(...arguments); + this.rpc = this.bindService("rpc"); + }, + + start() { + this.eventId = parseInt(this.el.dataset.eventId); + this.activeBoothCategoryId = false; + this.boothCache = {}; + this.boothsFirstRendering = true; + this.selectedBoothIds = []; + return this._super.apply(this, arguments).then(() => { + this.selectedBoothCategory = this.el.querySelector('input[name="booth_category_id"]:checked'); + if (this.selectedBoothCategory) { + this.selectedBoothIds = this.el.querySelector('.o_wbooth_booths').dataset.selectedBoothIds.split(',').map(Number); + this.activeBoothCategoryId = this.selectedBoothCategory.value; + this._fetchBoothsAndUpdateUI(); + } + }); + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + _check_booths_availability(eventBoothIds) { + const self = this; + return this.rpc("/event/booth/check_availability", { + event_booth_ids: eventBoothIds, + }).then(function (result) { + if (result.unavailable_booths.length) { + self.$('input[name="event_booth_ids"]').each(function (i, el) { + if (result.unavailable_booths.includes(parseInt(el.value))) { + $(el).closest('.form-check').addClass('text-danger'); + } + }); + self.$('.o_wbooth_unavailable_booth_alert').removeClass('d-none'); + return Promise.resolve(false); + } + return Promise.resolve(true); + }) + }, + + _countSelectedBooths() { + return this.$('.form-check > input[type="checkbox"]:checked').length; + }, + + _fillBooths() { + const boothsElem = this.el.querySelector('.o_wbooth_booths'); + boothsElem.replaceChildren(renderToFragment('event_booth_checkbox_list', { + 'event_booth_ids': this.boothCache[this.activeBoothCategoryId], + 'selected_booth_ids': this.boothsFirstRendering ? this.selectedBoothIds : [], + })); + + this.boothsFirstRendering = false; + }, + + /** + * Check if the confirmation form is valid by testing each of its inputs + * + * @private + * @param $form + * @return {boolean} - true if no errors else false + */ + _isConfirmationFormValid($form) { + const formErrors = []; + + $form.find('.form-control').each(function () { + let input = $(this); + input.removeClass('is-invalid'); + if (input.length && !input[0].checkValidity()) { + input.addClass('is-invalid'); + formErrors.push('invalidFormInputs'); + } + }); + + this._updateErrorDisplay(formErrors); + return formErrors.length === 0; + }, + + _showBoothCategoryDescription() { + this.$('.o_wbooth_booth_description').addClass('d-none'); + this.$('#o_wbooth_booth_description_' + this.activeBoothCategoryId).removeClass('d-none'); + }, + + /** + * Display the errors with a custom message when confirming + * the registration if there is any. + * + * @private + * @param errors + */ + _updateErrorDisplay(errors) { + this.$('.o_wbooth_registration_error_section').toggleClass('d-none', !errors.length); + + let errorMessages = []; + let $errorMessage = this.$('.o_wbooth_registration_error_message'); + + if (errors.includes('invalidFormInputs')) { + errorMessages.push(_t("Please fill out the form correctly.")); + } + + if (errors.includes('boothError')) { + errorMessages.push(_t("Booth registration failed.")); + } + + if (errors.includes('boothCategoryError')) { + errorMessages.push(_t("The booth category doesn't exist.")); + } + + $errorMessage.text(errorMessages.join(' ')).change(); + }, + + _updateUiAfterBoothCategoryChange() { + this._fillBooths(); + this._showBoothCategoryDescription(); + this._updateUiAfterBoothChange(this._countSelectedBooths()); + }, + + _updateUiAfterBoothChange(boothCount) { + let $button = this.$('button.o_wbooth_registration_submit'); + $button.attr('disabled', !boothCount); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + _onChangeBooth(ev) { + $(ev.currentTarget).closest('.form-check').removeClass('text-danger'); + this._updateUiAfterBoothChange(this._countSelectedBooths()); + }, + + _onChangeBoothType(ev) { + ev.preventDefault(); + this.activeBoothCategoryId = parseInt(ev.currentTarget.value); + this._fetchBoothsAndUpdateUI(); + }, + + /** + * Load all the booths related to the activeBoothCategoryId booth category and + * add them to a local dictionary to avoid making rpc each time the + * user change the booth category. + * + * Then the selection input will be filled with the fetched booth values. + * + * @private + */ + _fetchBoothsAndUpdateUI() { + if (this.boothCache[this.activeBoothCategoryId] === undefined) { + var self = this; + this.rpc('/event/booth_category/get_available_booths', { + event_id: this.eventId, + booth_category_id: this.activeBoothCategoryId, + }).then(function (result) { + self.boothCache[self.activeBoothCategoryId] = result; + self._updateUiAfterBoothCategoryChange(); + }); + } else { + this._updateUiAfterBoothCategoryChange(); + } + }, + + async _onSubmitBoothSelectionClick(ev) { + ev.preventDefault(); + let $form = this.$('.o_wbooth_registration_form'); + let event_booth_ids = this.$('input[name=event_booth_ids]:checked').map(function () { + return parseInt($(this).val()); + }).get(); + if (await this._check_booths_availability(event_booth_ids)) { + $form.submit(); + } + }, + + /** + * Submit the confirmation form if no errors are present after validation. + * + * If the submission succeed, we replace the form with a success message template. + * + * @param ev + * @return {Promise} + * @private + */ + async _onConfirmRegistrationClick(ev) { + ev.preventDefault(); + ev.stopPropagation(); + + $(ev.currentTarget).addClass('disabled').attr('disabled', 'disabled'); + + const $form = this.$('#o_wbooth_contact_details_form'); + if (this._isConfirmationFormValid($form)) { + const formData = new FormData($form[0]); + const response = await $.ajax({ + url: `/event/${encodeURIComponent(this.$el.data('eventId'))}/booth/confirm`, + data: formData, + processData: false, + contentType: false, + type: 'POST', + }); + + const jsonResponse = response && JSON.parse(response); + if (jsonResponse.success) { + this.el.querySelector('.o_wevent_booth_order_progress').remove(); + const boothCategoryId = this.el.querySelector('input[name=booth_category_id]').value; + $form.replaceWith(renderToElement('event_booth_registration_complete', { + 'booth_category_id': boothCategoryId, + 'event_id': this.eventId, + 'event_name': jsonResponse.event_name, + 'contact': jsonResponse.contact, + })); + } else if (jsonResponse.redirect) { + window.location.href = jsonResponse.redirect; + } else if (jsonResponse.error) { + this._updateErrorDisplay(jsonResponse.error); + } + } + + $(ev.currentTarget).removeClass('disabled').removeAttr('disabled'); + }, + +}); + +export default publicWidget.registry.boothRegistration; diff --git a/static/src/scss/website_event_booth.scss b/static/src/scss/website_event_booth.scss new file mode 100644 index 0000000..4a73af5 --- /dev/null +++ b/static/src/scss/website_event_booth.scss @@ -0,0 +1,84 @@ +label.o_wbooth_category_unavailable { + opacity: 0.5; + overflow: hidden; +} + +#o_wbooth_contact_details_form { + + .col-form-label { + width: 200px; + } + +} + +.o_wbooth_registration_form label { + + position: relative; + + & > input { + visibility: hidden; + position: absolute; + } + + & > input + div { + opacity: .4; + border: 3px solid $o-gray-600; + } + + &:not(.o_wbooth_category_unavailable) > input + div { + cursor: pointer; + } + + &:not(.o_wbooth_category_unavailable):hover > input + div { + opacity: .8; + } + + & > input:checked + div, + &:hover > input:checked + div { + opacity: 1; + } + + & img { + min-height: 250px; + } + +} + +.o_wbooth_booths .form-check{ + position: relative; + padding-left: 0; + + & > input { + visibility: hidden; + position: absolute; + } + & > input + label { + opacity: .4; + padding: 1rem; + border: 1px solid $o-gray-600; + } + + &:hover > input + label { + opacity: 1; + } + + & > input:checked + label, + &:hover > input:checked + label { + opacity: 1; + background-color: $o-gray-600; + color: $o-white; + } + +} + +.o_wevent_booth_category { + background-color: $o-wevent-bg-color-light; +} + +.o_wevent_booth_order_progress { + li { + &.o_current_stage { + font-weight: bold; + } + } +} diff --git a/static/src/xml/event_booth_registration_templates.xml b/static/src/xml/event_booth_registration_templates.xml new file mode 100644 index 0000000..21b1dc8 --- /dev/null +++ b/static/src/xml/event_booth_registration_templates.xml @@ -0,0 +1,37 @@ + + + +
+ +
+
+ + +
+
+
+

Booth Registration completed!

+
+
+
+
+ + + + + + + + + + + + + +
+
+
+ +
diff --git a/views/event_booth_registration_templates.xml b/views/event_booth_registration_templates.xml new file mode 100644 index 0000000..a6a80b3 --- /dev/null +++ b/views/event_booth_registration_templates.xml @@ -0,0 +1,61 @@ + + + + + + diff --git a/views/event_booth_templates.xml b/views/event_booth_templates.xml new file mode 100644 index 0000000..75a9b80 --- /dev/null +++ b/views/event_booth_templates.xml @@ -0,0 +1,137 @@ + + + + + + + + + + diff --git a/views/event_event_views.xml b/views/event_event_views.xml new file mode 100644 index 0000000..454ecea --- /dev/null +++ b/views/event_event_views.xml @@ -0,0 +1,19 @@ + + + + + event.event.view.form.inherit.website.event.booth + event.event + + + + + + + + + + diff --git a/views/event_type_views.xml b/views/event_type_views.xml new file mode 100644 index 0000000..14c02d2 --- /dev/null +++ b/views/event_type_views.xml @@ -0,0 +1,18 @@ + + + + + event.type.view.form.inherit.website.event.booth + event.type + + + + + + + + + +