Initial commit: Mail packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:51 +02:00
commit 4e53507711
1948 changed files with 751201 additions and 0 deletions

25
README.md Normal file
View file

@ -0,0 +1,25 @@
# Mail
This repository contains OCA OCB packages for mail.
## Packages Included
- odoo-bringout-oca-ocb-calendar_sms
- odoo-bringout-oca-ocb-event_sms
- odoo-bringout-oca-ocb-im_livechat
- odoo-bringout-oca-ocb-im_livechat_mail_bot
- odoo-bringout-oca-ocb-mass_mailing
- odoo-bringout-oca-ocb-mass_mailing_crm
- odoo-bringout-oca-ocb-mass_mailing_crm_sms
- odoo-bringout-oca-ocb-mass_mailing_event
- odoo-bringout-oca-ocb-mass_mailing_event_sms
- odoo-bringout-oca-ocb-mass_mailing_event_track
- odoo-bringout-oca-ocb-mass_mailing_event_track_sms
- odoo-bringout-oca-ocb-mass_mailing_slides
- odoo-bringout-oca-ocb-mass_mailing_sms
- odoo-bringout-oca-ocb-mass_mailing_themes
- odoo-bringout-oca-ocb-project_sms
- odoo-bringout-oca-ocb-sms
- odoo-bringout-oca-ocb-spreadsheet_dashboard_im_livechat
- odoo-bringout-oca-ocb-test_mail_sms
- odoo-bringout-oca-ocb-test_mass_mailing

View file

@ -0,0 +1,45 @@
# Calendar - SMS
Send text messages as event reminders
## Installation
```bash
pip install odoo-bringout-oca-ocb-calendar_sms
```
## Dependencies
This addon depends on:
- calendar
- sms
## Manifest Information
- **Name**: Calendar - SMS
- **Version**: 1.1
- **Category**: Hidden
- **License**: LGPL-3
- **Installable**: False
## Source
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `calendar_sms`.
## License
This package maintains the original LGPL-3 license from the upstream Odoo project.
## Documentation
- Overview: doc/OVERVIEW.md
- Architecture: doc/ARCHITECTURE.md
- Models: doc/MODELS.md
- Controllers: doc/CONTROLLERS.md
- Wizards: doc/WIZARDS.md
- Install: doc/INSTALL.md
- Usage: doc/USAGE.md
- Configuration: doc/CONFIGURATION.md
- Dependencies: doc/DEPENDENCIES.md
- Troubleshooting: doc/TROUBLESHOOTING.md
- FAQ: doc/FAQ.md

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models

View 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',
}

View 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>

View file

@ -0,0 +1,103 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: af\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
#: 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"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: am\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
#: 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 ""

View file

@ -0,0 +1,107 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Hassan Najm <hassannjm@gmail.com>, 2022
# Malaz Abuidris <msea@odoo.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 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
#: 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 "النوع"

View file

@ -0,0 +1,104 @@
# 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: 2022-12-15 12:50+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: az\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
#: 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"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: be\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 ""
#. 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
#: 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 ""

View file

@ -0,0 +1,110 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Igor Sheludko <igor.sheludko@gmail.com>, 2023
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
# Martin Trigaux, 2023
# Petko Karamotchev, 2024
# Martin Dinovski, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Martin Dinovski, 2025\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
#: 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 "Тексови съобщения"
#. 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 ""
"Шаблон, използван за изобразяване на съдържание за напомняне чрез 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 "Вид"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-12-15 12:50+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 "Događaj na kalendaru"
#. module: calendar_sms
#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder
msgid "Calendar Event: Reminder"
msgstr "Kalendarski događaj: Podsjetnik"
#. 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 "Podsjetnik za događaj: %(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
#: 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 "Predložak SMS poruke"
#. 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 "Podsetnik za događaj: %s na %s."
#. 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 "Predložak koji se koristi za renderiranje sadržaja SMS podsjetnika."
#. 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 "SMS Tekst Poruka reminder sent !"
#. module: calendar_sms
#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type
msgid "Type"
msgstr "Tip"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# AncesLatino2004, 2022
# jabelchi, 2022
# Arnau Ros, 2022
# marcescu, 2022
# Martin Trigaux, 2022
# Ivan Espinola, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ivan Espinola, 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
#: 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"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-12-15 12:50+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
#: 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 ""

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
# Marta Wacławek, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Marta Wacławek, 2025\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 "Alarm událostí"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "Event Alarm Manager"
msgstr "Správce alarmů událostí"
#. 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 ""
"Připomínka o události: {{ object.name }}, {{ "
"object.get_display_time_tz(object.partner_id.tz) }}"
#. 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"

View file

@ -0,0 +1,104 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Sanne Kristensen <sanne@vkdata.dk>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2022\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
#: 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"

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Larissa Manderfeld, 2023
# Martin Trigaux, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Martin Trigaux, 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
#: 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"

View file

@ -0,0 +1,72 @@
# 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: 2018-09-21 13:17+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: selection:calendar.alarm,type:0
msgid "Email"
msgstr "Email"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
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
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr "Υπενθύμιση συμβάντος: %s στις %s."
#. module: calendar_sms
#: selection:calendar.alarm,type:0
msgid "Notification"
msgstr "Ειδοποίηση"
#. module: calendar_sms
#: selection:calendar.alarm,type:0
msgid "SMS Text Message"
msgstr "Κείμενο SMS"
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr "Η υπενθύμιση με SMS έχει αποσταλεί!"
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr "Αποστολή SMS στους συμμετέχοντες"
#. module: calendar_sms
#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__type
msgid "Type"
msgstr "Τύπος"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,109 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Larissa Manderfeld, 2023
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Wil Odoo, 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 "Evento del calendario"
#. module: calendar_sms
#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder
msgid "Calendar Event: Reminder"
msgstr "Evento del 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 "Gerente 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
#: 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"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_BO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_DO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_EC\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,109 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
# Fernanda Alvarez, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Fernanda Alvarez, 2023\n"
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_MX\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 de 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
#: 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"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_PE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_PY\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_VE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Eneli Õigus <enelioigus@gmail.com>, 2022
# Andre Roomet <andreroomet@gmail.com>, 2022
# Piia Paurson <piia@avalah.ee>, 2022
# Triine Aavik <triine@avalah.ee>, 2022
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
# Algo Kärp <algokarp@gmail.com>, 2022
# Patrick-Jordan Kiudorv, 2022
# Anna, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Anna, 2023\n"
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Calendar Event"
msgstr "Kalendrisündmus"
#. 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
#: 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 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"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+0000\n"
"PO-Revision-Date: 2017-09-20 11:33+0000\n"
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,111 @@
# 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
# Hamed Mohammadi <hamed@dehongi.com>, 2023
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
# Martin Trigaux, 2023
# Hanna Kheradroosta, 2023
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\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 "یادآوری رویداد: %(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
#: 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 "نوع"

View file

@ -0,0 +1,109 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Pekka Ikonen, 2022
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+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
#: 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"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+0000\n"
"PO-Revision-Date: 2017-09-20 11:33+0000\n"
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,107 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Cécile Collart <cco@odoo.com>, 2022
# Jolien De Paepe, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Jolien De Paepe, 2023\n"
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: 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
#: 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 de 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"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr_CA\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+0000\n"
"PO-Revision-Date: 2017-09-20 11:33+0000\n"
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,103 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Qaidjohar Barbhaya, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gu\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
#: 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 "Type"

View file

@ -0,0 +1,109 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Amit Spilman <amit@laylinetech.com>, 2022
# Yihya Hugirat <hugirat@gmail.com>, 2022
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
# Ha Ketem <haketem@gmail.com>, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ha Ketem <haketem@gmail.com>, 2024\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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 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 "תזכורת לארוע: %(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
#: 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 "סוג"

View file

@ -0,0 +1,104 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Wil Odoo, 2024
# Ujjawal Pathak, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ujjawal Pathak, 2025\n"
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hi\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
#: 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 "प्रकार"

View file

@ -0,0 +1,106 @@
# 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
# Luka Carević <luka@uvid.hr>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Luka Carević <luka@uvid.hr>, 2025\n"
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hr\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
#: 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 "Predložak SMS poruke"
#. 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"

View file

@ -0,0 +1,105 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# krnkris, 2022
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
# Tamás Németh <ntomasz81@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2022\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
#: 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"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hy\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
#: 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 ""

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Abe Manyo, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Abe Manyo, 2023\n"
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: 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
#: 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 pesertra"
#. 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"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: is\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
#: 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 ""

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Sergio Zanchetta <primes2h@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 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 avvisi 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
#: 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 ai 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 "Tipologia"

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Junko Augias, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Junko Augias, 2023\n"
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: 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
#: 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 "タイプ"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+0000\n"
"PO-Revision-Date: 2017-09-20 11:33+0000\n"
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ka\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+0000\n"
"PO-Revision-Date: 2017-09-20 11:33+0000\n"
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: kab\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,104 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Lux Sok <sok.lux@gmail.com>, 2023
# Chan Nath <channath@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Chan Nath <channath@gmail.com>, 2023\n"
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: km\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
#: 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 "ផ្ញើសារទៅអ្នកចូលរួម"
#. 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 "ប្រភេទ"

View file

@ -0,0 +1,107 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Sarah Park, 2023
# Daye Jeong, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Daye Jeong, 2023\n"
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: 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 ""
"Event reminder: {{ object.name }}, {{ "
"object.get_display_time_tz(object.partner_id.tz) }}"
#. 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 "유형"

View file

@ -0,0 +1,64 @@
# 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: 2019-08-26 08:16+0000\n"
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lb\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
#: model:sms.template,body:calendar_sms.sms_template_data_calendar_reminder
msgid ""
"Event reminder: ${object.name} on ${object.start_datetime or "
"object.start_date}"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:0
#, python-format
msgid "Event reminder: %s on %s."
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:ir.actions.act_window,name:calendar_sms.calendar_event_act_window_sms_composer_single
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type
msgid "Type"
msgstr ""

View file

@ -0,0 +1,103 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lo\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
#: 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 "ປະເພດ"

View file

@ -0,0 +1,109 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Gailius Kazlauskas <gailius@vialaurea.lt>, 2022
# Jonas Zinkevicius <jozi@odoo.com>, 2022
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2022
# Silvija Butko <silvija.butko@gmail.com>, 2022
# Martin Trigaux, 2022
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
# Greta Šeštokė, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Greta Šeštokė, 2024\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
#: 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 "Šiuose susitikimuose nėra dalyvių."
#. module: calendar_sms
#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type
msgid "Type"
msgstr "Tipas"

View file

@ -0,0 +1,104 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Anzelika Adejanova, 2022
# ievaputnina <ievai.putninai@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+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
#: 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"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+0000\n"
"PO-Revision-Date: 2017-09-20 11:33+0000\n"
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mk\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 "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,104 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Niyas Raphy, 2023
# Nikhil Krishnan, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Nikhil Krishnan, 2023\n"
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ml\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
#: 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 "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 ""
#. module: calendar_sms
#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type
msgid "Type"
msgstr "ടൈപ്പ്"

View file

@ -0,0 +1,106 @@
# 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: 2022-12-15 12:50+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mn\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
#: 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 "Төрөл"

View file

@ -0,0 +1,103 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Niyas Raphy, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Niyas Raphy, 2022\n"
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ms\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
#: 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 "taip"

View file

@ -0,0 +1,106 @@
# 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: 2022-12-15 12:50+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nb\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
#: 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"

View file

@ -0,0 +1,48 @@
# 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: 2017-09-20 11:33+0000\n"
"PO-Revision-Date: 2017-09-20 11:33+0000\n"
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ne\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Event"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Jolien De Paepe, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Jolien De Paepe, 2023\n"
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_event
msgid "Calendar Event"
msgstr "Agenda-afspraak"
#. 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
#: 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"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: no\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
#: 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 ""

View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Natalia Gros <nag@odoo.com>, 2022
# Tomasz Leppich <t.leppich@gmail.com>, 2022
# Piotr Strębski <strebski@gmail.com>, 2022
# Maksym <ms@myodoo.pl>, 2022
# Wiktor Kaźmierczak <wik92tor@wp.pl>, 2022
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2022
# Dawid Prus, 2022
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 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
#: 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"

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
# Manuela Silva <mmsrs@sky.com>, 2022
# Rita Bastos, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+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
#: 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 "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"

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Kevilyn Rosa, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Kevilyn Rosa, 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 Calendário"
#. module: calendar_sms
#: model:sms.template,name:calendar_sms.sms_template_data_calendar_reminder
msgid "Calendar Event: Reminder"
msgstr "Evento 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
#: 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"

View file

@ -0,0 +1,109 @@
# 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: 2022-12-15 12:50+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ro\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
#: 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"

View file

@ -0,0 +1,108 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
# Evgeniia Kotova, 2022
# Сергей Шебанин <sergey@shebanin.ru>, 2022
# alenafairy, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: alenafairy, 2023\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
#: 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 "Раздел"

View file

@ -0,0 +1,104 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Jan Prokop, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Martin Trigaux, 2022\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
#: 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"

View file

@ -0,0 +1,108 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Jasmina Macur <jasmina@hbs.si>, 2022
# matjaz k <matjaz@mentis.si>, 2022
# Neun Pro, 2023
# Aleš Pipan, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Aleš Pipan, 2025\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 "Dogodek v koledarju: Opomnik"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event Alarm"
msgstr "Alarm za dogodek"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "Event Alarm Manager"
msgstr "Upravitelj alarmov dogodkov"
#. module: calendar_sms
#. odoo-python
#: code:addons/calendar_sms/models/calendar_event.py:0
#, python-format
msgid "Event reminder: %(name)s, %(time)s."
msgstr "Opomnik na dogodek: %(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 ""
"Opomnik na dogodek: {{ object.name }}, {{ "
"object.get_display_time_tz(object.partner_id.tz) }}"
#. 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 predloga"
#. module: calendar_sms
#: model:ir.model.fields.selection,name:calendar_sms.selection__calendar_alarm__alarm_type__sms
msgid "SMS Text Message"
msgstr "SMS Besedilno sporočilo"
#. 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 "Predloga, ki se uporablja za upodabljanje vsebine opomnikov 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 "Na teh dogodkih ni udeležencev"
#. module: calendar_sms
#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type
msgid "Type"
msgstr "Tip"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sq\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
#: 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 ""

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
# コフスタジオ, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+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
#: 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"

View file

@ -0,0 +1,51 @@
# 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: 2017-09-20 11:33+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr@latin\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 "Event"
msgstr "Događaj"
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm
msgid "Event alarm"
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:23
#, python-format
msgid "Event reminder: %s on %s."
msgstr ""
#. module: calendar_sms
#: code:addons/calendar_sms/models/calendar.py:24
#, python-format
msgid "SMS text message reminder sent !"
msgstr ""
#. module: calendar_sms
#: model:ir.actions.act_window,name:calendar_sms.sms_message_send_action_mutli
msgid "Send SMS to attendees"
msgstr ""
#. module: calendar_sms
#: model:ir.model,name:calendar_sms.model_calendar_alarm_manager
msgid "calendar.alarm_manager"
msgstr ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Han Wong <han.wong@vertel.se>, 2022
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2022
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
# 3eec91a23d05c632ffac786ac42b81b8_b6fff7b <8985b7bc57db860af29969457dbb51b3_1018915>, 2022
# Martin Trigaux, 2022
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
# Kim Asplund <kim.asplund@gmail.com>, 2022
# Larissa Manderfeld, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Larissa Manderfeld, 2024\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 ""
"Påminnelse om evenemang: {{ object.name }}, {{ "
"object.get_display_time_tz(object.partner_id.tz) }}"
#. 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 evenemang"
#. module: calendar_sms
#: model:ir.model.fields,field_description:calendar_sms.field_calendar_alarm__alarm_type
msgid "Type"
msgstr "Typ"

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sw\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
#: 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 ""

View file

@ -0,0 +1,99 @@
# 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: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ta\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
#: 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 ""

View file

@ -0,0 +1,107 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Wichanon Jamwutthipreecha, 2022
# Rasareeyar Lappiam, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+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
#: 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 "ประเภท"

View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2022
# Ediz Duman <neps1192@gmail.com>, 2022
# Tugay Hatıl <tugayh@projetgrup.com>, 2022
# Murat Kaplan <muratk@projetgrup.com>, 2022
# abc Def <hdogan1974@gmail.com>, 2022
# Levent Karakaş <levent@mektup.at>, 2022
# Umur Akın <umura@projetgrup.com>, 2022
# Yedigen, 2022
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ertuğrul Güreş <ertugrulg@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
#: 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"

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\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
#: 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 "Тип"

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Thi Huong Nguyen, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Thi Huong Nguyen, 2024\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 "Lịch sự kiện"
#. 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 ""
"Nhắc nhở sự kiện: {{ object.name }}, {{ "
"object.get_display_time_tz(object.partner_id.tz) }}"
#. 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 "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 Text Message"
#. 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"

View file

@ -0,0 +1,107 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Jeffery CHEN <jeffery9@gmail.com>, 2022
# Emily Jia <eji@odoo.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Emily Jia <eji@odoo.com>, 2023\n"
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: 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
#: 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 "类型"

View file

@ -0,0 +1,106 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * calendar_sms
#
# Translators:
# Martin Trigaux, 2022
# Tony Ng, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Tony Ng, 2025\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
#: 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 "類型"

View 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

View file

@ -0,0 +1,25 @@
# -*- 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.")
@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

View file

@ -0,0 +1,23 @@
# -*- 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
all_events_ids = list({event_id for event_ids in events_by_alarm.values() for event_id in event_ids})
for alarm_id, event_ids in events_by_alarm.items():
alarm = self.env['calendar.alarm'].browse(alarm_id).with_prefetch(list(events_by_alarm.keys()))
events = self.env['calendar.event'].browse(event_ids).with_prefetch(all_events_ids)
events._do_sms_reminder(alarm)

View file

@ -0,0 +1,44 @@
# -*- 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 _sms_get_default_partners(self):
""" Method overridden from mail.thread (defined in the sms module).
SMS text messages will be sent to attendees that haven't declined the event(s).
"""
return self.mapped('attendee_ids').filtered(lambda att: att.state != 'declined' and att.partner_id.phone_sanitized).mapped('partner_id')
def _do_sms_reminder(self, alarm):
""" Send an SMS text reminder to attendees that haven't declined the event """
for event in self:
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=event._sms_get_default_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']

View 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

View file

@ -0,0 +1,116 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from datetime import datetime, timedelta
from odoo import fields
from odoo.addons.sms.tests.common import SMSCase
from odoo.tests.common import TransactionCase
class TestCalendarSms(TransactionCase, SMSCase):
@classmethod
def setUpClass(cls):
super(TestCalendarSms, cls).setUpClass()
now = fields.datetime.now()
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_phone_2 = cls.env['res.partner'].create({
'name': 'Partner With Phone Number',
'phone': '0488888888',
'country_id': cls.env.ref('base.be').id,
})
cls.partner_phone_3 = cls.env['res.partner'].create({
'name': 'Partner With Phone Number',
'phone': '0499999999',
'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.alarm_1h = cls.env['calendar.alarm'].create({
'name': 'Reminder 1 Hour',
'duration': 1,
'interval': 'hours',
'alarm_type': 'sms',
})
cls.alarm_24h = cls.env['calendar.alarm'].create({
'name': 'Reminder 24 Hours',
'duration': 24,
'interval': 'hours',
'alarm_type': 'sms',
})
cls.event_1h = cls.env['calendar.event'].create({
'name': 'Event in 1h',
'start': now + timedelta(hours=1),
'stop': now + timedelta(hours=2),
'alarm_ids': [(4, cls.alarm_1h.id), (4, cls.alarm_24h.id)],
'attendee_ids': [(0, 0, {'partner_id': cls.partner_phone.id})],
})
cls.event_1h_dup = cls.env['calendar.event'].create({
'name': 'Event in 1h',
'start': now + timedelta(hours=1),
'stop': now + timedelta(hours=2),
'alarm_ids': [(4, cls.alarm_1h.id), (4, cls.alarm_24h.id)],
'attendee_ids': [(0, 0, {'partner_id': cls.partner_phone_3.id})],
})
cls.event_24h = cls.env['calendar.event'].create({
'name': 'Event in 24h',
'start': now + timedelta(hours=24),
'stop': now + timedelta(hours=25),
'alarm_ids': [(4, cls.alarm_1h.id), (4, cls.alarm_24h.id)],
'attendee_ids': [(0, 0, {'partner_id': cls.partner_phone_2.id})],
})
cls.sms_template_1h = cls.env['sms.template'].create({
'name': 'Calendar Alarm SMS Template',
'body': 'Reminder: Your event is starting in 1 hour!',
'model_id': cls.env['ir.model']._get('calendar.event').id,
})
cls.alarm_1h.sms_template_id = cls.sms_template_1h.id
cls.sms_template_24h = cls.env['sms.template'].create({
'name': 'Calendar Alarm SMS Template',
'body': 'Reminder: Your event is starting in 24 hour!',
'model_id': cls.env['ir.model']._get('calendar.event').id,
})
cls.alarm_24h.sms_template_id = cls.sms_template_24h.id
def test_attendees_with_number(self):
"""Test if only partners with sanitized number are returned."""
attendees = self.env['calendar.event'].create({
'name': "Boostrap vs Foundation",
'start': datetime(2022, 1, 1, 11, 11),
'stop': datetime(2022, 2, 2, 22, 22),
'partner_ids': [(6, 0, [self.partner_phone.id, self.partner_no_phone.id])],
})._sms_get_default_partners()
self.assertEqual(len(attendees), 1, "There should be only one partner retrieved")
def test_send_reminder_match_both_events(self):
"""
Test that only the necessary SMS messages are sent,
with each SMS template correctly matching its corresponding alarm duration and the event.
"""
with self.mockSMSGateway():
lastcall = fields.Datetime.now() - timedelta(hours=1)
self.env['calendar.alarm_manager'].with_context(lastcall=lastcall)._send_reminder()
self.assertEqual(len(self._sms), 3)
self.assertSMS(self.partner_phone, self.partner_phone.phone_sanitized, 'sent',
content=self.sms_template_1h.body)
self.assertSMS(self.partner_phone_2, self.partner_phone_2.phone_sanitized, 'sent',
content=self.sms_template_24h.body)

View file

@ -0,0 +1,42 @@
<?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" attrs="{'invisible': [('alarm_type','!=','sms')], 'required': [('alarm_type', '=', 'sms')]}"
context="{'default_model': 'calendar.event'}"/>
</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>

View file

@ -0,0 +1,32 @@
# Architecture
```mermaid
flowchart TD
U[Users] -->|HTTP| V[Views and QWeb Templates]
V --> C[Controllers]
V --> W[Wizards Transient Models]
C --> M[Models and ORM]
W --> M
M --> R[Reports]
DX[Data XML] --> M
S[Security ACLs and Groups] -. enforces .-> M
subgraph Calendar_sms Module - calendar_sms
direction LR
M:::layer
W:::layer
C:::layer
V:::layer
R:::layer
S:::layer
DX:::layer
end
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
```
Notes
- Views include tree/form/kanban templates and report templates.
- Controllers provide website/portal routes when present.
- Wizards are UI flows implemented with `models.TransientModel`.
- Data XML loads data/demo records; Security defines groups and access.

View file

@ -0,0 +1,3 @@
# Configuration
Refer to Odoo settings for calendar_sms. Configure related models, access rights, and options as needed.

View file

@ -0,0 +1,3 @@
# Controllers
This module does not define custom HTTP controllers.

View file

@ -0,0 +1,6 @@
# Dependencies
This addon depends on:
- [calendar](../../odoo-bringout-oca-ocb-calendar)
- [sms](../../odoo-bringout-oca-ocb-sms)

View file

@ -0,0 +1,4 @@
# FAQ
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
- Q: How to enable? A: Start server with --addon calendar_sms or install in UI.

View file

@ -0,0 +1,7 @@
# Install
```bash
pip install odoo-bringout-oca-ocb-calendar_sms"
# or
uv pip install odoo-bringout-oca-ocb-calendar_sms"
```

View file

@ -0,0 +1,14 @@
# Models
Detected core models and extensions in calendar_sms.
```mermaid
classDiagram
class calendar_alarm
class calendar_alarm_manager
class calendar_event
```
Notes
- Classes show model technical names; fields omitted for brevity.
- Items listed under _inherit are extensions of existing models.

View file

@ -0,0 +1,6 @@
# Overview
Packaged Odoo addon: calendar_sms. Provides features documented in upstream Odoo 16 under this addon.
- Source: OCA/OCB 16.0, addon calendar_sms
- License: LGPL-3

View file

@ -0,0 +1,3 @@
# Reports
This module does not define custom reports.

View file

@ -0,0 +1,8 @@
# Security
This module does not define custom security rules or access controls beyond Odoo defaults.
Default Odoo security applies:
- Base user access through standard groups
- Model access inherited from dependencies
- No custom row-level security rules

Some files were not shown because too many files have changed in this diff Show more