From e1d9b4cfdb44bb551273bc64a72d7216c5986464 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:07:39 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 4 + __manifest__.py | 17 +++++ data/sms_data.xml | 10 +++ i18n/af.po | 109 +++++++++++++++++++++++++++ i18n/am.po | 105 ++++++++++++++++++++++++++ i18n/ar.po | 113 ++++++++++++++++++++++++++++ i18n/az.po | 110 ++++++++++++++++++++++++++++ i18n/bg.po | 115 +++++++++++++++++++++++++++++ i18n/bs.po | 109 +++++++++++++++++++++++++++ i18n/ca.po | 120 ++++++++++++++++++++++++++++++ i18n/calendar_sms.pot | 107 +++++++++++++++++++++++++++ i18n/cs.po | 112 ++++++++++++++++++++++++++++ i18n/da.po | 112 ++++++++++++++++++++++++++++ i18n/de.po | 113 ++++++++++++++++++++++++++++ i18n/el.po | 109 +++++++++++++++++++++++++++ i18n/en_GB.po | 105 ++++++++++++++++++++++++++ i18n/es.po | 116 +++++++++++++++++++++++++++++ i18n/es_419.po | 115 +++++++++++++++++++++++++++++ i18n/es_BO.po | 105 ++++++++++++++++++++++++++ i18n/es_CL.po | 105 ++++++++++++++++++++++++++ i18n/es_CO.po | 105 ++++++++++++++++++++++++++ i18n/es_CR.po | 105 ++++++++++++++++++++++++++ i18n/es_DO.po | 105 ++++++++++++++++++++++++++ i18n/es_EC.po | 105 ++++++++++++++++++++++++++ i18n/es_PE.po | 105 ++++++++++++++++++++++++++ i18n/es_PY.po | 105 ++++++++++++++++++++++++++ i18n/es_VE.po | 105 ++++++++++++++++++++++++++ i18n/et.po | 122 +++++++++++++++++++++++++++++++ i18n/eu.po | 105 ++++++++++++++++++++++++++ i18n/fa.po | 116 +++++++++++++++++++++++++++++ i18n/fi.po | 117 +++++++++++++++++++++++++++++ i18n/fo.po | 105 ++++++++++++++++++++++++++ i18n/fr.po | 113 ++++++++++++++++++++++++++++ i18n/fr_CA.po | 105 ++++++++++++++++++++++++++ i18n/gl.po | 105 ++++++++++++++++++++++++++ i18n/gu.po | 108 +++++++++++++++++++++++++++ i18n/he.po | 114 +++++++++++++++++++++++++++++ i18n/hr.po | 111 ++++++++++++++++++++++++++++ i18n/hu.po | 113 ++++++++++++++++++++++++++++ i18n/id.po | 113 ++++++++++++++++++++++++++++ i18n/is.po | 105 ++++++++++++++++++++++++++ i18n/it.po | 113 ++++++++++++++++++++++++++++ i18n/ja.po | 113 ++++++++++++++++++++++++++++ i18n/ka.po | 105 ++++++++++++++++++++++++++ i18n/kab.po | 105 ++++++++++++++++++++++++++ i18n/km.po | 110 ++++++++++++++++++++++++++++ i18n/ko.po | 113 ++++++++++++++++++++++++++++ i18n/lb.po | 105 ++++++++++++++++++++++++++ i18n/lo.po | 105 ++++++++++++++++++++++++++ i18n/lt.po | 116 +++++++++++++++++++++++++++++ i18n/lv.po | 112 ++++++++++++++++++++++++++++ i18n/mk.po | 105 ++++++++++++++++++++++++++ i18n/mn.po | 112 ++++++++++++++++++++++++++++ i18n/nb.po | 112 ++++++++++++++++++++++++++++ i18n/ne.po | 105 ++++++++++++++++++++++++++ i18n/nl.po | 113 ++++++++++++++++++++++++++++ i18n/pl.po | 113 ++++++++++++++++++++++++++++ i18n/pt.po | 112 ++++++++++++++++++++++++++++ i18n/pt_BR.po | 113 ++++++++++++++++++++++++++++ i18n/ro.po | 113 ++++++++++++++++++++++++++++ i18n/ru.po | 115 +++++++++++++++++++++++++++++ i18n/sk.po | 111 ++++++++++++++++++++++++++++ i18n/sl.po | 113 ++++++++++++++++++++++++++++ i18n/sq.po | 105 ++++++++++++++++++++++++++ i18n/sr.po | 114 +++++++++++++++++++++++++++++ i18n/sr@latin.po | 108 +++++++++++++++++++++++++++ i18n/sv.po | 118 ++++++++++++++++++++++++++++++ i18n/th.po | 114 +++++++++++++++++++++++++++++ i18n/tr.po | 121 ++++++++++++++++++++++++++++++ i18n/uk.po | 114 +++++++++++++++++++++++++++++ i18n/vi.po | 111 ++++++++++++++++++++++++++++ i18n/zh_CN.po | 114 +++++++++++++++++++++++++++++ i18n/zh_TW.po | 114 +++++++++++++++++++++++++++++ models/__init__.py | 6 ++ models/calendar_alarm.py | 34 +++++++++ models/calendar_alarm_manager.py | 27 +++++++ models/calendar_event.py | 45 ++++++++++++ tests/__init__.py | 4 + tests/test_calendar_sms.py | 41 +++++++++++ views/calendar_views.xml | 45 ++++++++++++ 80 files changed, 7967 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 data/sms_data.xml create mode 100644 i18n/af.po create mode 100644 i18n/am.po create mode 100644 i18n/ar.po create mode 100644 i18n/az.po create mode 100644 i18n/bg.po create mode 100644 i18n/bs.po create mode 100644 i18n/ca.po create mode 100644 i18n/calendar_sms.pot create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/el.po create mode 100644 i18n/en_GB.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/es_BO.po create mode 100644 i18n/es_CL.po create mode 100644 i18n/es_CO.po create mode 100644 i18n/es_CR.po create mode 100644 i18n/es_DO.po create mode 100644 i18n/es_EC.po create mode 100644 i18n/es_PE.po create mode 100644 i18n/es_PY.po create mode 100644 i18n/es_VE.po create mode 100644 i18n/et.po create mode 100644 i18n/eu.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fo.po create mode 100644 i18n/fr.po create mode 100644 i18n/fr_CA.po create mode 100644 i18n/gl.po create mode 100644 i18n/gu.po create mode 100644 i18n/he.po create mode 100644 i18n/hr.po create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/is.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ka.po create mode 100644 i18n/kab.po create mode 100644 i18n/km.po create mode 100644 i18n/ko.po create mode 100644 i18n/lb.po create mode 100644 i18n/lo.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/mk.po create mode 100644 i18n/mn.po create mode 100644 i18n/nb.po create mode 100644 i18n/ne.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ro.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sq.po create mode 100644 i18n/sr.po create mode 100644 i18n/sr@latin.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/calendar_alarm.py create mode 100644 models/calendar_alarm_manager.py create mode 100644 models/calendar_event.py create mode 100644 tests/__init__.py create mode 100644 tests/test_calendar_sms.py create mode 100644 views/calendar_views.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..dc5e6b6 --- /dev/null +++ b/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..53f5c1d --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': "Calendar - SMS", + 'version': "1.1", + 'summary': 'Send text messages as event reminders', + 'description': "Send text messages as event reminders", + 'category': 'Hidden', + 'depends': ['calendar', 'sms'], + 'data': [ + 'data/sms_data.xml', + 'views/calendar_views.xml', + ], + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/data/sms_data.xml b/data/sms_data.xml new file mode 100644 index 0000000..a71cec8 --- /dev/null +++ b/data/sms_data.xml @@ -0,0 +1,10 @@ + + + + + Calendar Event: Reminder + + Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }} + + + diff --git a/i18n/af.po b/i18n/af.po new file mode 100644 index 0000000..d7c3f54 --- /dev/null +++ b/i18n/af.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Martin Trigaux, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Martin Trigaux, 2022\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Soort" diff --git a/i18n/am.po b/i18n/am.po new file mode 100644 index 0000000..82fa95a --- /dev/null +++ b/i18n/am.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..a27a91b --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "فعالية التقويم " + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "فعالية التقويم: تذكير " + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "تنبيه الفعالية" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "إدارة تنبيه الفعالية" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "تذكير الفعالية: %(name)s, %(time)s. " + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"تذكير الفعالية: {{ object.name }}، {{ " +"object.get_display_time_tz(object.partner_id.tz) }} " + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "إخطار المسؤول " + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "الرسائل النصية القصيرة " + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "قالب الرسائل النصية القصيرة " + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "الرسائة النصية القصيرة " + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "إرسال رسالة نصية قصيرة " + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "إرسال رسالة نصية قصيرة " + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "إرسال رسالة نصية قصيرة للحاضرين " + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "قالب مُستَخدَم لتكوين محتوى التذكير عبر الرسائل النصية القصيرة. " + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "لا يوجد أي حاضرين في هذه الفعاليات " + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "النوع" diff --git a/i18n/az.po b/i18n/az.po new file mode 100644 index 0000000..8ce4aa0 --- /dev/null +++ b/i18n/az.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Jumshud Sultanov , 2022 +# erpgo translator , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: erpgo translator , 2022\n" +"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Təqvim hadisəsi" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Təqvim hadisəsi: Xatırlatma" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Hadisə Xəbərdarlığı" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Hadisə Xəbərdarlığı Meneceri" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS Şablonu" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS Mətn Mesajı" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "SMS Göndər" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tip" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..a6025e6 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Albena Mincheva , 2023 +# Rosen Vladimirov , 2023 +# Martin Trigaux, 2023 +# Ивайло Малинов , 2023 +# Igor Sheludko , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Igor Sheludko , 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Календар Събитие" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Събитие - Аларма" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Събитие - управление аларми" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Тексови съобщения" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Изпращане на SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Изпрати SMS на присъстващите" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Вид" diff --git a/i18n/bs.po b/i18n/bs.po new file mode 100644 index 0000000..a7abcce --- /dev/null +++ b/i18n/bs.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Boško Stojaković , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tip" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..1c71419 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Ivan Espinola, 2023 +# Arnau Ros, 2023 +# Martin Trigaux, 2023 +# Josep Anton Belchi, 2023 +# AncesLatino2004, 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Esdeveniment del calendari" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Esdeveniment del calendari: Recordatori" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alarma d'esdeveniment" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Gestor d'alarmes d'esdeveniment" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Recordatori de l'esdeveniment: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Recordatori d'esdeveniments: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Plantilla de SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Missatge de text SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Envia un missatge de text SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Envia un SMS als assistents" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" +"Plantilla utilitzada per a representar el contingut dels recordatoris per " +"SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "No hi ha assistents en aquests esdeveniments" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tipus" diff --git a/i18n/calendar_sms.pot b/i18n/calendar_sms.pot new file mode 100644 index 0000000..4492952 --- /dev/null +++ b/i18n/calendar_sms.pot @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 21:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..b2bcf4b --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Jakub Smolka, 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Událost kalendáře" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Událost kalendáře: Připomenutí" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Notifikace kalendářové události" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Správce notifikací kalendářové události" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Připomenutí události: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS šablona" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS textová zpráva" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Odeslat SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Odeslat SMS textovou zprávu" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Poslat SMS účastníkům" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Šablona použitá pro vykreslení obsahu SMS upomínky." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Na těchto akcích nejsou žádní účastníci" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Typ" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..4e9351d --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Sanne Kristensen , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Kalender begivenhed" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Kalender begivenhed: Påmindelse" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Arrangements notifikation" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Arrangements notifikations ansvarlig" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Begivenheds påmindelse: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS skabelon" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS besked" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Send SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Send SMS tekst besked" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Send SMS til deltagere" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Der er ingen deltagere til disse arrangementer" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Type" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..30703b7 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Kalender-Ereignis" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Kalender-Ereignis: Erinnerung" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Ereignisalarm" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Manager von Ereignisalarmen" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Veranstaltungserinnerung: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Veranstaltungserinnerung: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Verantwortlichen benachrichtigen" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS-Vorlage" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS-Textnachricht" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "SMS versenden" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS-Textnachricht versenden" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "SMS an Teilnehmer senden" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Vorlage für die Darstellung von SMS-Erinnerungsinhalten." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Für diese Veranstaltung gibt es keine Teilnehmer" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Typ" diff --git a/i18n/el.po b/i18n/el.po new file mode 100644 index 0000000..6746ca1 --- /dev/null +++ b/i18n/el.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Kostas Goutoudis , 2018\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Κείμενο SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Αποστολή SMS στους συμμετέχοντες" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Τύπος" diff --git a/i18n/en_GB.po b/i18n/en_GB.po new file mode 100644 index 0000000..a2e732c --- /dev/null +++ b/i18n/en_GB.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..01d56bf --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2024\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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Calendario de eventos" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Evento de calendario: recordatorio" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alerta de evento" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Gestor de alertas de eventos" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Recordatorio de evento: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Recordatorio de evento: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Notificar al responsable" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Plantilla de SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Mensaje de texto SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Enviar mensaje de texto SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Enviar SMS a asistentes" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" +"Plantilla utilizada para visualizar el contenido de los recordatorios por " +"SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "No hay asistentes para estos eventos" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tipo" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..920150a --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Evento del calendario" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Evento de calendario: recordatorio" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alerta de evento" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Gestor de alertas de eventos" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Recordatorio de evento: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Recordatorio de evento: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Notificar al responsable" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Plantilla de SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Mensaje de texto SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Enviar mensaje de texto SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Enviar SMS a los asistentes" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" +"Plantilla que se utiliza para visualizar el contenido de los recordatorios " +"por SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "No hay asistentes para estos eventos" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tipo" diff --git a/i18n/es_BO.po b/i18n/es_BO.po new file mode 100644 index 0000000..7b4e28d --- /dev/null +++ b/i18n/es_BO.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n" +"Language: es_BO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es_CL.po b/i18n/es_CL.po new file mode 100644 index 0000000..88e2f22 --- /dev/null +++ b/i18n/es_CL.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es_CO.po b/i18n/es_CO.po new file mode 100644 index 0000000..68b7fca --- /dev/null +++ b/i18n/es_CO.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es_CR.po b/i18n/es_CR.po new file mode 100644 index 0000000..3e55f06 --- /dev/null +++ b/i18n/es_CR.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es_DO.po b/i18n/es_DO.po new file mode 100644 index 0000000..74daaaa --- /dev/null +++ b/i18n/es_DO.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es_EC.po b/i18n/es_EC.po new file mode 100644 index 0000000..8336c65 --- /dev/null +++ b/i18n/es_EC.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es_PE.po b/i18n/es_PE.po new file mode 100644 index 0000000..ff3da82 --- /dev/null +++ b/i18n/es_PE.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es_PY.po b/i18n/es_PY.po new file mode 100644 index 0000000..ee6fa27 --- /dev/null +++ b/i18n/es_PY.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/es_VE.po b/i18n/es_VE.po new file mode 100644 index 0000000..4a11909 --- /dev/null +++ b/i18n/es_VE.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..df2a993 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Arma Gedonsky , 2023 +# Andre Roomet , 2023 +# Piia Paurson , 2023 +# Leaanika Randmets, 2023 +# Patrick-Jordan Kiudorv, 2023 +# JanaAvalah, 2023 +# Algo Kärp , 2023 +# Eneli Õigus , 2023 +# Anna, 2023 +# Triine Aavik , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Triine Aavik , 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Kohtumine" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Kalender: sündmuse meeldetuletus" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Sündmuse teade" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Ürituste juht" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Sündmuse meeldetuletus: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Sündmuse meeldetuletus: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Sõnumi mall" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS tekstisõnum" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Saada SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Saada SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Saada osalejatele SMS." + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Meilide meeldetuletuse sisu koostamiseks kasutatav mall." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Nendel üritustel pole ühtegi osalejat" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tüüp" diff --git a/i18n/eu.po b/i18n/eu.po new file mode 100644 index 0000000..562d465 --- /dev/null +++ b/i18n/eu.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..c623518 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Mohsen Mohammadi , 2023 +# سید محمد آذربرا , 2023 +# Mohammad Tahmasebi , 2023 +# Hamed Mohammadi , 2023 +# Hanna Kheradroosta, 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "رخداد گاهشمار" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "اطلاع رسانی رویداد" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "مدیریت اطلاع رسانی رویداد" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "پیامک" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "قالب پیامک" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "پیام متنی" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "ارسال پیامک" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "ارسال پیامک SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "ارسال پیامک به حاضرین" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "هیچ شرکت کننده ای در این رویدادها وجود ندارد" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "نوع" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..6c8821d --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Kari Lindgren , 2023 +# Jarmo Kortetjärvi , 2023 +# Tuomo Aura , 2023 +# Pekka Ikonen, 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Kalenteritapahtuma" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Kalenteritapahtuma: muistutus" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Tapahtuman hälytys" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Hälytysten hallinta" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Muistutus tapahtumasta: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Muistutus tapahtumasta: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Ilmoita asiasta vastaavalle" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS Malli" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Tekstiviesti" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Lähetä tekstiviesti" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Lähetä tekstiviesti" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Lähetä tekstiviesti osallistujille" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Malli, jota käytetään tekstiviestimuistutuksen sisällön esittämiseen." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Näissä tapahtumissa ei ole osallistujia" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tyyppi" diff --git a/i18n/fo.po b/i18n/fo.po new file mode 100644 index 0000000..61b814c --- /dev/null +++ b/i18n/fo.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..dc5e145 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Événement calendrier" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Evénement calendrier : Rappel" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Rappel d'événement" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Gestionnaire de rappel d'événements" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Rappel d'événement : %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Rappel d'événement : {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Notifier le responsable" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Modèle SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Envoyer un SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Envoyer un SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Envoyer un SMS aux participants" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Modèle utilisé pour afficher le contenu des rappels SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Il n'y a pas de participants à ces événements" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Type" diff --git a/i18n/fr_CA.po b/i18n/fr_CA.po new file mode 100644 index 0000000..db25191 --- /dev/null +++ b/i18n/fr_CA.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/gl.po b/i18n/gl.po new file mode 100644 index 0000000..b107827 --- /dev/null +++ b/i18n/gl.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/gu.po b/i18n/gu.po new file mode 100644 index 0000000..499f660 --- /dev/null +++ b/i18n/gu.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "પ્રકાર" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..fad4ef2 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Yihya Hugirat , 2023 +# Amit Spilman , 2023 +# Lilach Gilliam , 2023 +# ZVI BLONDER , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: ZVI BLONDER , 2023\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "אירוע לוח שנה" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "אירוע לוח שנה: תזכורת" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "התראת אירוע" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "מנהל התראות אירוע" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "תזכורת לארוע: %(name)s, %(time)s" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "תבנית SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "הודעת SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "שלח SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "שלח הודעת SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "שלח SMS למשתתפים" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "תבנית המשמשת לעיבוד תוכן תזכורת SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "אין משתתפים באירועים אלו" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "סוג" diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..218d7df --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Matej Mijoč, 2022 +# Martin Trigaux, 2022 +# Bole , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Bole , 2022\n" +"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Događaj na kalendaru" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Podsjetnik događaja" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Upravljanje podsjetnicima događaja" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS poruka" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Pošalji SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Pošalji SMS poruku" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Pošalji SMS svim polaznicima" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Nema sudionika na tim događajima" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Vrsta" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..16adc2b --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Ákos Nagy , 2023 +# Tamás Németh , 2023 +# krnkris, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: krnkris, 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Naptári esemény" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Naptári esemény: emlékeztető" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Esemény riasztás" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Esemény riasztás kezelő" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS sablon" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS üzenet" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "SMS küldése" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS küldése" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "SMS küldése a résztvevőknek" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Típus" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..3e37ca4 --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Acara Kalender" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Acara Kalender: Pengingat" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alarm Acara" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Manajer Alarm Acara" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Pengingat acara: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Pengingat acara: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Notifikasi Penanggungjawab" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Templat SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS Pesan Teks" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Kirim SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Kirim Pesan Teks SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Kirim SMS ke peserta" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Templat yang digunakan untuk merender konten pengingat SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Tidak ada peserta pada acara-acara tersebut" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Jenis" diff --git a/i18n/is.po b/i18n/is.po new file mode 100644 index 0000000..761c488 --- /dev/null +++ b/i18n/is.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Gerð" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..4310840 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Evento in calendario" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Evento in calendario - Promemoria" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Avviso evento" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Gestore avviso evento" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Promemoria evento: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Promemoria Evento: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Notifica il responsabile" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Modello SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Messaggio SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Invia SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Invia messaggio SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Invia SMS a partecipanti" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Modello utilizzato per rendere il contenuto del promemoria SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Non ci sono partecipanti a questi eventi" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tipo" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..ef43d77 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "カレンダーイベント" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "カレンダイベント: リマインダ" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "イベントアラーム" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "イベントアラーム管理" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "イベントリマインダー: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"イベントリマインダ: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "担当者に通知" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMSテンプレート" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMSテキストメッセージ" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "SMS配信" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMSテキストメッセージを送信" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "出席者にSMS配信" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "SMSリマインダーコンテンツのレンダリングに使用されるテンプレート" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "これらのイベントの参加者がいません" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "タイプ" diff --git a/i18n/ka.po b/i18n/ka.po new file mode 100644 index 0000000..d6d92a4 --- /dev/null +++ b/i18n/ka.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/kab.po b/i18n/kab.po new file mode 100644 index 0000000..4d3f591 --- /dev/null +++ b/i18n/kab.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/km.po b/i18n/km.po new file mode 100644 index 0000000..e5a802d --- /dev/null +++ b/i18n/km.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Sengtha Chay , 2018 +# Chan Nath , 2018 +# Samkhann Seang , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Samkhann Seang , 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "ប្រភេទ" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..9d56fe3 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "행사 일정표" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "일정표 행사 : 미리 알림" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "일정 알림" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "일정 알림 관리자" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "행사 미리 알림 : %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"행사 알림: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "담당자에게 알림" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS 서식" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS 문자 메시지" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "SMS 보내기" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS 문자메시지 전송" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "참석자에게 문자메시지 전송" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "SMS 알림 내용을 렌더링하는 데 사용되는 서식입니다." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "해당 행사에 참석자가 없습니다." + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "유형" diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..698e94c --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/lo.po b/i18n/lo.po new file mode 100644 index 0000000..1c79122 --- /dev/null +++ b/i18n/lo.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..4deaed3 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Gailius Kazlauskas , 2023 +# grupoda2 , 2023 +# Linas Versada , 2023 +# Jonas Zinkevicius , 2023 +# Silvija Butko , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Įvykis kalendoriuje" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Renginio signalas" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Renginio signalo valdytojas" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS šablonas" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS žinutė" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Siųsti SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Siųsti SMS žinutę" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Siųsti dalyviams SMS" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tipas" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..1ee33e4 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Anzelika Adejanova, 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Kalendāra notikums" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Notikuma atgadinājums" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Notikumu atgādinājumu pārvaldnieks" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Sūtīt SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Šajos pasākumos nav neviena dalībnieka" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Veids" diff --git a/i18n/mk.po b/i18n/mk.po new file mode 100644 index 0000000..9af7376 --- /dev/null +++ b/i18n/mk.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..35b1397 --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# tserendavaa tsogtoo , 2022 +# Uuganbayar Batbaatar , 2022 +# Martin Trigaux, 2022 +# Batmunkh Ganbat , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Batmunkh Ganbat , 2022\n" +"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Календарийн арга хэмжээ" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Арга хэмжээний анхааруулга" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Арга хэмжээний анхааруулгын Менежер" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "Мессеж" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Загвар МСЖ" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS Текст мессеж" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "SMS илгээх" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Оролцогчдод SMS илгээх" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Төрөл" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..af86dd7 --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Jorunn D. Newth, 2022 +# Marius Stedjan , 2022 +# Martin Trigaux, 2022 +# Henning Fyllingsnes, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Henning Fyllingsnes, 2023\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Kalenderhendelse" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Kalenderhendelse: påminnelse" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Hendelsesalarm" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Hendelse Alarm Styring" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS-mal" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS-melding" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Send SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Send SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Send SMS til deltakere" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Type" diff --git a/i18n/ne.po b/i18n/ne.po new file mode 100644 index 0000000..82ec772 --- /dev/null +++ b/i18n/ne.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..a2c4906 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Agenda gebeurtenis" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Agenda-afspraak: Herinnering" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Afspraak alarm" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Afspraak alarm manager" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Afspraak-herinnering: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Herinnering evenement: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Breng de verantwoordelijke op de hoogte" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS-sjabloon" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS-bericht" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "SMS verzenden" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS verzenden" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Verzend SMS aan deelnemers" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Sjabloon gebruikt om sms-herinneringsinhoud weer te geven." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Er zijn geen deelnemers bij deze afspraak" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Soort" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..29d3066 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Wydarzenie w kalendarzu" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Wydarzenie w kalendarzu: Przypomnienie" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alarm wydarzenia" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Zarządzanie alarmem wydarzenia" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Przypomnienie o wydarzeniu: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Przypomnienie o wydarzeniu: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Szablon SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Wiadomość SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Wyślij SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Wyślij wiadomość SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Wyślij SMS do uczestników" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Szablon używany do renderowania treści przypomnienia SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Nie ma uczestników w tych wydarzeniach" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Typ" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..2b61275 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Wil Odoo, 2023 +# Rita Bastos, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rita Bastos, 2024\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Evento do Calendário" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Lembrete do Evento do Calendário" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alarme do Evento" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Gestor de Alarmes do Evento" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Modelo de SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Mensagem de Texto SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Enviar Mensagem de Texto SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Enviar SMS aos participantes" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tipo" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..111718f --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Evento do calendário" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Evento do calendário: lembrete" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alarme do evento" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Gerenciamento de alarme do evento" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Lembrete de evento: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Lembrete do evento: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Notificar responsável" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Modelo de SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Enviar SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Enviar mensagem de texto SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Enviar mensagem de texto SMS para os participantes" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Modelo usado para renderizar o conteúdo do lembrete de SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Não há participantes nesses eventos" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tipo" diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..8c46f37 --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Martin Trigaux, 2022 +# Fekete Mihai , 2022 +# Dorin Hongu , 2022 +# Foldi Robert , 2022 +# Claudia Baisan, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Claudia Baisan, 2023\n" +"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Eveniment Calendar" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Eveniment Calendar: Memento" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alarmă eveniment" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Manager alarmă eveniment" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Memento eveniment: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "Memento eveniment: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Șablon SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Mesaj text SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Trimite SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Trimiteți mesaj SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Trimite SMS la participanți" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Șablon utilizat pentru a genera conținutul memento-ului SMS." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Nu există participanți la aceste evenimente" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tip" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..31629fa --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# alenafairy, 2023 +# Сергей Шебанин , 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Календарное событие" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Событие календаря: Напоминание" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Сигнал тревоги" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Менеджер аварийных сигналов событий" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Напоминание о событиях: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Напоминание о событии: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Уведомить ответственного" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "СМС" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS шаблон" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Текстовое сообщение SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Отправить SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Отправить текстовое сообщение SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Отправка SMS участникам" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Шаблон для генерации SMS напоминания." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "На этих мероприятиях нет посетителей" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Тип" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..e806374 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Udalosť kalendára" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Udalosť kalendára: Pripomenutie" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Upozornenie udalosti" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Správca upozornenia udalostí" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Pripomienka udalosti:%(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS šablóna" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Text SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Zaslať SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Poslať SMS textovú správu" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Zaslať SMS účastníkom" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Typ" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..e4d76fd --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# matjaz k , 2023 +# Neun Pro, 2023 +# Jasmina Macur , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jasmina Macur , 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Calendar Event" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS predloga" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Pošlji SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Pošljite SMS udeležencem" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tip" diff --git a/i18n/sq.po b/i18n/sq.po new file mode 100644 index 0000000..d3694ba --- /dev/null +++ b/i18n/sq.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..1ce535b --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Događaj kalendara" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Događaj kalendara: podsetnik" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Alarm događaja" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Menadžer alarma događaja" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Podsetnik događaja: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Podsetnik za događaj: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Obavestiti odgovornu osobu" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS šablon" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS poruka" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Šalji SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Pošalji SMS poruku" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Šalji SMS učesnicima" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Šablon koji se koristi za prikazivanje sadržaja SMS podsetnika." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Na ovim događajima nema učesnika" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Vrsta" diff --git a/i18n/sr@latin.po b/i18n/sr@latin.po new file mode 100644 index 0000000..8f42c39 --- /dev/null +++ b/i18n/sr@latin.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:49+0000\n" +"PO-Revision-Date: 2017-09-20 11:33+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..b838769 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# 3eec91a23d05c632ffac786ac42b81b8_b6fff7b <8985b7bc57db860af29969457dbb51b3_1018915>, 2023 +# Jakob Krabbe , 2023 +# Martin Trigaux, 2023 +# Chrille Hedberg , 2023 +# Björn Hayer, 2023 +# Han Wong , 2023 +# Kim Asplund , 2023 +# Anders Wallenquist , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anders Wallenquist , 2023\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Kalenderhändelse" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Kalenderhändelse: påminnelse" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Händelsealarm" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Hanterare för Händelsealarm" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Kalenderpåminnelse: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS-mall" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS textmeddelande" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Skicka SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Skicka SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Skicka SMS till deltagare" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Mall som används för att återge innehåll på SMS-påminnelser." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Det finns inga deltagare på dessa händelser" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Typ" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..0ca3a7c --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Wil Odoo, 2023 +# Rasareeyar Lappiam, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rasareeyar Lappiam, 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "ปฎิทินอีเวนต์" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "ปฎิทินอีเวนต์: เตือนความจำ" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "เตือนอีเวนต์" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "ตัวจัดการการเตือนอีเวนต์" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "เตือนความจำอีเวนต์: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"การแจ้งเตือนกิจกรรม: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "แจ้งให้ผู้รับผิดชอบทราบ" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "เทมเพลต SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS ข้อความ" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "ส่ง SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "ส่งข้อความ SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "ส่ง SMS ถึงผู้เข้าร่วม" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "เทมเพลตที่ใช้แสดงเนื้อหาเตือนความจำ SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "ไม่มีผู้เข้าร่วมในอีเวนต์เหล่านี้" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "ประเภท" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..26f1e92 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Nadir Gazioglu , 2023 +# Murat Kaplan , 2023 +# Umur Akın , 2023 +# Levent Karakaş , 2023 +# Yedigen, 2023 +# Ertuğrul Güreş , 2023 +# Ediz Duman , 2023 +# abc Def , 2023 +# Tugay Hatıl , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tugay Hatıl , 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Takvim Etkinliği" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Takvim Etkinliği: Hatırlatma" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Etkinlik Alarmı" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Etkinlik Alarmı Yöneticisi" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Event reminder: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Etkinlik hatırlatıcısı: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "SMS Şablonu" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "SMS Metin Mesajı" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "SMS Gönder" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS Metin Mesajı Gönderin" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Katılımcılara SMS gönderin" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "SMS hatırlatıcı içeriği oluşturmak için kullanılan şablon." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Bu etkinliklerde katılımcı yok" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Tür" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..8d62c0b --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Wil Odoo, 2023 +# Alina Lisnenko , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Alina Lisnenko , 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Календар подій" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Календар подій: Нагадування" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Сповіщення про подію" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Менеджер сповіщення про подію" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Нагадування про подію: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"Нагадування про подію: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "Сповістити відповідальних" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Шаблон SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Текст SMS-повідомлення " + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Надіслати SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Надіслати SMS-повідомлення" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Відправити SMS учасникам" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Шаблон, який використовується для відтворення вмісту SMS-нагадувань." + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Немає учасників на цих подіях" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Тип" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..60c3042 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# 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:55+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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "Sự kiện theo Lịch" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "Calendar Event: Reminder" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "Cảnh báo sự kiện" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "Quản lý cảnh báo sự kiện" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "Event reminder: %(name)s, %(time)s." + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "SMS" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "Mẫu SMS" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "Thông điệp SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "Gửi SMS" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Gửi tin nhắn văn bản SMS" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "Gửi SMS tới người tham dự" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "Mẫu được dùng để tạo nội dung SMS nhắc nhở. " + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "Những sự kiện này không có người tham dự" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "Loại" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..58d66d3 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Wil Odoo, 2023 +# Chloe Wang, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Chloe Wang, 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "日历活动" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "日历活动:提醒" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "活动提醒" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "活动提醒管理" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "活动提醒:‎%(name)s,%(time)s。" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"活动提醒:{{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) " +"}}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "通知相关负责人" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "短信息" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "短信息模板" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "短信息" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "发送短信息" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "发送文本短信息" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "向参加者发送 SMS" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "用来呈现短信息提醒内容的模板。" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "这些活动没有参加者" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "类型" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..0fd5f7f --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * calendar_sms +# +# Translators: +# Wil Odoo, 2023 +# Tony Ng, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tony Ng, 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: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_event +msgid "Calendar Event" +msgstr "日曆活動" + +#. module: calendar_sms +#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder +msgid "Calendar Event: Reminder" +msgstr "日曆:活動提醒" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm +msgid "Event Alarm" +msgstr "活動提醒" + +#. module: calendar_sms +#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager +msgid "Event Alarm Manager" +msgstr "活動提醒管理" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Event reminder: %(name)s, %(time)s." +msgstr "活動提醒:%(name)s、%(time)s。" + +#. module: calendar_sms +#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder +msgid "" +"Event reminder: {{ object.name }}, {{ " +"object.get_display_time_tz(object.partner_id.tz) }}" +msgstr "" +"活動提醒:{{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) " +"}}" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_alarm.py:0 +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_notify_responsible +#, python-format +msgid "Notify Responsible" +msgstr "通知負責人" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "SMS" +msgstr "電話短訊(SMS)" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__sms_template_id +msgid "SMS Template" +msgstr "簡訊範本" + +#. module: calendar_sms +#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms +msgid "SMS Text Message" +msgstr "簡訊" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_tree_inherited +msgid "Send SMS" +msgstr "發送簡訊" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "傳送簡訊" + +#. module: calendar_sms +#: model_terms:ir.ui.view,arch_db:calendar_sms.view_calendar_event_form_inherited +msgid "Send SMS to attendees" +msgstr "向參與者發送 SMS" + +#. module: calendar_sms +#: model:ir.model.fields,help:calendar_sms.field_calendar_alarm__sms_template_id +msgid "Template used to render SMS reminder content." +msgstr "用於呈現簡訊提醒內容的模板。" + +#. module: calendar_sms +#. odoo-python +#: code:addons/calendar_sms/models/calendar_event.py:0 +#, python-format +msgid "There are no attendees on these events" +msgstr "這些活動沒有參加者" + +#. module: calendar_sms +#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type +msgid "Type" +msgstr "類型" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..f25bec8 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import calendar_alarm +from . import calendar_alarm_manager +from . import calendar_event diff --git a/models/calendar_alarm.py b/models/calendar_alarm.py new file mode 100644 index 0000000..b4ddd85 --- /dev/null +++ b/models/calendar_alarm.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import _, api, fields, models + + +class CalendarAlarm(models.Model): + _inherit = 'calendar.alarm' + + alarm_type = fields.Selection(selection_add=[ + ('sms', 'SMS Text Message') + ], ondelete={'sms': 'set default'}) + sms_template_id = fields.Many2one( + 'sms.template', string="SMS Template", + domain=[('model', 'in', ['calendar.event'])], + compute='_compute_sms_template_id', readonly=False, store=True, + help="Template used to render SMS reminder content.") + sms_notify_responsible = fields.Boolean("Notify Responsible") + + @api.depends('alarm_type', 'sms_template_id') + def _compute_sms_template_id(self): + for alarm in self: + if alarm.alarm_type == 'sms' and not alarm.sms_template_id: + alarm.sms_template_id = self.env['ir.model.data']._xmlid_to_res_id('calendar_sms.sms_template_data_calendar_reminder') + elif alarm.alarm_type != 'sms' or not alarm.sms_template_id: + alarm.sms_template_id = False + + @api.onchange('duration', 'interval', 'alarm_type', 'sms_notify_responsible') + def _onchange_duration_interval(self): + super()._onchange_duration_interval() + if self.alarm_type != 'sms': + self.sms_notify_responsible = False + elif self.sms_notify_responsible: + self.name += " - " + _("Notify Responsible") diff --git a/models/calendar_alarm_manager.py b/models/calendar_alarm_manager.py new file mode 100644 index 0000000..98fb8f4 --- /dev/null +++ b/models/calendar_alarm_manager.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, models + + +class AlarmManager(models.AbstractModel): + _inherit = 'calendar.alarm_manager' + + @api.model + def _send_reminder(self): + """ Cron method, overridden here to send SMS reminders as well + """ + super()._send_reminder() + events_by_alarm = self._get_events_by_alarm_to_notify('sms') + if not events_by_alarm: + return + + event_ids = list(set(event_id for event_ids in events_by_alarm.values() for event_id in event_ids)) + events = self.env['calendar.event'].browse(event_ids) + alarms = self.env['calendar.alarm'].browse(events_by_alarm.keys()) + for event in events: + alarm = event.alarm_ids.filtered(lambda alarm: alarm.id in alarms.ids) + event._do_sms_reminder(alarm) + if event.recurrence_id: + next_date = event.get_next_alarm_date(events_by_alarm) + event.recurrence_id.with_context(date=next_date)._setup_alarms() diff --git a/models/calendar_event.py b/models/calendar_event.py new file mode 100644 index 0000000..a3687be --- /dev/null +++ b/models/calendar_event.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models, _ +from odoo.exceptions import UserError + +class CalendarEvent(models.Model): + _inherit = 'calendar.event' + + def _do_sms_reminder(self, alarms): + """ Send an SMS text reminder to attendees that haven't declined the event """ + for event in self: + declined_partners = event.attendee_ids.filtered_domain([('state', '=', 'declined')]).partner_id + for alarm in alarms: + partners = event._mail_get_partners()[event.id].filtered( + lambda partner: partner.phone_sanitized and partner not in declined_partners + ) + if event.user_id and not alarm.sms_notify_responsible: + partners -= event.user_id.partner_id + event._message_sms_with_template( + template=alarm.sms_template_id, + template_fallback=_("Event reminder: %(name)s, %(time)s.", name=event.name, time=event.display_time), + partner_ids=partners.ids, + put_in_queue=False + ) + + def action_send_sms(self): + if not self.partner_ids: + raise UserError(_("There are no attendees on these events")) + return { + 'type': 'ir.actions.act_window', + 'name': _("Send SMS Text Message"), + 'res_model': 'sms.composer', + 'view_mode': 'form', + 'target': 'new', + 'context': { + 'default_composition_mode': 'mass', + 'default_res_model': 'res.partner', + 'default_res_ids': self.partner_ids.ids, + 'default_mass_keep_log': True, + }, + } + + def _get_trigger_alarm_types(self): + return super()._get_trigger_alarm_types() + ['sms'] diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..1107609 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import test_calendar_sms diff --git a/tests/test_calendar_sms.py b/tests/test_calendar_sms.py new file mode 100644 index 0000000..93eeb44 --- /dev/null +++ b/tests/test_calendar_sms.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from datetime import datetime + +from odoo.addons.sms.tests.common import SMSCommon +from odoo.tests import tagged + + +@tagged('sms') +class TestCalendarSms(SMSCommon): + + @classmethod + def setUpClass(cls): + super(TestCalendarSms, cls).setUpClass() + + cls.partner_phone = cls.env['res.partner'].create({ + 'name': 'Partner With Phone Number', + 'phone': '0477777777', + 'country_id': cls.env.ref('base.be').id, + }) + cls.partner_no_phone = cls.env['res.partner'].create({ + 'name': 'Partner With No Phone Number', + 'country_id': cls.env.ref('base.be').id, + }) + cls.event = cls.env['calendar.event'].create({ + 'alarm_ids': [(0, 0, { + 'alarm_type': 'sms', + 'name': 'SMS Reminder', + })], + 'name': "Boostrap vs Foundation", + 'partner_ids': [(6, 0, [cls.partner_phone.id, cls.partner_no_phone.id])], + 'start': datetime(2022, 1, 1, 11, 11), + 'stop': datetime(2022, 2, 2, 22, 22), + }) + + def test_attendees_with_number(self): + """Test if only partners with sanitized number are returned.""" + with self.mockSMSGateway(): + self.event._do_sms_reminder(self.event.alarm_ids) + self.assertEqual(len(self._sms), 1, "There should be only one partner retrieved") diff --git a/views/calendar_views.xml b/views/calendar_views.xml new file mode 100644 index 0000000..64d9d99 --- /dev/null +++ b/views/calendar_views.xml @@ -0,0 +1,45 @@ + + + + + calendar.alarm.view.form.inherit.calendar.sms + calendar.alarm + + + + + + + + + + + + + calendar.event.tree.calendar_sms + calendar.event + + + +