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..9cec55d --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + + +{ + "name": "Website Jitsi", + 'category': 'Hidden', + 'version': '1.0', + "summary": "Create Jitsi room on website.", + 'website': 'https://www.odoo.com/app/events', + "description": "Create Jitsi room on website.", + "depends": [ + "website" + ], + "data": [ + 'views/chat_room_templates.xml', + 'views/chat_room_views.xml', + 'security/ir.model.access.csv', + ], + 'assets': { + 'web.assets_frontend': [ + 'website_jitsi/static/src/css/chat_room.css', + 'website_jitsi/static/src/js/chat_room.js', + 'website_jitsi/static/src/xml/chat_room_modal.xml', + ], + }, + 'license': 'LGPL-3', +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..5d4b25d --- /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 main diff --git a/controllers/main.py b/controllers/main.py new file mode 100644 index 0000000..b7c91ea --- /dev/null +++ b/controllers/main.py @@ -0,0 +1,59 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from werkzeug.exceptions import NotFound + +from odoo import http +from odoo.http import request + + +class WebsiteJitsiController(http.Controller): + + @http.route(["/jitsi/update_status"], type="json", auth="public") + def jitsi_update_status(self, room_name, participant_count, joined): + """ Update room status: participant count, max reached + + Use the SQL keywords "FOR UPDATE SKIP LOCKED" in order to skip if the row + is locked (instead of raising an exception, wait for a moment and retry). + This endpoint may be called multiple times and we don't care having small + errors in participant count compared to performance issues. + + :raise ValueError: wrong participant count + :raise NotFound: wrong room name + """ + if participant_count < 0: + raise ValueError() + + chat_room = self._chat_room_exists(room_name) + if not chat_room: + raise NotFound() + + request.env.cr.execute( + """ + WITH req AS ( + SELECT id + FROM chat_room + -- Can not update the chat room if we do not have its name + WHERE name = %s + FOR UPDATE SKIP LOCKED + ) + UPDATE chat_room AS wcr + SET participant_count = %s, + last_activity = NOW(), + max_participant_reached = GREATEST(max_participant_reached, %s) + FROM req + WHERE wcr.id = req.id; + """, + [room_name, participant_count, participant_count] + ) + + @http.route(["/jitsi/is_full"], type="json", auth="public") + def jitsi_is_full(self, room_name): + return self._chat_room_exists(room_name).is_full + + # ------------------------------------------------------------ + # TOOLS + # ------------------------------------------------------------ + + def _chat_room_exists(self, room_name): + return request.env["chat.room"].sudo().search([("name", "=", room_name)], limit=1) diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..cb508f0 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "غرفة الدردشة " + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "مجموعة مخصصات غرفة الدردشة " + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "غرف الدردشة " + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "إغلاق" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "اسم العرض " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "كامل" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "المُعرف" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "نطاق خادم Jitsi " + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "الانضمام إلى الغرفة " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "اللغة" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "آخر نشاط " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "آخر نشاط " + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "جاري تحميل غرفتك... " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "السعة القصوى " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "تم الوصول إلى الحد الأقصى لعدد المشاركين " + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "تم الوصول إلى الحد الأقصى لعدد المشاركين في الغرفة في الوقت ذاته " + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "بلا حد " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "عدد المشاركين " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "ذروة المشاركين " + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "إعداد التقارير " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "الغرفة ممتلئة " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "اسم الغرفة " + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"يمكن تخصيص نطاق خادم Jitsi من خلال الإعدادات لاستخدام خادم آخر غير الافتراضي" +" \"meet.jit.si\" " diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..76d9c3b --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,190 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Kaloyan Naumov , 2023 +# aleksandar ivanov, 2023 +# Ивайло Малинов , 2023 +# KeyVillage, 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Затвори" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Език" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Последна активност" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Последно актуализирано от" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Последно актуализирано на" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Отчитане" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..b9fb131 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,193 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Óscar Fonseca , 2023 +# eriiikgt, 2023 +# RGB Consulting , 2023 +# Martin Trigaux, 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Sala de xat" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Mescla de sales de xat" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Sales de xat" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Tancar" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Complet" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Domini del servidor Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Uneix-te a la sala" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Idioma" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Última activitat" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Darrera activitat" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Carregant la teva habitació..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Capacitat màxima" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "S'ha assolit el màxim de participants" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Nombre màxim de participants assolits a la sala al mateix temps" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Sense límit" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Nombre de participants" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Participants màxims" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Informes" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "La Sala esta plena" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Nom de la sala" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"El domini del servidor Jitsi es pot personalitzar a través de la " +"configuració per utilitzar un servidor diferent del predeterminat " +"«meet.jit.si»" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..0e3de3b --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,192 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# karolína schusterová , 2023 +# Ivana Bartonkova, 2023 +# Jakub Smolka, 2023 +# Wil Odoo, 2023 +# Jiří Podhorecký, 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: Jiří Podhorecký, 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Chatovací místnost" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Mixin chatovací místnosti" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Chatovací místnosti" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Zavřít" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Vytvořeno uživatelem" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Vytvořeno dne" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Zobrazovací název" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Úplný" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Doména serveru Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Vstoupit do místnosti" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Jazyk" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Poslední aktivita" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Naposledy upraveno uživatelem" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Naposledy upraveno dne" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Poslední aktivita" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Načítání vaší místnosti..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Maximální kapacita" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Dosaženo maxima účastníků" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Maximální počet účastníků přítomných současně v místnosti" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Bez omezení" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Počet účastníků" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Nejvíce účastníků" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Výkazy" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Místnost je plná" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Název místnosti" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Doménu serveru Jitsi lze upravit pomocí nastavení tak, aby používal jiný " +"server než výchozí „meet.jit.si“" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..a989254 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Chat rum" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Chatrum Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Chatrum" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Luk" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Fuld" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi Server Domæne" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Deltag i rummet" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Sprog" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Sidste aktivitet" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Sidste aktivitet" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Indlæser dit rum..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Maks kapacitet" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Maks antal deltagere nået" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Maksimum antal deltagere i rummet på samme tid nået" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Ingen grænse" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Antal deltagere" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Højeste antal deltagere" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Rapportering" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Rummet Er Fyldt" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Rum Navn" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Jitsi server domænet kan tilpasses til at brug en anden server end den " +"standard \"meet.jit.si\" server via indstillingerne" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..83065b4 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,189 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Chatraum" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Chatraum-Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Chaträume" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Schließen" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Voll" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi-Serverdomain" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Dem Raum beitreten" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Sprache" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Letzte Aktivität" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Letzte Aktivität" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Ihr Raum wird geladen ..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Maximale Kapazität" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Maximale Teilnehmerzahl erreicht" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" +"Maximale Anzahl von Teilnehmern, die sich gleichzeitig im Raum befinden" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Kein Limit" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Anzahl Teilnehmer" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Maximale Teilnehmerzahl." + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Berichtswesen" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Raum ist voll" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Raumname" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Die Jitsi-Server-Domain kann über die Einstellungen angepasst werden, um " +"einen anderen Server als den Standard „meet.jit.si“ zu verwenden." diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..ad76a1a --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,189 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Sala de chat" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Sala de chat Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Salas de chat" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Completo" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Dominio del servidor Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Únete a la sala" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Idioma" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Última actividad" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Última actividad" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Cargando tu sala ..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Máxima capacidad" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Participantes máximo alcanzado" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Número máximo de participantes alcanzado en la sala al mismo tiempo" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Sin límite" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Recuento de participantes" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Participantes pico" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Informes" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Sala llena" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Nombre de la Sala" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"El dominio del servidor Jitsi se puede personalizar a través de la " +"configuración para usar un servidor diferente al predeterminado " +"\"meet.jit.si\"" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..7a090c9 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,189 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Sala de chat" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Sala de chat Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Salas de chat" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Completo" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Dominio del servidor Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Únase a la sala" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Idioma" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Última actividad" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Última actividad" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Cargando sala..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Máxima capacidad" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Número máximo de participantes alcanzado" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Número máximo de participantes alcanzado en la sala al mismo tiempo" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Sin límite" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Número de participantes" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Asistencia máxima" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Reportes" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Sala llena" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Nombre de la sala" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"El dominio del servidor Jitsi se puede personalizar a través de la " +"configuración para usar un servidor diferente al predeterminado " +"\"meet.jit.si\"" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..f51dfb3 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,194 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Rivo Zängov , 2023 +# Piia Paurson , 2023 +# Martin Trigaux, 2023 +# Leaanika Randmets, 2023 +# Triine Aavik , 2023 +# JanaAvalah, 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Jututuba" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Jututuba Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Jututoad" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Sulge" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Loodud (kelle poolt?)" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Kuvatav nimi" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Täis" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi serveri domeen" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Liitu jututoaga" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Keel" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Viimane tegevus" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Viimane tegevus" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Jututoa laadimine.. " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Maksimaalne mahutavus" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Maksimaalne osalejate arv on saavutatud" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Jututoas on saavutatud maksimaalne osalejate arv" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Piirangud puuduvad" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Osalejate arv" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Maksimum osalejad" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Aruandlus" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Jututuba on täis" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Jututoa nimi" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Jitsi serveri domeeni saab seadete kaudu muuta nii, et saaks kasutada muud " +"serverit kui vaikimisi määratud \"meet.jit.si\". " diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..69d06e9 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,191 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Martin Trigaux, 2023 +# Hamed Mohammadi , 2023 +# Hamid Darabi, 2023 +# F Hariri , 2023 +# Yousef Shadmanesh , 2023 +# Hanna Kheradroosta, 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: Hanna Kheradroosta, 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "بستن" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "ایجادشده در" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "نام نمایش داده شده" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "کامل" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "شناسه" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "زبان" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "آخرین فعالیت" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "آخرین بروز رسانی توسط" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "آخرین بروز رسانی در" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "گزارش" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..dba5aeb --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,192 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Veikko Väätäjä , 2023 +# Jarmo Kortetjärvi , 2023 +# Kari Lindgren , 2023 +# Tuomo Aura , 2023 +# Ossi Mantylahti , 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: Ossi Mantylahti , 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Keskusteluhuone" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Yhdistetty keskusteluhuone" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Keskusteluhuoneet" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Sulje" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Täysi" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi-palvelimen verkkotunnus" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Liity keskusteluhuoneeseen" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Kieli" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Viimeisin tapahtuma" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Viimeisin toiminta" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Lataa..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Enimmäiskapasiteetti" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Suurin sallittu osallistujamäärä saavutettu" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Huoneessa samanaikaisesti olevien osallistujien suurin sallittu määrä" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Ei rajoituksia" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Osallistujien määrä" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Suurin määrä osallistujia yhtenä hetkenä" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Raportointi" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Huone on täynnä" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Huoneen nimi" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Jitsi-palvelimen verkkotunnusta voidaan muokata asetuksissa. Oletusarvo on " +"\"meet.jit.si\"" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..4453f80 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Salle de discussion" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Salle de discussion Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Salles de discussion" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Fermer" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nom d'affichage" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Complet" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Domaine du serveur Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Rejoindre une salle" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Langue" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Dernière activité" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Mis à jour par" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Mis à jour le" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Dernière activité" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Chargement de votre salles..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Capacité maximale" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Nombre maximum de participants atteint" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Nombre maximum de participants atteint dans la salle en même temps" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Aucun limite" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Nombre de participants" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Pic de participants" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Analyse" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "La salle est complète" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Nom de la salle" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Le domaine du serveur Jitsi peut être personnalisé via les paramètres pour " +"utiliser un serveur différent de celui par défaut \"meet.jit.si\"" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..4961f7f --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,190 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Yihya Hugirat , 2023 +# Martin Trigaux, 2023 +# ZVI BLONDER , 2023 +# Adi Sharashov , 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "חדר צ'אט" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "סגור" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "נוצר על-ידי" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "שם לתצוגה" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "מלא" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "מזהה" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "שפה" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "פעילות אחרונה" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על-ידי" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "עדכון אחרון ב" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "דו\"חות" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "החדר מלא" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "שם החדר" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..fa5325d --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,193 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Gergő Kertész , 2023 +# Istvan , 2023 +# Ákos Nagy , 2023 +# Kovács Tibor , 2023 +# krnkris, 2023 +# gezza , 2023 +# Tamás Németh , 2023 +# Tamás Dombos, 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 Dombos, 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Bezárás" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Létrehozta" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Megjelenített név" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Teljes" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "Azonosító" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Nyelv" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Utolsó tevékenység" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Frissítette" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Frissítve" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Nincs korlátozás" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Elszámolás" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..d015f1f --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Chat Room" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Chat Room Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Chat Room" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Tutup" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Penuh" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Domain Server Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Masuki ruangan" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Bahasa" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Aktivitas Terakhir" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Terakhir Diperbarui oleh" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Terakhir Diperbarui pada" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Aktivitas terakhir" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Memuat ruangan Anda..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Kapasitas maksimal" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Jumlah maksimum peserta terpenuhi" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Jumlah maksimum peserta telah dipenuhi di ruangan pada saat yang sama" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Tanpa batas" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Jumlah peserta" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Puncak jumlah peserta" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Laporan" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Ruangan Penuh" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Nama Ruangan" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Domain server Jitsi dapat dikustomisasi melalui pengaturan untuk menggunakan" +" server yang berbeda dari server default \"meet.jit.si\"" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..970d9c6 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Stanza chat" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Mixin stanze chat" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Stanze chat" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Chiudi" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Data creazione" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Intera" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Dominio server Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Partecipa alla chat room" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Lingua" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Ultima attività" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Ultima attività" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Caricamento stanza..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Capienza massima" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Numero massimo di partecipanti raggiunto" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Numero massimo di partecipanti contemporanei raggiunto nella stanza" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Nessun limite" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Numero partecipanti" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Partecipanti massimi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Rendiconto" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "La stanza è piena" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Nome stanza" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Il dominio del server Jitsi può essere personalizzato nelle impostazioni " +"usandone uno diverso da quello predefinito \"meet.jit.si\"" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..2efa040 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "チャットルーム" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "チャットルームMixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "チャットルーム" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "閉じる" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "作成日" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "フル" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsiサーバードメイン" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "ルームに参加" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "言語" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "最後のアクティビティ" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "最後の活動" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "ルームをロード中…" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "最大数" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "最大参加者数" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "ルームに同時に参加した最大人数" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "制限なし" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "参加者数" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "ピーク参加者" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "レポーティング" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "ルームは満室です" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "ルーム名" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "Jitsiサーバドメインは、設定でカスタマイズして、デフォルトの \"meet.jit.si \"とは異なるサーバを使用できます。" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..825fcd5 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,187 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "채팅방" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "채팅방 혼합" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "채팅방" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "닫기" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "작성일자" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "표시명" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "채우기" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi 서버 도메인" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "방에 참여하기" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "사용 언어" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "최근 활동" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "최근 갱신 일자" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "최근 활동" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "채팅방 로딩 중..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "최대 인원" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "최대 인원수에 도달했습니다" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "동시에 방에 참여할 수 있는 최대 인원 수" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "제한 없음" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "참가자 수" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "최대 참가자 수" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "보고" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "방이 가득 찼습니다" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "방 이름" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"설정에서 Jitsi 서버 도메인을 사용자 지정으로 변경하면 기본 \"meet.jit.si\"가 아닌 다른 서버를 사용할 수 있습니다." diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..49d2d5a --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,193 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# digitouch UAB , 2023 +# Jonas Zinkevicius , 2023 +# Arminas Grigonis , 2023 +# Arunas V. , 2023 +# Linas Versada , 2023 +# UAB "Draugiški sprendimai" , 2023 +# Martin Trigaux, 2023 +# Audrius Palenskis , 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: Audrius Palenskis , 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Uždaryti" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Pilnas" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Kalba" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Ataskaitos" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..804cc4c --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,189 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# JanisJanis , 2023 +# Armīns Jeltajevs , 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Aizvērt" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Valoda" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Pēdējā aktivitāte" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Pēdējoreiz atjaunināja" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Pēdējoreiz atjaunināts" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Bez ierobežojuma" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Atskaites" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..729cc5b --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Chat room" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Chatroom Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Chatrooms" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Afsluiten" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Vol" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi server domein" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "De room vergezellen" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Taal" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Laatste activiteit" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Laatste Activiteit" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Je room laden..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "maximum capaciteit" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Maximaal aantal deelnemers bereikt." + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Maximaal aantal deelnemers tegelijk in de ruimte bereikt" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Geen beperking" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Aantal deelnemers" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Piekdeelnemers" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Rapportages" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Ruimte is vol" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Ruimtenaam" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Het Jitsi-serverdomein kan worden aangepast via de instellingen om een " +"andere server te gebruiken dan de standaard \"meet.jit.si\"." diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..850fa39 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Pokój czatu" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Mieszany Pokój czatowy" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Pokoje czatowe" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Zamknij" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Utworzył(a)" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Data utworzenia" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Pełny" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Domena Serwera Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Dołącz do pokoju" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Język" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Ostatnia aktywność" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Ostatnia aktywność" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Ładujemy twój pokój..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Maksymalna pojemność" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Liczba uczestników osiągnięta" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Maksymalna liczba uczestników w pokoju osiągnięta w tym samym czasie" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Brak limitu" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Licznik uczestników" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Najwięcej uczestników" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Raportowanie" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Pokój jest pełny" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Nazwa pokoju" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Serwer demeny Jitsi może być modyfikowany poprzez ustawienia aby używać " +"serwera innego niż domyślny \"meet.jit.si\"" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..6181a2d --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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: 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Idioma" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Relatórios" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..63d9afe --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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: 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Sala de chat" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Mixin da sala de chat" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Salas de chat" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Cheia" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Domínio do servidor jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Entrar na sala" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Idioma" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Última atividade" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Última atividade" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Carregando sua sala..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Capacidade máxima" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Máximo de participantes alcançado" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Número máximo de participantes na sala ao mesmo tempo alcançado" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Sem limite" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Contagem de participantes" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Pico de participantes" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Relatórios" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "A sala está cheia" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Nome da sala" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"O domínio do servidor Jitsi pode ser personalizado nas definições para usar " +"um servidor diferente do padrão “meet.jit.si”" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..87b2b2d --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,194 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Irina Fedulova , 2023 +# Alena Vlasova, 2023 +# Сергей Шебанин , 2023 +# Sergey Vilizhanin, 2023 +# Martin Trigaux, 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Чат-комната" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Миксин чата" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Чат-комната" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Закрыть" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Создано" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Полный" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Домен сервера Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Присоединяйтесь к комнате" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Язык" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Последняя активность" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Последнее обновление" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Последнее обновление" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Последняя активность" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Загрузка номера..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Максимальная вместимость" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Максимальное количество участников" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" +"Максимальное количество участников, находящихся в комнате одновременно" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Безлимитный" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Количество участников" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Участники пика" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Отчет" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Комната заполнена" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Название номера" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Домен сервера Jitsi может быть изменен через настройки, чтобы использовать " +"другой сервер, а не стандартный \"meet.jit.si\"" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..1e85168 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvoriť" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Plné" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Jazyk" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Posledná aktivita" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Prehľady" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..d9d7820 --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,192 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Tadej Lupšina , 2023 +# Tomaž Jug , 2023 +# matjaz k , 2023 +# Martin Trigaux, 2023 +# Jasmina Macur , 2023 +# laznikd , 2023 +# Matjaz Mozetic , 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: Matjaz Mozetic , 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Zaključi" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Polno" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Jezik" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Zadnja aktivnost" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Poročanje" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..ee9b040 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,191 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Milan Bojovic , 2023 +# Martin Trigaux, 2023 +# Dragan Vukosavljevic , 2023 +# コフスタジオ, 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: コフスタジオ, 2024\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Chat \"soba\"" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Chat Room Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Chat Rooms" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Puno" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi Server Domain" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Join the room" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Jezik" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Last Activity" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Poslednji put ažurirao" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Poslednji put ažurirano" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Poslednja aktivnost" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Loading your room..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Max kapacitet" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Max participant reached" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Dostignut je maksimum broja istovremenih učesnika u \"sobi\"" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "No limit" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Brojač učesnika" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Glavni učesnici" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Izveštavanje" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "\"Soba\" je popunjena" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Naziv \"sobe\"" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Domen Jitsi servera se može prilagoditi kroz podešavanja da bi se koristio " +"server koji nije podrazumevani „meet.jit.si“" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..88f1232 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,193 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Kim Asplund , 2023 +# Robin Calvin, 2023 +# Anders Wallenquist , 2023 +# Martin Trigaux, 2023 +# Jakob Krabbe , 2023 +# Lasse L, 2023 +# Kristoffer Grundström , 2023 +# Simon S, 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: Simon S, 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Chattrum" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Stäng" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Full" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Språk" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad den" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Maximal kapacitet" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Ingen begränsning" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Antal deltagare" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Rapportering" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Rummets namn" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..8cab757 --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,189 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "ห้องแชท" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "ห้องแชท Mixin" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "ห้องแชท" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "ปิด" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "แสดงชื่อ" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "เต็ม" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ไอดี" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "โดเมนเซิร์ฟเวอร์ Jitsi " + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "เข้าร่วมห้อง" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "ภาษา" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "กิจกรรมล่าสุด" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "อัปเดตครั้งล่าสุดโดย" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "อัปเดตครั้งล่าสุดเมื่อ" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "กิจกรรมล่าสุด" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "กำลังโหลดห้องของคุณ..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "ความจุสูงสุด" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "ถึงจำนวนผู้เข้าร่วมสูงสุดแล้ว" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "ถึงจำนวนสูงสุดของผู้เข้าร่วมห้องในช่วงเวลาเดียวกัน" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "ไม่มีขีดจำกัด" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "จำนวนผู้เข้าร่วม" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "ผู้เข้าร่วมสูงสุด" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "การรายงาน" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "ห้องเต็ม" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "ชื่อห้อง" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"โดเมนเซิร์ฟเวอร์ Jitsi " +"สามารถกำหนดเองได้ผ่านการตั้งค่าเพื่อใช้เซิร์ฟเวอร์อื่นที่ไม่ใช่ " +"\"meet.jit.si\" ที่เป็นค่าเริ่มต้น" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..6509c85 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,194 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# Translators: +# Ayhan KIZILTAN , 2023 +# Levent Karakaş , 2023 +# Murat Durmuş , 2023 +# Ediz Duman , 2023 +# Murat Kaplan , 2023 +# abc Def , 2023 +# Ertuğrul Güreş , 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: Ertuğrul Güreş , 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Sohbet Odası" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Sohbet Odası Karışımı" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Birebir Görüşme" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Kapat" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Tam" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi Server Etki Alanı" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Odaya katılın" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Dil" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Son Aktivite" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Son aktivite" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Odanız yükleniyor..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Azami kapasite" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Maksimum katılımcıya ulaşıldı" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Aynı anda odada ulaşılan maksimum katılımcı sayısı" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Limit yok" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Katılımcı sayısı" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Zirve katılımcıları" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Raporlama" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Oda Dolu" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Oda Adı" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Jitsi sunucu etki alanı, varsayılan \"meet.jit.si\"den farklı bir sunucu " +"kullanmak için ayarlar aracılığıyla özelleştirilebilir." diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..4159c43 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Чат-кімната" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Mixin чат-кімнати" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Чат-кімнати" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Закрити" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Створено" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Повністю" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Домен серверу Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Відвідайте кімнату" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Мова" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Остання дія" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Остання дія" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Завантажте вашу кімнату..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Максимум охоплення" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Макс. кількість учасників" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Максимальна кількість учансиків в один і той же час" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Необмежено" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Підрахунок учасників" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Пік кількості учасників" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Звітність" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Кімната заповнена" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Назва кімнати" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Домен серверу Jitsi можна налаштувати в налаштуваннях для використання " +"різних серверів на відміну від типового \"meet.jit.si\"" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..98cfcca --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,188 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "Phòng chat" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "Mixin phòng chat" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "Phòng chat" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "Đóng" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "Đầy đủ" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Tên miền máy chủ Jitsi" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "Tham gia phòng" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "Ngôn ngữ" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "Hoạt động cuối" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "Hoạt động cuối cùng" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "Đang tải phòng..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "Số lượng tối đa" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "Đã đạt số lượng tối đa" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "Cùng lúc đã đạt số lượng tối đa người tham dự trong phòng" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "Không giới hạn" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "Số người tham dự " + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "Số người tham dự tối đa " + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "Báo cáo" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "Phòng đã đủ chỗ" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "Tên phòng" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" +"Tên miền máy chủ Jitsi có thể tùy chỉnh qua cài đặt để sử dụng máy chủ khác " +"với máy chủ mặc định \"meet.jit.si\"" diff --git a/i18n/website_jitsi.pot b/i18n/website_jitsi.pot new file mode 100644 index 0000000..b6aace3 --- /dev/null +++ b/i18n/website_jitsi.pot @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..29bd8db --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "聊天室" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "混合聊天室" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "聊天室" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "关闭" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "创建人" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "创建日期" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "全" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "ID" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi Server 域名" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "加入房间" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "语言" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "上个活动" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "最后更新人" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "上次活动" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "正在加载您的房间..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "最大能力" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "已达到最大参与者" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "房间内同时达到的最大参与者人数" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "没有限制" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "参加人数" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "高峰参与者" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "报告" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "房间满了" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "房间名称" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "可以通过设置自定义 Jitsi 服务器域以使用与默认“meet.jit.si”不同的服务器" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..7edb3d5 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_jitsi +# +# 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_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__12 +msgid "12" +msgstr "12" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__16 +msgid "16" +msgstr "16" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__20 +msgid "20" +msgstr "20" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__chat_room_id +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_search +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_tree +msgid "Chat Room" +msgstr "聊天室" + +#. module: website_jitsi +#: model:ir.model,name:website_jitsi.model_chat_room_mixin +msgid "Chat Room Mixin" +msgstr "聊天室混入" + +#. module: website_jitsi +#: model:ir.actions.act_window,name:website_jitsi.chat_room_action +#: model:ir.ui.menu,name:website_jitsi.chat_room_menu +msgid "Chat Rooms" +msgstr "聊天室" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Close" +msgstr "關閉" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_uid +msgid "Created by" +msgstr "建立人員" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__create_date +msgid "Created on" +msgstr "建立於" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__is_full +msgid "Full" +msgstr "填滿" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__id +msgid "ID" +msgstr "識別號" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__jitsi_server_domain +msgid "Jitsi Server Domain" +msgstr "Jitsi 伺服器域。" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_join_button +msgid "Join the room" +msgstr "加入聊天室" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__lang_id +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_lang_id +msgid "Language" +msgstr "語言" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__last_activity +msgid "Last Activity" +msgstr "最後有效" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_uid +msgid "Last Updated by" +msgstr "最後更新者" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_last_activity +msgid "Last activity" +msgstr "上一次活動" + +#. module: website_jitsi +#. odoo-javascript +#: code:addons/website_jitsi/static/src/xml/chat_room_modal.xml:0 +#, python-format +msgid "Loading your room..." +msgstr "載入房間中..." + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_capacity +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_capacity +msgid "Max capacity" +msgstr "最大容量" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__max_participant_reached +msgid "Max participant reached" +msgstr "達到的最大參與者" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__max_participant_reached +#: model:ir.model.fields,help:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Maximum number of participant reached in the room at the same time" +msgstr "同時到達聊天室的最大參與者數。" + +#. module: website_jitsi +#: model:ir.model.fields.selection,name:website_jitsi.selection__chat_room__max_capacity__no_limit +msgid "No limit" +msgstr "沒有限制" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__participant_count +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_participant_count +msgid "Participant count" +msgstr "參與者計數" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_max_participant_reached +msgid "Peak participants" +msgstr "峰值參與者" + +#. module: website_jitsi +#: model_terms:ir.ui.view,arch_db:website_jitsi.chat_room_view_form +msgid "Reporting" +msgstr "報告" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_is_full +msgid "Room Is Full" +msgstr "聊天室已滿" + +#. module: website_jitsi +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room__name +#: model:ir.model.fields,field_description:website_jitsi.field_chat_room_mixin__room_name +msgid "Room Name" +msgstr "房間名稱" + +#. module: website_jitsi +#: model:ir.model.fields,help:website_jitsi.field_chat_room__jitsi_server_domain +msgid "" +"The Jitsi server domain can be customized through the settings to use a " +"different server than the default \"meet.jit.si\"" +msgstr "Jitsi 伺服器域可以通過設置進行自定義,以使用與預設\"meet.jit.si\"不同的伺服器。" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..222bc1d --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import chat_room +from . import chat_room_mixin diff --git a/models/chat_room.py b/models/chat_room.py new file mode 100644 index 0000000..1f7383b --- /dev/null +++ b/models/chat_room.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from uuid import uuid4 + +from odoo import api, fields, models + + +class ChatRoom(models.Model): + """ Store all useful information to manage chat room (currently limited + to Jitsi). This model embeds all information about the chat room. We do not + store them in the related mixin (see chat.room.mixin) to avoid to add too + many fields on the models which want to use the chat room mixin as the + behavior can be optional in those models. + + The participant count is automatically updated thanks to the chat room widget + to avoid having a costly computed field with a members model. + """ + _name = "chat.room" + _description = "Chat Room" + + def _default_name(self, objname='room'): + return "odoo-%s-%s" % (objname, str(uuid4())[:8]) + + name = fields.Char( + "Room Name", required=True, copy=False, + default=lambda self: self._default_name()) + is_full = fields.Boolean("Full", compute="_compute_is_full") + jitsi_server_domain = fields.Char( + 'Jitsi Server Domain', compute='_compute_jitsi_server_domain', + help='The Jitsi server domain can be customized through the settings to use a different server than the default "meet.jit.si"') + lang_id = fields.Many2one( + "res.lang", "Language", + default=lambda self: self.env["res.lang"].search([("code", "=", self.env.user.lang)], limit=1)) + max_capacity = fields.Selection( + [("4", "4"), ("8", "8"), ("12", "12"), ("16", "16"), + ("20", "20"), ("no_limit", "No limit")], string="Max capacity", + default="8", required=True) + participant_count = fields.Integer("Participant count", default=0, copy=False) + # reporting fields + last_activity = fields.Datetime( + "Last Activity", copy=False, readonly=True, + default=lambda self: fields.Datetime.now()) + max_participant_reached = fields.Integer( + "Max participant reached", copy=False, readonly=True, + help="Maximum number of participant reached in the room at the same time") + + @api.depends("max_capacity", "participant_count") + def _compute_is_full(self): + for room in self: + if room.max_capacity == "no_limit": + room.is_full = False + else: + room.is_full = room.participant_count >= int(room.max_capacity) + + def _compute_jitsi_server_domain(self): + jitsi_server_domain = self.env['ir.config_parameter'].sudo().get_param( + 'website_jitsi.jitsi_server_domain', 'meet.jit.si') + + for room in self: + room.jitsi_server_domain = jitsi_server_domain diff --git a/models/chat_room_mixin.py b/models/chat_room_mixin.py new file mode 100644 index 0000000..41e9f7c --- /dev/null +++ b/models/chat_room_mixin.py @@ -0,0 +1,77 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import re + +from odoo import api, fields, models +from odoo.tools import remove_accents + +class ChatRoomMixin(models.AbstractModel): + """Add the chat room configuration (`chat.room`) on the needed models. + + The chat room configuration contains all information about the room. So, we store + all the chat room logic at the same place, for all models. + Embed chat room related fields prefixed with `room_`. + """ + _name = "chat.room.mixin" + _description = "Chat Room Mixin" + ROOM_CONFIG_FIELDS = [ + ('room_name', 'name'), + ('room_lang_id', 'lang_id'), + ('room_max_capacity', 'max_capacity'), + ('room_participant_count', 'participant_count') + ] + + chat_room_id = fields.Many2one("chat.room", "Chat Room", readonly=True, copy=False, ondelete="set null") + # chat room related fields + room_name = fields.Char("Room Name", related="chat_room_id.name") + room_is_full = fields.Boolean("Room Is Full", related="chat_room_id.is_full") + room_lang_id = fields.Many2one("res.lang", "Language", related="chat_room_id.lang_id", readonly=False) + room_max_capacity = fields.Selection(string="Max capacity", related="chat_room_id.max_capacity", readonly=False, required=True) + room_participant_count = fields.Integer("Participant count", related="chat_room_id.participant_count", readonly=False) + room_last_activity = fields.Datetime("Last activity", related="chat_room_id.last_activity") + room_max_participant_reached = fields.Integer("Peak participants", related="chat_room_id.max_participant_reached") + + @api.model_create_multi + def create(self, values_list): + for values in values_list: + if any(values.get(fmatch[0]) for fmatch in self.ROOM_CONFIG_FIELDS) and not values.get('chat_room_id'): + if values.get('room_name'): + values['room_name'] = self._jitsi_sanitize_name(values['room_name']) + room_values = dict((fmatch[1], values[fmatch[0]]) for fmatch in self.ROOM_CONFIG_FIELDS if values.get(fmatch[0])) + values['chat_room_id'] = self.env['chat.room'].create(room_values).id + return super(ChatRoomMixin, self).create(values_list) + + def write(self, values): + if any(values.get(fmatch[0]) for fmatch in self.ROOM_CONFIG_FIELDS): + if values.get('room_name'): + values['room_name'] = self._jitsi_sanitize_name(values['room_name']) + for document in self.filtered(lambda doc: not doc.chat_room_id): + room_values = dict((fmatch[1], values[fmatch[0]]) for fmatch in self.ROOM_CONFIG_FIELDS if values.get(fmatch[0])) + document.chat_room_id = self.env['chat.room'].create(room_values).id + return super(ChatRoomMixin, self).write(values) + + def copy_data(self, default=None): + if default is None: + default = {} + if self.chat_room_id: + chat_room_default = {} + if 'room_name' not in default: + chat_room_default['name'] = self._jitsi_sanitize_name(self.chat_room_id.name) + default['chat_room_id'] = self.chat_room_id.copy(default=chat_room_default).id + return super(ChatRoomMixin, self).copy_data(default=default) + + def unlink(self): + rooms = self.chat_room_id + res = super(ChatRoomMixin, self).unlink() + rooms.unlink() + return res + + def _jitsi_sanitize_name(self, name): + sanitized = re.sub(r'[^\w+.]+', '-', remove_accents(name).lower()) + counter, sanitized_suffixed = 1, sanitized + existing = self.env['chat.room'].search([('name', '=like', '%s%%' % sanitized)]).mapped('name') + while sanitized_suffixed in existing: + sanitized_suffixed = '%s-%d' % (sanitized, counter) + counter += 1 + return sanitized_suffixed diff --git a/security/ir.model.access.csv b/security/ir.model.access.csv new file mode 100644 index 0000000..76d7f13 --- /dev/null +++ b/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_chat_room_all,access.chat.room.all,model_chat_room,,0,0,0,0 +access_chat_room_user,access.chat.room.user,model_chat_room,base.group_user,1,0,0,0 +access_chat_room_system,access.chat.room.system,model_chat_room,base.group_system,1,1,1,1 diff --git a/static/src/css/chat_room.css b/static/src/css/chat_room.css new file mode 100644 index 0000000..a51f80b --- /dev/null +++ b/static/src/css/chat_room.css @@ -0,0 +1,17 @@ +.o_wjitsi_room_modal .modal-dialog { + top: 10%; + max-width: 100vw; + max-height: 100vh; + width: 80%; + margin: auto; +} + +.o_wjitsi_room_modal .modal-body { + height: 70vh; + overflow: hidden; + margin: 0; +} + +.o_wjitsi_chat_room_loading { + top: 40%; +} diff --git a/static/src/js/chat_room.js b/static/src/js/chat_room.js new file mode 100644 index 0000000..8815708 --- /dev/null +++ b/static/src/js/chat_room.js @@ -0,0 +1,270 @@ +/** @odoo-module **/ + +import publicWidget from "@web/legacy/js/public/public_widget"; +import { renderToElement } from "@web/core/utils/render"; +import { utils as uiUtils } from "@web/core/ui/ui_service"; + +publicWidget.registry.ChatRoom = publicWidget.Widget.extend({ + selector: '.o_wjitsi_room_widget', + events: { + 'click .o_wjitsi_room_link': '_onChatRoomClick', + }, + + init() { + this._super(...arguments); + this.rpc = this.bindService("rpc"); + }, + + /** + * Manage the chat room (Jitsi), update the participant count... + * + * The widget takes some options + * - 'room-name', the name of the Jitsi room + * - 'chat-room-id', the ID of the `chat.room` record + * - 'auto-open', the chat room will be automatically opened when the page is loaded + * - 'check-full', check if the chat room is full before joining + * - 'attach-to', a JQuery selector of the element on which we will add the Jitsi + * iframe. If nothing is specified, it will open a modal instead. + * - 'default-username': the username to use in the chat room + * - 'jitsi-server': the domain name of the Jitsi server to use + */ + start: async function () { + await this._super.apply(this, arguments); + this.roomName = this.$el.data('room-name'); + this.chatRoomId = parseInt(this.$el.data('chat-room-id')); + // automatically open the current room + this.autoOpen = parseInt(this.$el.data('auto-open') || 0); + // before joining, perform a RPC call to verify that the chat room is not full + this.checkFull = parseInt(this.$el.data('check-full') || 0); + // query selector of the element on which we attach the Jitsi iframe + // if not defined, the widget will pop in a modal instead + this.attachTo = this.$el.data('attach-to') || false; + // default username for jitsi + this.defaultUsername = this.$el.data('default-username') || false; + + this.jitsiServer = this.$el.data('jitsi-server') || 'meet.jit.si'; + + this.maxCapacity = parseInt(this.$el.data('max-capacity')) || Infinity; + + if (this.autoOpen) { + await this._onChatRoomClick(); + } + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * Click on a chat room to join it. + * + * @private + */ + _onChatRoomClick: async function () { + if (this.checkFull) { + // maybe we didn't refresh the page for a while and so we might join a room + // which is full, so we perform a RPC call to verify that we can really join + let isChatRoomFull = await this.rpc('/jitsi/is_full', { room_name: this.roomName }); + + if (isChatRoomFull) { + window.location.reload(); + return; + } + } + + if (await this._openMobileApplication(this.roomName)) { + // we opened the mobile application + return; + } + + await this._loadJisti(); + + if (this.attachTo) { + // attach the Jitsi iframe on the given parent node + let $parentNode = $(this.attachTo); + $parentNode.find("iframe").trigger("empty"); + $parentNode.empty(); + + await this._joinJitsiRoom($parentNode); + } else { + // create a model and append the Jitsi iframe in it + let $jitsiModal = $(renderToElement('chat_room_modal', {})); + $("body").append($jitsiModal); + $jitsiModal.modal('show'); + + let jitsiRoom = await this._joinJitsiRoom($jitsiModal.find('.modal-body')); + + // close the modal when hanging up + jitsiRoom.addEventListener('videoConferenceLeft', async () => { + $('.o_wjitsi_room_modal').modal('hide'); + }); + + // when the modal is closed, delete the Jitsi room object and clear the DOM + $jitsiModal.on('hidden.bs.modal', async () => { + jitsiRoom.dispose(); + $(".o_wjitsi_room_modal").remove(); + }); + } + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * Jitsi do not provide an REST API to get the number of participant in a room. + * The only way to get the number of participant is to be in the room and to use + * the Javascript API. So, to update the participant count on the server side, + * the participant have to send the count in RPC... + * + * When leaving a room, the event "participantLeft" is called for the current user + * once per participant in the room (like if all other participants were leaving the + * room and then the current user himself). + * + * "participantLeft" is called only one time for the other participant who are still + * in the room. + * + * We can not ask the user who is leaving the room to update the participant count + * because user might close their browser tab without hanging up (and so without + * triggering the event "videoConferenceLeft"). So, we wait for a moment (because the + * event "participantLeft" is called many time for the participant who is leaving) + * and the first participant send the new participant count (so we avoid spamming the + * server with HTTP requests). + * + * We use "setTimout" to send maximum one HTTP request per interval, even if multiple + * participants join/leave at the same time in the defined interval. + * + * Update on the 29 June 2020 + * + * @private + * @param {jQuery} $jitsiModal, jQuery modal element in which we add the Jitsi room + * @returns {JitsiRoom} the newly created Jitsi room + */ + _joinJitsiRoom: async function ($parentNode) { + let jitsiRoom = await this._createJitsiRoom(this.roomName, $parentNode); + + if (this.defaultUsername) { + jitsiRoom.executeCommand("displayName", this.defaultUsername); + } + + let timeoutCall = null; + const updateParticipantCount = (joined) => { + this.allParticipantIds = Object.keys(jitsiRoom._participants).sort(); + // if we reached the maximum capacity, update immediately the participant count + const timeoutTime = this.allParticipantIds.length >= this.maxCapacity ? 0 : 2000; + + // we clear the old timeout to be sure to call it only once each 2 seconds + // (so if 2 participants join/leave in this interval, we will perform only + // one HTTP request for both). + clearTimeout(timeoutCall); + timeoutCall = setTimeout(() => { + this.allParticipantIds = Object.keys(jitsiRoom._participants).sort(); + if (this.participantId === this.allParticipantIds[0]) { + // only the first participant of the room send the new participant + // count so we avoid to send to many HTTP requests + this._updateParticipantCount(this.allParticipantIds.length, joined); + } + }, timeoutTime); + }; + + jitsiRoom.addEventListener('participantJoined', () => updateParticipantCount(true)); + jitsiRoom.addEventListener('participantLeft', () => updateParticipantCount(false)); + + // update the participant count when joining the room + jitsiRoom.addEventListener('videoConferenceJoined', async (event) => { + this.participantId = event.id; + updateParticipantCount(true); + $('.o_wjitsi_chat_room_loading').addClass('d-none'); + + // recheck if the room is not full + if (this.checkFull && this.allParticipantIds.length > this.maxCapacity) { + clearTimeout(timeoutCall); + jitsiRoom.executeCommand('hangup'); + window.location.reload(); + } + }); + + // update the participant count when using the "Leave" button + jitsiRoom.addEventListener('videoConferenceLeft', async (event) => { + this.allParticipantIds = Object.keys(jitsiRoom._participants) + if (!this.allParticipantIds.length) { + // bypass the checks and timer of updateParticipantCount + this._updateParticipantCount(this.allParticipantIds.length, false); + } + }); + + return jitsiRoom; + }, + + /** + * Perform an HTTP request to update the participant count on the server side. + * + * @private + * @param {integer} count, current number of participant in the room + * @param {boolean} joined, true if someone joined the room + */ + _updateParticipantCount: async function (count, joined) { + await this.rpc('/jitsi/update_status', { + room_name: this.roomName, + participant_count: count, + joined: joined, + }); + }, + + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * Redirect on the Jitsi mobile application if we are on mobile. + * + * @private + * @param {string} roomName + * @returns {boolean} true is we were redirected to the mobile application + */ + _openMobileApplication: async function (roomName) { + if (uiUtils.isSmall()) { + // we are on mobile, open the room in the application + window.location = `intent://${this.jitsiServer}/${encodeURIComponent(roomName)}#Intent;scheme=org.jitsi.meet;package=org.jitsi.meet;end`; + return true; + } + return false; + }, + + /** + * Create a Jitsi room on the given DOM element. + * + * @private + * @param {string} roomName + * @param {jQuery} $parentNode + * @returns {JitsiRoom} the newly created Jitsi room + */ + _createJitsiRoom: async function (roomName, $parentNode) { + await this._loadJisti(); + const options = { + roomName: roomName, + width: "100%", + height: "100%", + parentNode: $parentNode[0], + configOverwrite: {disableDeepLinking: true}, + }; + return new window.JitsiMeetExternalAPI(this.jitsiServer, options); + }, + + /** + * Load the Jitsi external library if necessary. + * + * @private + */ + _loadJisti: async function () { + if (!window.JitsiMeetExternalAPI) { + await $.ajax({ + url: `https://${this.jitsiServer}/external_api.js`, + dataType: "script", + }); + } + }, +}); + +export default publicWidget.registry.ChatRoom; diff --git a/static/src/xml/chat_room_modal.xml b/static/src/xml/chat_room_modal.xml new file mode 100644 index 0000000..e988051 --- /dev/null +++ b/static/src/xml/chat_room_modal.xml @@ -0,0 +1,20 @@ + + + + + + diff --git a/views/chat_room_templates.xml b/views/chat_room_templates.xml new file mode 100644 index 0000000..f733efa --- /dev/null +++ b/views/chat_room_templates.xml @@ -0,0 +1,18 @@ + + + + + + diff --git a/views/chat_room_views.xml b/views/chat_room_views.xml new file mode 100644 index 0000000..61dc4bc --- /dev/null +++ b/views/chat_room_views.xml @@ -0,0 +1,70 @@ + + + + chat.room.search + chat.room + + + + + + + + + chat.room.form + chat.room + +
+ + +
+
+
+ + + chat.room.tree + chat.room + + + + + + + + + + + + + Chat Rooms + chat.room + tree,form + + + +