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 0000000..ff618d9 Binary files /dev/null and b/static/src/img/exhibition-map.gif differ diff --git a/static/src/js/booth_register.js b/static/src/js/booth_register.js new file mode 100644 index 0000000..7d29e40 --- /dev/null +++ b/static/src/js/booth_register.js @@ -0,0 +1,238 @@ +/** @odoo-module **/ + +import { renderToElement, renderToFragment } from "@web/core/utils/render"; +import publicWidget from "@web/legacy/js/public/public_widget"; +import { _t } from "@web/core/l10n/translation"; + +publicWidget.registry.boothRegistration = publicWidget.Widget.extend({ + selector: '.o_wbooth_registration', + events: { + 'change input[name="booth_category_id"]': '_onChangeBoothType', + 'change .form-check > 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 + + + + + + + + + +