mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-22 14:42:09 +02:00
Initial commit: Mail packages
This commit is contained in:
commit
4e53507711
1948 changed files with 751201 additions and 0 deletions
52
odoo-bringout-oca-ocb-mass_mailing_slides/README.md
Normal file
52
odoo-bringout-oca-ocb-mass_mailing_slides/README.md
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# Mass mailing on course members
|
||||
|
||||
|
||||
Mass mail course members
|
||||
========================
|
||||
|
||||
Bridge module adding UX requirements to ease mass mailing of course members.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-mass_mailing_slides
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- website_slides
|
||||
- mass_mailing
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Mass mailing on course members
|
||||
- **Version**: 1.0
|
||||
- **Category**: Hidden
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `mass_mailing_slides`.
|
||||
|
||||
## 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
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.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
|
||||
|
|
@ -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 Mass_mailing_slides Module - mass_mailing_slides
|
||||
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.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for mass_mailing_slides. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [website_slides](../../odoo-bringout-oca-ocb-website_slides)
|
||||
- [mass_mailing](../../odoo-bringout-oca-ocb-mass_mailing)
|
||||
4
odoo-bringout-oca-ocb-mass_mailing_slides/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-mass_mailing_slides/doc/FAQ.md
Normal 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 mass_mailing_slides or install in UI.
|
||||
7
odoo-bringout-oca-ocb-mass_mailing_slides/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-mass_mailing_slides/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-mass_mailing_slides"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-mass_mailing_slides"
|
||||
```
|
||||
12
odoo-bringout-oca-ocb-mass_mailing_slides/doc/MODELS.md
Normal file
12
odoo-bringout-oca-ocb-mass_mailing_slides/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in mass_mailing_slides.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class slide_channel
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: mass_mailing_slides. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon mass_mailing_slides
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-mass_mailing_slides/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-mass_mailing_slides/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
|
|
@ -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
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-mass_mailing_slides/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-mass_mailing_slides/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon mass_mailing_slides
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-mass_mailing_slides/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-mass_mailing_slides/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Mass mailing on course members',
|
||||
'category': 'Hidden',
|
||||
'version': '1.0',
|
||||
'description':
|
||||
"""
|
||||
Mass mail course members
|
||||
========================
|
||||
|
||||
Bridge module adding UX requirements to ease mass mailing of course members.
|
||||
""",
|
||||
'depends': ['website_slides', 'mass_mailing'],
|
||||
'data': [
|
||||
'views/slide_channel_views.xml'
|
||||
],
|
||||
'auto_install': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "التواصل مع الحاضرين "
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "دورة"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "أعضاء دورة المراسلات الجماعية "
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "İştirakçılar ilə əlaqə saxlayın"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Dinovski, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Курс"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#. odoo-python
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Kontaktiraj prisutne"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Tečaj"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#. odoo-python
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Masovna poruka sudionicima tečaja"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# jabelchi, 2022
|
||||
# marcescu, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: marcescu, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contactar amb els assistents"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Curs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Membres del curs de correu massiu"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Jiří Podhorecký, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Kontaktujte účastníky"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Členové kurzu hromadné pošty"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Mads Søndergaard, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Mads Søndergaard, 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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Kontakt deltagere"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kursus"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Masse mail kursus medlemmer"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Friederike Fasterling-Nesselbosch, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Friederike Fasterling-Nesselbosch, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Teilnehmer kontaktieren"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Massenmail an Kursteilnehmer"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contactar a los asistentes"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Curso"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Correo masivo para miembros del curso"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Braulio D. López Vázquez <bdl@odoo.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contactar a los asistentes"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Curso"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Correo masivo para miembros del curso"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Võtke osalejatega ühendust"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kursus"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Mass e-posti turunduse kursuse osalejad"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "تماس با شرکت کنندگان"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "دوره"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Ole yhteydessä osallistujiin"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurssi"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Lähetä joukkosähköpostia kurssin jäsenille"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contacter les participants"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Cours"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Email marketing membres du cours"
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Netta Waizer, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "צור קשר עם המשתתפים"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "קורס"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "דיוור המוני למשתתפי קורס"
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Kontaktiraj prisutne"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Tečaj"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Masovna poruka sudionicima tečaja"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurzus"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Hubungi Peserta"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kursus"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Kursus Email Massal Anggota"
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contatta partecipanti"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Corso"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Invio e-mail di massa per iscritti al corso"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "参加者に連絡する"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "コース"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "一括送信メールコースメンバ"
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# JH CHOI <hwangtog@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: JH CHOI <hwangtog@gmail.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "참석자 문의"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "강좌"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "강좌 회원 일괄 메일"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
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:11+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
msgid "<span class=\"o_stat_text\">Mail Attendees</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Mail Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Slide Channel"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2022
|
||||
# Gailius Kazlauskas <gailius@vialaurea.lt>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Gailius Kazlauskas <gailius@vialaurea.lt>, 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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Susisiekite su dalyviais"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kursas"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Masinė žinutė kurso nariams"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Sazinieties ar dalībniekiem"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#. odoo-python
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "കോഴ്സ്"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Курс"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kursus"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Kontakt deltakere"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Send masse-post til kursdeltakere"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Yenthe Van Ginneken <yenthespam@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Yenthe Van Ginneken <yenthespam@gmail.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Neem contact op met deelnemers"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Cursus"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Bulk mailing cursus leden"
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Dawid Prus, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Maksym <ms@myodoo.pl>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Skontaktuj się z uczestnikami"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Poczta Masowa Członkowie Kursu"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# cafonso <cafonso62@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: cafonso <cafonso62@gmail.com>, 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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contato dos Participantes"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Curso"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Membros do Curso de E-mail em Massa"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Éder Brito <britoederr@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Éder Brito <britoederr@gmail.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contato dos Participantes"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Curso"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Membros do Curso de E-mail em Massa"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Claudia Baisan, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contactați participanții"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Curs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Mesaj Multiplu Membrii Curs "
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# alenafairy, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Связаться с участниками"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Обучающий курс"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Участники курса массовой рассылки"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Kontakt účastníkov"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurz "
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Členovia kurzu hromadnej pošty"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Aleš Pipan, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2024\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Sporočilo udeležencem"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Vsebina"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Kontaktiraj učesnike"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Masovni mail članovima kursa"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Kontakta deltagare"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Massutskick till kursdeltagare"
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "ติดต่อผู้เข้าร่วม"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "คอร์ส"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "สมาชิกคอร์สอีเมลกลุ่ม"
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Yedigen, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Murat Durmuş <muratd@projetgrup.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Katılımcılarla İletişim"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Kurs"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Toplu Posta Kurs Üyeleri"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Зв'язатися з учасником"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Курс"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Члени курсу масової розсилки"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Trần Hà <tranthuha13590@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "Contact Attendees"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "Khóa học"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "Mass Mail Course Members"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# liAnGjiA <liangjia@qq.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: liAnGjiA <liangjia@qq.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "联系与会者"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "课程"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "群发邮件课程成员"
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * mass_mailing_slides
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 敬雲 林 <chingyun@yuanchih-consult.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-10-08 06:38+0000\n"
|
||||
"PO-Revision-Date: 2022-10-04 09:55+0000\n"
|
||||
"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2022\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: mass_mailing_slides
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:mass_mailing_slides.slide_channel_view_kanban
|
||||
msgid "Contact Attendees"
|
||||
msgstr "聯繫活動參加者"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: model:ir.model,name:mass_mailing_slides.model_slide_channel
|
||||
msgid "Course"
|
||||
msgstr "課程"
|
||||
|
||||
#. module: mass_mailing_slides
|
||||
#: code:addons/mass_mailing_slides/models/slide_channel.py:0
|
||||
#, python-format
|
||||
msgid "Mass Mail Course Members"
|
||||
msgstr "群發郵件課程成員"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import slide_channel
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, _
|
||||
|
||||
|
||||
class Course(models.Model):
|
||||
_inherit = "slide.channel"
|
||||
|
||||
def action_mass_mailing_attendees(self):
|
||||
domain = repr([('slide_channel_ids', 'in', self.ids)])
|
||||
mass_mailing_action = dict(
|
||||
name=_('Mass Mail Course Members'),
|
||||
type='ir.actions.act_window',
|
||||
res_model='mailing.mailing',
|
||||
view_mode='form',
|
||||
target='current',
|
||||
context=dict(
|
||||
default_mailing_model_id=self.env.ref('base.model_res_partner').id,
|
||||
default_mailing_domain=domain,
|
||||
),
|
||||
)
|
||||
return mass_mailing_action
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
<record id="slide_channel_view_form" model="ir.ui.view">
|
||||
<field name="name">slide.channel.view.form.inherit.mass.mailing</field>
|
||||
<field name="model">slide.channel</field>
|
||||
<field name="inherit_id" ref="website_slides.view_slide_channel_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<button name="action_channel_invite" position="after">
|
||||
<field name="members_count" invisible="1"/>
|
||||
<button name="action_mass_mailing_attendees" string="Contact Attendees" type="object"
|
||||
class="oe_highlight" attrs="{'invisible': [('members_count', '=', 0)]}"
|
||||
groups="mass_mailing.group_mass_mailing_user"/>
|
||||
</button>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="slide_channel_view_kanban" model="ir.ui.view">
|
||||
<field name="name">slide.channel.view.kanban.inherit.mass.mailing</field>
|
||||
<field name="model">slide.channel</field>
|
||||
<field name="inherit_id" ref="website_slides.slide_channel_view_kanban"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@name='action_channel_invite']" position="after">
|
||||
<div role="menuitem">
|
||||
<a name="action_mass_mailing_attendees" type="object"
|
||||
groups="mass_mailing.group_mass_mailing_user" class="float-start pe-1">
|
||||
Contact Attendees
|
||||
</a>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
43
odoo-bringout-oca-ocb-mass_mailing_slides/pyproject.toml
Normal file
43
odoo-bringout-oca-ocb-mass_mailing_slides/pyproject.toml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-mass_mailing_slides"
|
||||
version = "16.0.0"
|
||||
description = "Mass mailing on course members - Odoo addon"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-website_slides>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-mass_mailing>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["mass_mailing_slides"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue