Cyril VINH-TUNG
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
60 changed files with 1775 additions and 0 deletions
-
52mail_footer_notified_partner/README.rst
-
4mail_footer_notified_partner/__init__.py
-
19mail_footer_notified_partner/__manifest__.py
-
30mail_footer_notified_partner/i18n/am.po
-
31mail_footer_notified_partner/i18n/ar.po
-
30mail_footer_notified_partner/i18n/bg.po
-
31mail_footer_notified_partner/i18n/bs.po
-
30mail_footer_notified_partner/i18n/ca.po
-
30mail_footer_notified_partner/i18n/cs.po
-
30mail_footer_notified_partner/i18n/da.po
-
30mail_footer_notified_partner/i18n/de.po
-
31mail_footer_notified_partner/i18n/el_GR.po
-
31mail_footer_notified_partner/i18n/en_GB.po
-
30mail_footer_notified_partner/i18n/es.po
-
31mail_footer_notified_partner/i18n/es_CR.po
-
31mail_footer_notified_partner/i18n/es_EC.po
-
31mail_footer_notified_partner/i18n/es_MX.po
-
31mail_footer_notified_partner/i18n/es_VE.po
-
30mail_footer_notified_partner/i18n/et.po
-
30mail_footer_notified_partner/i18n/eu.po
-
30mail_footer_notified_partner/i18n/fi.po
-
30mail_footer_notified_partner/i18n/fr.po
-
31mail_footer_notified_partner/i18n/fr_CA.po
-
31mail_footer_notified_partner/i18n/fr_CH.po
-
30mail_footer_notified_partner/i18n/gl.po
-
31mail_footer_notified_partner/i18n/hr.po
-
32mail_footer_notified_partner/i18n/hr_HR.po
-
30mail_footer_notified_partner/i18n/hu.po
-
30mail_footer_notified_partner/i18n/it.po
-
30mail_footer_notified_partner/i18n/ja.po
-
31mail_footer_notified_partner/i18n/lt.po
-
31mail_footer_notified_partner/i18n/lv.po
-
26mail_footer_notified_partner/i18n/mail_footer_notified_partner.pot
-
30mail_footer_notified_partner/i18n/mk.po
-
30mail_footer_notified_partner/i18n/mn.po
-
31mail_footer_notified_partner/i18n/nb.po
-
31mail_footer_notified_partner/i18n/nb_NO.po
-
30mail_footer_notified_partner/i18n/nl.po
-
31mail_footer_notified_partner/i18n/nl_BE.po
-
31mail_footer_notified_partner/i18n/nl_NL.po
-
32mail_footer_notified_partner/i18n/pl.po
-
30mail_footer_notified_partner/i18n/pt.po
-
31mail_footer_notified_partner/i18n/pt_BR.po
-
31mail_footer_notified_partner/i18n/pt_PT.po
-
31mail_footer_notified_partner/i18n/ro.po
-
32mail_footer_notified_partner/i18n/ru.po
-
30mail_footer_notified_partner/i18n/sk.po
-
31mail_footer_notified_partner/i18n/sl.po
-
32mail_footer_notified_partner/i18n/sr@latin.po
-
30mail_footer_notified_partner/i18n/sv.po
-
30mail_footer_notified_partner/i18n/th.po
-
30mail_footer_notified_partner/i18n/tr.po
-
31mail_footer_notified_partner/i18n/tr_TR.po
-
30mail_footer_notified_partner/i18n/vi.po
-
31mail_footer_notified_partner/i18n/zh_CN.po
-
31mail_footer_notified_partner/i18n/zh_TW.po
-
4mail_footer_notified_partner/models/__init__.py
-
46mail_footer_notified_partner/models/mail_followers.py
-
4mail_footer_notified_partner/tests/__init__.py
-
28mail_footer_notified_partner/tests/test_mail_notification.py
@ -0,0 +1,52 @@ |
|||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg |
|||
:target: https://www.gnu.org/licenses/agpl |
|||
:alt: License: AGPL-3 |
|||
|
|||
================================ |
|||
Notified partners in mail footer |
|||
================================ |
|||
|
|||
This module adds the list of notified partners in the footer of notification e-mails sent by Odoo. |
|||
The partner will be added if its 'notify_email' is not 'none'. |
|||
(In order to be consistent with Odoo) |
|||
|
|||
Usage |
|||
===== |
|||
|
|||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas |
|||
:target: https://runbot.odoo-community.org/runbot/205/10.0 |
|||
:alt: Try me on Runbot |
|||
|
|||
Bug Tracker |
|||
=========== |
|||
|
|||
Bugs are tracked on `GitHub Issues |
|||
<https://github.com/OCA/social/issues>`_. In case of trouble, please |
|||
check there if your issue has already been reported. If you spotted it first, |
|||
help us smash it by providing detailed and welcomed feedback. |
|||
|
|||
Credits |
|||
======= |
|||
|
|||
Contributors |
|||
------------ |
|||
|
|||
* Jonathan Nemry <jonathan.nemry@acsone.eu> |
|||
* Simone Rubino <simone.rubino@agilebg.com> |
|||
|
|||
Do not contact contributors directly about support or help with technical issues. |
|||
|
|||
Maintainer |
|||
---------- |
|||
|
|||
.. image:: https://odoo-community.org/logo.png |
|||
:alt: Odoo Community Association |
|||
:target: https://odoo-community.org |
|||
|
|||
This module is maintained by the OCA. |
|||
|
|||
OCA, or the Odoo Community Association, is a nonprofit organization whose |
|||
mission is to support the collaborative development of Odoo features and |
|||
promote its widespread use. |
|||
|
|||
To contribute to this module, please visit https://odoo-community.org. |
@ -0,0 +1,4 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 ACSONE SA/NV <https://acsone.eu> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
from . import models |
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 ACSONE SA/NV <https://acsone.eu> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
{ |
|||
"name": "Notified partners in mail footer", |
|||
"summary": """ |
|||
This module adds the list of notified partners in the footer of |
|||
notification e-mails sent by Odoo. |
|||
""", |
|||
"author": "ACSONE SA/NV,Odoo Community Association (OCA)", |
|||
"installable": True, |
|||
"website": "http://acsone.eu", |
|||
"category": "Mail", |
|||
"version": "11.0.1.0.1", |
|||
"license": "AGPL-3", |
|||
"depends": [ |
|||
"mail", |
|||
], |
|||
} |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" |
|||
"Language: am\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "ተባባሪ" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" |
|||
"Language: ar\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \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: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "الشريك" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-01-16 03:47+0000\n" |
|||
"PO-Revision-Date: 2018-01-16 03:47+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n" |
|||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" |
|||
"Language: bg\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Партньор" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" |
|||
"Language: bs\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
|||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" |
|||
"Language: ca\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" |
|||
"Language: cs\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Společník" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" |
|||
"Language: da\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-01-16 03:47+0000\n" |
|||
"PO-Revision-Date: 2018-01-16 03:47+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n" |
|||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" |
|||
"Language: de\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-01-16 03:47+0000\n" |
|||
"PO-Revision-Date: 2018-01-16 03:47+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n" |
|||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" |
|||
"el_GR/)\n" |
|||
"Language: el_GR\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Συνεργάτης" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" |
|||
"teams/23907/en_GB/)\n" |
|||
"Language: en_GB\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" |
|||
"Language: es\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" |
|||
"teams/23907/es_CR/)\n" |
|||
"Language: es_CR\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" |
|||
"es_EC/)\n" |
|||
"Language: es_EC\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" |
|||
"es_MX/)\n" |
|||
"Language: es_MX\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" |
|||
"teams/23907/es_VE/)\n" |
|||
"Language: es_VE\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" |
|||
"Language: et\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-01-16 03:47+0000\n" |
|||
"PO-Revision-Date: 2018-01-16 03:47+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n" |
|||
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" |
|||
"Language: eu\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Kidea" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" |
|||
"Language: fi\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Kumppani" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" |
|||
"Language: fr\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partenaire" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" |
|||
"fr_CA/)\n" |
|||
"Language: fr_CA\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partenaire" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-01-16 03:47+0000\n" |
|||
"PO-Revision-Date: 2018-01-16 03:47+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n" |
|||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" |
|||
"teams/23907/fr_CH/)\n" |
|||
"Language: fr_CH\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partenaire" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" |
|||
"Language: gl\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" |
|||
"Language: hr\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
|||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,32 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" |
|||
"hr_HR/)\n" |
|||
"Language: hr_HR\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
|||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" |
|||
"Language: hu\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" |
|||
"Language: it\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" |
|||
"Language: ja\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "パートナ" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" |
|||
"Language: lt\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" |
|||
"%100<10 || n%100>=20) ? 1 : 2);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partneris" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" |
|||
"Language: lv\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " |
|||
"2);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partneris" |
@ -0,0 +1,26 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \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: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "" |
|||
|
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" |
|||
"Language: mk\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Партнер" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" |
|||
"Language: mn\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Харилцагч" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" |
|||
"nb/)\n" |
|||
"Language: nb\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" |
|||
"teams/23907/nb_NO/)\n" |
|||
"Language: nb_NO\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" |
|||
"Language: nl\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" |
|||
"nl_BE/)\n" |
|||
"Language: nl_BE\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Relatie" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# Peter Hageman <hageman.p@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n" |
|||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" |
|||
"teams/23907/nl_NL/)\n" |
|||
"Language: nl_NL\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,32 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" |
|||
"Language: pl\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \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: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" |
|||
"Language: pt\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Entidade" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" |
|||
"teams/23907/pt_BR/)\n" |
|||
"Language: pt_BR\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Parceiro" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" |
|||
"teams/23907/pt_PT/)\n" |
|||
"Language: pt_PT\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Parceiro" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" |
|||
"Language: ro\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" |
|||
"2:1));\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partener" |
@ -0,0 +1,32 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" |
|||
"Language: ru\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \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: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Контрагент" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-01-16 03:47+0000\n" |
|||
"PO-Revision-Date: 2018-01-16 03:47+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n" |
|||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" |
|||
"Language: sk\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" |
|||
"Language: sl\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" |
|||
"%100==4 ? 2 : 3);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,32 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" |
|||
"%40latin/)\n" |
|||
"Language: sr@latin\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
|||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" |
|||
"Language: sv\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Företag" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" |
|||
"Language: th\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "พาร์ทเนอร์" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" |
|||
"Language: tr\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "İş Ortağı" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-01-16 03:47+0000\n" |
|||
"PO-Revision-Date: 2018-01-16 03:47+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n" |
|||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" |
|||
"tr_TR/)\n" |
|||
"Language: tr_TR\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Ortak" |
@ -0,0 +1,30 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" |
|||
"Language: vi\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Đối tác" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" |
|||
"zh_CN/)\n" |
|||
"Language: zh_CN\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "业务伙伴" |
@ -0,0 +1,31 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * mail_footer_notified_partner |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:19+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:19+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" |
|||
"zh_TW/)\n" |
|||
"Language: zh_TW\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 |
|||
#, python-format |
|||
msgid "Also notified: " |
|||
msgstr "" |
|||
|
|||
#. module: mail_footer_notified_partner |
|||
#: model:ir.model,name:mail_footer_notified_partner.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "夥伴" |
@ -0,0 +1,4 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 ACSONE SA/NV <https://acsone.eu> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
from . import mail_followers |
@ -0,0 +1,46 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 ACSONE SA/NV <https://acsone.eu> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from odoo import models, api |
|||
from odoo.tools.translate import _ |
|||
|
|||
|
|||
class MailNotification(models.Model): |
|||
_inherit = 'res.partner' |
|||
|
|||
@api.multi |
|||
def _notify_by_email( |
|||
self, message, force_send=False, send_after_commit=True, |
|||
user_signature=True |
|||
): |
|||
# we need to save the complete list of partners because |
|||
# _message_notification_recipients builds recipients |
|||
# grouped by users groups. Thus get_additional_footer would get a |
|||
# partial list of recipients |
|||
return super( |
|||
MailNotification, self.with_context(notified_partners=self) |
|||
)._notify_by_email( |
|||
message, force_send=force_send, |
|||
send_after_commit=send_after_commit, |
|||
user_signature=user_signature |
|||
) |
|||
|
|||
@api.model |
|||
def _notify_send(self, body, subject, recipients, **mail_values): |
|||
footer_recipients = self.env.context.get( |
|||
'notified_partners', recipients) or recipients |
|||
newbody = self.get_additional_footer(footer_recipients) |
|||
newbody += body |
|||
return super(MailNotification, self).\ |
|||
_notify_send(newbody, subject, recipients, **mail_values) |
|||
|
|||
@api.model |
|||
def get_additional_footer(self, recipients): |
|||
recipients_name = [ |
|||
recipient.name for recipient in recipients |
|||
] |
|||
additional_footer = u'<br /><b>%s%s.</b><br />' % \ |
|||
(_('Also notified: '), |
|||
', '.join(recipients_name)) |
|||
return additional_footer |
@ -0,0 +1,4 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 ACSONE SA/NV <https://acsone.eu> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
from . import test_mail_notification |
@ -0,0 +1,28 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# © 2016 ACSONE SA/NV <https://acsone.eu> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
import odoo.tests.common as common |
|||
|
|||
|
|||
class TestMailNotification(common.TransactionCase): |
|||
def setUp(self): |
|||
super(TestMailNotification, self).setUp() |
|||
|
|||
self.partner_obj = self.env['res.partner'] |
|||
|
|||
def test_get_signature_footer(self): |
|||
vals = { |
|||
'name': 'p1@example.com', |
|||
} |
|||
partner1 = self.partner_obj.create(vals) |
|||
|
|||
body = 'this is the body' |
|||
subject = 'this is the subject' |
|||
recipients = partner1 |
|||
emails, recipients_nbr = \ |
|||
self.partner_obj._notify_send(body, subject, recipients) |
|||
|
|||
self.assertTrue( |
|||
partner1.name in emails.body_html, |
|||
'Partner name is not in the body of the mail') |
Write
Preview
Loading…
Cancel
Save
Reference in new issue