From 7280c7470b204063e708106d07fd37199ae3741e Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:20:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 4 +++ __manifest__.py | 21 ++++++++++++++++ controllers/__init__.py | 4 +++ controllers/community.py | 19 ++++++++++++++ i18n/ar.po | 40 +++++++++++++++++++++++++++++ i18n/bg.po | 36 ++++++++++++++++++++++++++ i18n/ca.po | 40 +++++++++++++++++++++++++++++ i18n/cs.po | 41 ++++++++++++++++++++++++++++++ i18n/da.po | 40 +++++++++++++++++++++++++++++ i18n/de.po | 40 +++++++++++++++++++++++++++++ i18n/es.po | 40 +++++++++++++++++++++++++++++ i18n/es_419.po | 40 +++++++++++++++++++++++++++++ i18n/et.po | 41 ++++++++++++++++++++++++++++++ i18n/fa.po | 41 ++++++++++++++++++++++++++++++ i18n/fi.po | 41 ++++++++++++++++++++++++++++++ i18n/fr.po | 40 +++++++++++++++++++++++++++++ i18n/he.po | 41 ++++++++++++++++++++++++++++++ i18n/hu.po | 40 +++++++++++++++++++++++++++++ i18n/id.po | 40 +++++++++++++++++++++++++++++ i18n/it.po | 40 +++++++++++++++++++++++++++++ i18n/ja.po | 40 +++++++++++++++++++++++++++++ i18n/ko.po | 40 +++++++++++++++++++++++++++++ i18n/lt.po | 40 +++++++++++++++++++++++++++++ i18n/lv.po | 40 +++++++++++++++++++++++++++++ i18n/nl.po | 40 +++++++++++++++++++++++++++++ i18n/pl.po | 40 +++++++++++++++++++++++++++++ i18n/pt.po | 36 ++++++++++++++++++++++++++ i18n/pt_BR.po | 41 ++++++++++++++++++++++++++++++ i18n/ru.po | 41 ++++++++++++++++++++++++++++++ i18n/sk.po | 36 ++++++++++++++++++++++++++ i18n/sl.po | 40 +++++++++++++++++++++++++++++ i18n/sr.po | 40 +++++++++++++++++++++++++++++ i18n/sv.po | 40 +++++++++++++++++++++++++++++ i18n/th.po | 40 +++++++++++++++++++++++++++++ i18n/tr.po | 41 ++++++++++++++++++++++++++++++ i18n/uk.po | 40 +++++++++++++++++++++++++++++ i18n/vi.po | 41 ++++++++++++++++++++++++++++++ i18n/website_event_meet_quiz.pot | 36 ++++++++++++++++++++++++++ i18n/zh_CN.po | 40 +++++++++++++++++++++++++++++ i18n/zh_TW.po | 40 +++++++++++++++++++++++++++++ views/event_meet_templates.xml | 43 ++++++++++++++++++++++++++++++++ 41 files changed, 1524 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 controllers/__init__.py create mode 100644 controllers/community.py create mode 100644 i18n/ar.po create mode 100644 i18n/bg.po create mode 100644 i18n/ca.po create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/et.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fr.po create mode 100644 i18n/he.po create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ko.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sr.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/website_event_meet_quiz.pot create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 views/event_meet_templates.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..dd15b5c --- /dev/null +++ b/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..2dad299 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + + +{ + 'name': 'Quiz and Meet on community', + 'category': 'Marketing/Events', + 'sequence': 1007, + 'version': '1.0', + 'summary': 'Quiz and Meet on community route', + 'website': 'https://www.odoo.com/app/events', + 'depends': [ + 'website_event_meet', + 'website_event_track_quiz', + ], + 'data': [ + 'views/event_meet_templates.xml', + ], + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..677fb9d --- /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 community diff --git a/controllers/community.py b/controllers/community.py new file mode 100644 index 0000000..91b93ae --- /dev/null +++ b/controllers/community.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from werkzeug.exceptions import Forbidden + +from odoo.addons.website_event.controllers.community import EventCommunityController +from odoo.http import request, route + + +class WebsiteEventTrackQuizMeetController(EventCommunityController): + + @route() + def community(self, event, page=1, lang=None, **kwargs): + # website_event_track_quiz + values = self._get_community_leaderboard_render_values(event, kwargs.get('search'), page) + + # website_event_meet + values.update(self._event_meeting_rooms_get_values(event, lang=lang)) + return request.render('website_event_meet.event_meet', values) diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..bec9f94 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "لوحة الصدارة " + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "عرض الكل" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "أنت " + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..aad06a7 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +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" +"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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..4f4a3ce --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Taula de classificació" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Mostra-ho tot" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Tu" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..8e4355e --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Jiří Podhorecký, 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Výsledková tabulka" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Zobrazit vše" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Vy" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..513b357 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Leaderboard" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Vis alle" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Dig" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "erfaringspoint" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..6888113 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Rangliste" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Alle ansehen" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Sie" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..dfe309f --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Tablero de líderes" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Ver todos" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Usted" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..4570654 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Tabla de clasificación" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Ver todo" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Usted" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..c77b0ae --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Eneli Õigus , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Edetabel" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Vaata kõiki" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Teie" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..073934b --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Hanna Kheradroosta, 2023 +# Mostafa Barmshory , 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: Mostafa Barmshory , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "تابلوی امتیازات" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "امتیاز" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..9fc2e63 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Ossi Mantylahti , 2023 +# Miika Nissi , 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: Miika Nissi , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Tulostaulu" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Näytä kaikki" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Sinä" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..298e89e --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Classement" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Voir tout" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Vous " + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..7a98092 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Lilach Gilliam , 2023 +# ZVI BLONDER , 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: ZVI BLONDER , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "לוח תוצאות" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "צפה בהכל" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "את.ה" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..392f3cf --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# sixsix six, 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: sixsix six, 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Ranglista" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Mind megtekintése" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..21b67a5 --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Leaderboard" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Lihat semua" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Anda" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..4f14629 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Classifica" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Visualizza tutti" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Tu" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "pe" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..ed86f61 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "リーダーボード" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "すべてを見る" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "お客様" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..776748e --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "점수획득판" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "모두 보기" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "귀하" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..337436e --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Ramunė ViaLaurea , 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: Ramunė ViaLaurea , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Lyderių sąrašas" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..66f598f --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Anzelika Adejanova, 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: Anzelika Adejanova, 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Uzvarētāju saraksts" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..5508dd5 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Scorebord" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Alles weergeven" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Jij" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..bb99f39 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Tablica Wyników" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Wyświetl wszystko" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Ty" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..3fcf134 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +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" +"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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..e03ecb1 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Placar de líderes" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Visualizar tudo" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Você" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "XP" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..bf26302 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Таблица лидеров" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Посмотреть все" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Вы" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..489efa7 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +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" +"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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..175f25a --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Tomaž Jug , 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: Tomaž Jug , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..839b03a --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Dragan Vukosavljevic , 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: Dragan Vukosavljevic , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Rang lista" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Pogledaj sve" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Ti" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..0390758 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Anders Wallenquist , 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: Anders Wallenquist , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Resultattavla" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Visa alla" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..782af5a --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "กระดานผู้นำ" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "ดูทั้งหมด" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "คุณ" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..b970067 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Ertuğrul Güreş , 2023 +# Murat Durmuş , 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: Murat Durmuş , 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Liderler Sıralaması" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Hepsini gör" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Siz" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..6debee8 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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: 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Таблиця лідерів" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Переглянути все" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Ви" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..5fe8ce0 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# Translators: +# Wil Odoo, 2023 +# Thi Huong Nguyen, 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: Thi Huong Nguyen, 2023\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "Bảng xếp hạng" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "Xem tất cả" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "Bạn" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "xp" diff --git a/i18n/website_event_meet_quiz.pot b/i18n/website_event_meet_quiz.pot new file mode 100644 index 0000000..934e0e3 --- /dev/null +++ b/i18n/website_event_meet_quiz.pot @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..91f0a50 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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 (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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "排行榜" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "查看全部" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "您" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "经验值" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..e4a815a --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_event_meet_quiz +# +# 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_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "Leaderboard" +msgstr "排行榜" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.community_leaderboard_small +msgid "View all" +msgstr "查看全部" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "You" +msgstr "你" + +#. module: website_event_meet_quiz +#: model_terms:ir.ui.view,arch_db:website_event_meet_quiz.visitor_quiz_points_card +msgid "xp" +msgstr "經驗值" diff --git a/views/event_meet_templates.xml b/views/event_meet_templates.xml new file mode 100644 index 0000000..beb9536 --- /dev/null +++ b/views/event_meet_templates.xml @@ -0,0 +1,43 @@ + + + + + + + + +