Начальное наполнение
This commit is contained in:
parent
fba2c463a1
commit
e1d9b4cfdb
4
__init__.py
Normal file
4
__init__.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
|
from . import models
|
17
__manifest__.py
Normal file
17
__manifest__.py
Normal file
@ -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',
|
||||||
|
}
|
10
data/sms_data.xml
Normal file
10
data/sms_data.xml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<odoo>
|
||||||
|
<data noupdate="1">
|
||||||
|
<record id="sms_template_data_calendar_reminder" model="sms.template">
|
||||||
|
<field name="name">Calendar Event: Reminder</field>
|
||||||
|
<field name="model_id" ref="calendar.model_calendar_event"/>
|
||||||
|
<field name="body">Event reminder: {{ object.name }}, {{ object.get_display_time_tz(object.partner_id.tz) }}</field>
|
||||||
|
</record>
|
||||||
|
</data>
|
||||||
|
</odoo>
|
109
i18n/af.po
Normal file
109
i18n/af.po
Normal file
@ -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"
|
105
i18n/am.po
Normal file
105
i18n/am.po
Normal file
@ -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 ""
|
113
i18n/ar.po
Normal file
113
i18n/ar.po
Normal file
@ -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 "النوع"
|
110
i18n/az.po
Normal file
110
i18n/az.po
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||||
|
# erpgo translator <jumshud@erpgo.az>, 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 <jumshud@erpgo.az>, 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"
|
115
i18n/bg.po
Normal file
115
i18n/bg.po
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||||
|
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
|
||||||
|
# Igor Sheludko <igor.sheludko@gmail.com>, 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 <igor.sheludko@gmail.com>, 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 "Вид"
|
109
i18n/bs.po
Normal file
109
i18n/bs.po
Normal file
@ -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ć <bluesoft83@gmail.com>, 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ć <bluesoft83@gmail.com>, 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"
|
120
i18n/ca.po
Normal file
120
i18n/ca.po
Normal file
@ -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"
|
107
i18n/calendar_sms.pot
Normal file
107
i18n/calendar_sms.pot
Normal file
@ -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 ""
|
112
i18n/cs.po
Normal file
112
i18n/cs.po
Normal file
@ -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"
|
112
i18n/da.po
Normal file
112
i18n/da.po
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Sanne Kristensen <sanne@vkdata.dk>, 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"
|
113
i18n/de.po
Normal file
113
i18n/de.po
Normal file
@ -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"
|
109
i18n/el.po
Normal file
109
i18n/el.po
Normal file
@ -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 <goutoudis@gmail.com>, 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 <goutoudis@gmail.com>, 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 "Τύπος"
|
105
i18n/en_GB.po
Normal file
105
i18n/en_GB.po
Normal file
@ -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 ""
|
116
i18n/es.po
Normal file
116
i18n/es.po
Normal file
@ -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"
|
115
i18n/es_419.po
Normal file
115
i18n/es_419.po
Normal file
@ -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"
|
105
i18n/es_BO.po
Normal file
105
i18n/es_BO.po
Normal file
@ -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 ""
|
105
i18n/es_CL.po
Normal file
105
i18n/es_CL.po
Normal file
@ -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 ""
|
105
i18n/es_CO.po
Normal file
105
i18n/es_CO.po
Normal file
@ -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 ""
|
105
i18n/es_CR.po
Normal file
105
i18n/es_CR.po
Normal file
@ -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 ""
|
105
i18n/es_DO.po
Normal file
105
i18n/es_DO.po
Normal file
@ -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 ""
|
105
i18n/es_EC.po
Normal file
105
i18n/es_EC.po
Normal file
@ -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 ""
|
105
i18n/es_PE.po
Normal file
105
i18n/es_PE.po
Normal file
@ -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 ""
|
105
i18n/es_PY.po
Normal file
105
i18n/es_PY.po
Normal file
@ -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 ""
|
105
i18n/es_VE.po
Normal file
105
i18n/es_VE.po
Normal file
@ -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 ""
|
122
i18n/et.po
Normal file
122
i18n/et.po
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||||
|
# Andre Roomet <andreroomet@gmail.com>, 2023
|
||||||
|
# Piia Paurson <piia@avalah.ee>, 2023
|
||||||
|
# Leaanika Randmets, 2023
|
||||||
|
# Patrick-Jordan Kiudorv, 2023
|
||||||
|
# JanaAvalah, 2023
|
||||||
|
# Algo Kärp <algokarp@gmail.com>, 2023
|
||||||
|
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||||
|
# Anna, 2023
|
||||||
|
# Triine Aavik <triine@avalah.ee>, 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 <triine@avalah.ee>, 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"
|
105
i18n/eu.po
Normal file
105
i18n/eu.po
Normal file
@ -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 ""
|
116
i18n/fa.po
Normal file
116
i18n/fa.po
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||||
|
# سید محمد آذربرا <mohammadazarbara98@gmail.com>, 2023
|
||||||
|
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
|
||||||
|
# Hamed Mohammadi <hamed@dehongi.com>, 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 "نوع"
|
117
i18n/fi.po
Normal file
117
i18n/fi.po
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||||
|
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||||
|
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||||
|
# Pekka Ikonen, 2023
|
||||||
|
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 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 <ossi.mantylahti@obs-solutions.fi>, 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"
|
105
i18n/fo.po
Normal file
105
i18n/fo.po
Normal file
@ -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 ""
|
113
i18n/fr.po
Normal file
113
i18n/fr.po
Normal file
@ -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"
|
105
i18n/fr_CA.po
Normal file
105
i18n/fr_CA.po
Normal file
@ -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 ""
|
105
i18n/gl.po
Normal file
105
i18n/gl.po
Normal file
@ -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 ""
|
108
i18n/gu.po
Normal file
108
i18n/gu.po
Normal file
@ -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 "પ્રકાર"
|
114
i18n/he.po
Normal file
114
i18n/he.po
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||||
|
# Amit Spilman <amit@laylinetech.com>, 2023
|
||||||
|
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||||
|
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 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 <ZVIBLONDER@gmail.com>, 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 "סוג"
|
111
i18n/hr.po
Normal file
111
i18n/hr.po
Normal file
@ -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 <bole@dajmi5.com>, 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 <bole@dajmi5.com>, 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"
|
113
i18n/hu.po
Normal file
113
i18n/hu.po
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||||
|
# Tamás Németh <ntomasz81@gmail.com>, 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"
|
113
i18n/id.po
Normal file
113
i18n/id.po
Normal file
@ -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"
|
105
i18n/is.po
Normal file
105
i18n/is.po
Normal file
@ -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ð"
|
113
i18n/it.po
Normal file
113
i18n/it.po
Normal file
@ -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"
|
113
i18n/ja.po
Normal file
113
i18n/ja.po
Normal file
@ -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 "タイプ"
|
105
i18n/ka.po
Normal file
105
i18n/ka.po
Normal file
@ -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 ""
|
105
i18n/kab.po
Normal file
105
i18n/kab.po
Normal file
@ -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 ""
|
110
i18n/km.po
Normal file
110
i18n/km.po
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||||
|
# Chan Nath <channath@gmail.com>, 2018
|
||||||
|
# Samkhann Seang <seangsamkhann@gmail.com>, 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 <seangsamkhann@gmail.com>, 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 "ប្រភេទ"
|
113
i18n/ko.po
Normal file
113
i18n/ko.po
Normal file
@ -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 "유형"
|
105
i18n/lb.po
Normal file
105
i18n/lb.po
Normal file
@ -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 ""
|
105
i18n/lo.po
Normal file
105
i18n/lo.po
Normal file
@ -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 ""
|
116
i18n/lt.po
Normal file
116
i18n/lt.po
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Gailius Kazlauskas <gailius@vialaurea.lt>, 2023
|
||||||
|
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2023
|
||||||
|
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||||
|
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||||
|
# Silvija Butko <silvija.butko@gmail.com>, 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"
|
112
i18n/lv.po
Normal file
112
i18n/lv.po
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Anzelika Adejanova, 2023
|
||||||
|
# ievaputnina <ievai.putninai@gmail.com>, 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 <ievai.putninai@gmail.com>, 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"
|
105
i18n/mk.po
Normal file
105
i18n/mk.po
Normal file
@ -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 ""
|
112
i18n/mn.po
Normal file
112
i18n/mn.po
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2022
|
||||||
|
# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 2022
|
||||||
|
# Martin Trigaux, 2022
|
||||||
|
# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 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 <batmunkh.g@bumanit.mn>, 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 "Төрөл"
|
112
i18n/nb.po
Normal file
112
i18n/nb.po
Normal file
@ -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 <marius@stedjan.com>, 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"
|
105
i18n/ne.po
Normal file
105
i18n/ne.po
Normal file
@ -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 ""
|
113
i18n/nl.po
Normal file
113
i18n/nl.po
Normal file
@ -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"
|
113
i18n/pl.po
Normal file
113
i18n/pl.po
Normal file
@ -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"
|
112
i18n/pt.po
Normal file
112
i18n/pt.po
Normal file
@ -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"
|
113
i18n/pt_BR.po
Normal file
113
i18n/pt_BR.po
Normal file
@ -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"
|
113
i18n/ro.po
Normal file
113
i18n/ro.po
Normal file
@ -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 <mihai.fekete@forestandbiomass.ro>, 2022
|
||||||
|
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||||
|
# Foldi Robert <foldirobert@nexterp.ro>, 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"
|
115
i18n/ru.po
Normal file
115
i18n/ru.po
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# alenafairy, 2023
|
||||||
|
# Сергей Шебанин <sergey@shebanin.ru>, 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 "Тип"
|
111
i18n/sk.po
Normal file
111
i18n/sk.po
Normal file
@ -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"
|
113
i18n/sl.po
Normal file
113
i18n/sl.po
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# matjaz k <matjaz@mentis.si>, 2023
|
||||||
|
# Neun Pro, 2023
|
||||||
|
# Jasmina Macur <jasmina@hbs.si>, 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 <jasmina@hbs.si>, 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"
|
105
i18n/sq.po
Normal file
105
i18n/sq.po
Normal file
@ -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 ""
|
114
i18n/sr.po
Normal file
114
i18n/sr.po
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 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"
|
108
i18n/sr@latin.po
Normal file
108
i18n/sr@latin.po
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Martin Trigaux <mat@odoo.com>, 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 <mat@odoo.com>, 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 ""
|
118
i18n/sv.po
Normal file
118
i18n/sv.po
Normal file
@ -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 <jakob.krabbe@vertel.se>, 2023
|
||||||
|
# Martin Trigaux, 2023
|
||||||
|
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||||
|
# Björn Hayer, 2023
|
||||||
|
# Han Wong <han.wong@vertel.se>, 2023
|
||||||
|
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||||
|
# Anders Wallenquist <anders.wallenquist@vertel.se>, 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 <anders.wallenquist@vertel.se>, 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"
|
114
i18n/th.po
Normal file
114
i18n/th.po
Normal file
@ -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 "ประเภท"
|
121
i18n/tr.po
Normal file
121
i18n/tr.po
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * calendar_sms
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2023
|
||||||
|
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||||
|
# Umur Akın <umura@projetgrup.com>, 2023
|
||||||
|
# Levent Karakaş <levent@mektup.at>, 2023
|
||||||
|
# Yedigen, 2023
|
||||||
|
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||||
|
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||||
|
# abc Def <hdogan1974@gmail.com>, 2023
|
||||||
|
# Tugay Hatıl <tugayh@projetgrup.com>, 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 <tugayh@projetgrup.com>, 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"
|
114
i18n/uk.po
Normal file
114
i18n/uk.po
Normal file
@ -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 <alina.lisnenko@erp.co.ua>, 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 <alina.lisnenko@erp.co.ua>, 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 "Тип"
|
111
i18n/vi.po
Normal file
111
i18n/vi.po
Normal file
@ -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"
|
114
i18n/zh_CN.po
Normal file
114
i18n/zh_CN.po
Normal file
@ -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 "类型"
|
114
i18n/zh_TW.po
Normal file
114
i18n/zh_TW.po
Normal file
@ -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 "類型"
|
6
models/__init__.py
Normal file
6
models/__init__.py
Normal file
@ -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
|
34
models/calendar_alarm.py
Normal file
34
models/calendar_alarm.py
Normal file
@ -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")
|
27
models/calendar_alarm_manager.py
Normal file
27
models/calendar_alarm_manager.py
Normal file
@ -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()
|
45
models/calendar_event.py
Normal file
45
models/calendar_event.py
Normal file
@ -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']
|
4
tests/__init__.py
Normal file
4
tests/__init__.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||||
|
|
||||||
|
from . import test_calendar_sms
|
41
tests/test_calendar_sms.py
Normal file
41
tests/test_calendar_sms.py
Normal file
@ -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")
|
45
views/calendar_views.xml
Normal file
45
views/calendar_views.xml
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<odoo>
|
||||||
|
|
||||||
|
<record id="calendar_alarm_view_form" model="ir.ui.view">
|
||||||
|
<field name="name">calendar.alarm.view.form.inherit.calendar.sms</field>
|
||||||
|
<field name="model">calendar.alarm</field>
|
||||||
|
<field name="inherit_id" ref="calendar.calendar_alarm_view_form"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//field[@name='mail_template_id']" position="after">
|
||||||
|
<field name="sms_template_id" invisible="alarm_type != 'sms'" required="alarm_type == 'sms'"
|
||||||
|
context="{'default_model': 'calendar.event'}"/>
|
||||||
|
</xpath>
|
||||||
|
<xpath expr="//group[@name='right_details']" position="inside">
|
||||||
|
<field name="sms_notify_responsible" invisible="alarm_type != 'sms'"/>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<record id="view_calendar_event_tree_inherited" model="ir.ui.view">
|
||||||
|
<field name="name">calendar.event.tree.calendar_sms</field>
|
||||||
|
<field name="model">calendar.event</field>
|
||||||
|
<field name="inherit_id" ref="calendar.view_calendar_event_tree"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//header" position="inside">
|
||||||
|
<button name="action_send_sms" type="object"
|
||||||
|
string="Send SMS"/>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<record id="view_calendar_event_form_inherited" model="ir.ui.view">
|
||||||
|
<field name="name">calendar.event.form.calendar_sms</field>
|
||||||
|
<field name="model">calendar.event</field>
|
||||||
|
<field name="inherit_id" ref="calendar.view_calendar_event_form"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//div[@name='send_buttons']" position="inside">
|
||||||
|
<button name="action_send_sms" help="Send SMS to attendees" type="object" string="SMS" icon="fa-mobile"/>
|
||||||
|
</xpath>
|
||||||
|
<xpath expr="//field[@name='phone']" position="attributes">
|
||||||
|
<attribute name="options">{'enable_sms': false}</attribute>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
</odoo>
|
Loading…
x
Reference in New Issue
Block a user