diff --git a/mail_footer_notified_partner/README.rst b/mail_footer_notified_partner/README.rst new file mode 100644 index 00000000..1a0022f5 --- /dev/null +++ b/mail_footer_notified_partner/README.rst @@ -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 +`_. 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 +* Simone Rubino + +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. \ No newline at end of file diff --git a/mail_footer_notified_partner/__init__.py b/mail_footer_notified_partner/__init__.py new file mode 100644 index 00000000..37c0ad40 --- /dev/null +++ b/mail_footer_notified_partner/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2016 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import models diff --git a/mail_footer_notified_partner/__manifest__.py b/mail_footer_notified_partner/__manifest__.py new file mode 100644 index 00000000..c4484b1a --- /dev/null +++ b/mail_footer_notified_partner/__manifest__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# © 2016 ACSONE SA/NV +# 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", + ], +} diff --git a/mail_footer_notified_partner/i18n/am.po b/mail_footer_notified_partner/i18n/am.po new file mode 100644 index 00000000..b423e5dd --- /dev/null +++ b/mail_footer_notified_partner/i18n/am.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "ተባባሪ" diff --git a/mail_footer_notified_partner/i18n/ar.po b/mail_footer_notified_partner/i18n/ar.po new file mode 100644 index 00000000..4e46a809 --- /dev/null +++ b/mail_footer_notified_partner/i18n/ar.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "الشريك" diff --git a/mail_footer_notified_partner/i18n/bg.po b/mail_footer_notified_partner/i18n/bg.po new file mode 100644 index 00000000..e8202ca7 --- /dev/null +++ b/mail_footer_notified_partner/i18n/bg.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "Партньор" diff --git a/mail_footer_notified_partner/i18n/bs.po b/mail_footer_notified_partner/i18n/bs.po new file mode 100644 index 00000000..141aad19 --- /dev/null +++ b/mail_footer_notified_partner/i18n/bs.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/ca.po b/mail_footer_notified_partner/i18n/ca.po new file mode 100644 index 00000000..d64d474b --- /dev/null +++ b/mail_footer_notified_partner/i18n/ca.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/cs.po b/mail_footer_notified_partner/i18n/cs.po new file mode 100644 index 00000000..08fdf2eb --- /dev/null +++ b/mail_footer_notified_partner/i18n/cs.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/da.po b/mail_footer_notified_partner/i18n/da.po new file mode 100644 index 00000000..9096e8de --- /dev/null +++ b/mail_footer_notified_partner/i18n/da.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/de.po b/mail_footer_notified_partner/i18n/de.po new file mode 100644 index 00000000..cd1b69d9 --- /dev/null +++ b/mail_footer_notified_partner/i18n/de.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/el_GR.po b/mail_footer_notified_partner/i18n/el_GR.po new file mode 100644 index 00000000..e1ea97da --- /dev/null +++ b/mail_footer_notified_partner/i18n/el_GR.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "Συνεργάτης" diff --git a/mail_footer_notified_partner/i18n/en_GB.po b/mail_footer_notified_partner/i18n/en_GB.po new file mode 100644 index 00000000..c28453d6 --- /dev/null +++ b/mail_footer_notified_partner/i18n/en_GB.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/es.po b/mail_footer_notified_partner/i18n/es.po new file mode 100644 index 00000000..d8540e2b --- /dev/null +++ b/mail_footer_notified_partner/i18n/es.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/es_CR.po b/mail_footer_notified_partner/i18n/es_CR.po new file mode 100644 index 00000000..0e1e0aea --- /dev/null +++ b/mail_footer_notified_partner/i18n/es_CR.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/es_EC.po b/mail_footer_notified_partner/i18n/es_EC.po new file mode 100644 index 00000000..0e8fce52 --- /dev/null +++ b/mail_footer_notified_partner/i18n/es_EC.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/es_MX.po b/mail_footer_notified_partner/i18n/es_MX.po new file mode 100644 index 00000000..41d5196b --- /dev/null +++ b/mail_footer_notified_partner/i18n/es_MX.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/es_VE.po b/mail_footer_notified_partner/i18n/es_VE.po new file mode 100644 index 00000000..94708a3a --- /dev/null +++ b/mail_footer_notified_partner/i18n/es_VE.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/et.po b/mail_footer_notified_partner/i18n/et.po new file mode 100644 index 00000000..5e3467e7 --- /dev/null +++ b/mail_footer_notified_partner/i18n/et.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/eu.po b/mail_footer_notified_partner/i18n/eu.po new file mode 100644 index 00000000..f586452f --- /dev/null +++ b/mail_footer_notified_partner/i18n/eu.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/fi.po b/mail_footer_notified_partner/i18n/fi.po new file mode 100644 index 00000000..32664bbc --- /dev/null +++ b/mail_footer_notified_partner/i18n/fi.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/fr.po b/mail_footer_notified_partner/i18n/fr.po new file mode 100644 index 00000000..97189306 --- /dev/null +++ b/mail_footer_notified_partner/i18n/fr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/fr_CA.po b/mail_footer_notified_partner/i18n/fr_CA.po new file mode 100644 index 00000000..c4e8304a --- /dev/null +++ b/mail_footer_notified_partner/i18n/fr_CA.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/fr_CH.po b/mail_footer_notified_partner/i18n/fr_CH.po new file mode 100644 index 00000000..5a9a9818 --- /dev/null +++ b/mail_footer_notified_partner/i18n/fr_CH.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/gl.po b/mail_footer_notified_partner/i18n/gl.po new file mode 100644 index 00000000..355e8c02 --- /dev/null +++ b/mail_footer_notified_partner/i18n/gl.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/hr.po b/mail_footer_notified_partner/i18n/hr.po new file mode 100644 index 00000000..96bfc4c9 --- /dev/null +++ b/mail_footer_notified_partner/i18n/hr.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/hr_HR.po b/mail_footer_notified_partner/i18n/hr_HR.po new file mode 100644 index 00000000..91ab5fc2 --- /dev/null +++ b/mail_footer_notified_partner/i18n/hr_HR.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/hu.po b/mail_footer_notified_partner/i18n/hu.po new file mode 100644 index 00000000..bf799ce4 --- /dev/null +++ b/mail_footer_notified_partner/i18n/hu.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/it.po b/mail_footer_notified_partner/i18n/it.po new file mode 100644 index 00000000..c73fb982 --- /dev/null +++ b/mail_footer_notified_partner/i18n/it.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/ja.po b/mail_footer_notified_partner/i18n/ja.po new file mode 100644 index 00000000..8d86b41f --- /dev/null +++ b/mail_footer_notified_partner/i18n/ja.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "パートナ" diff --git a/mail_footer_notified_partner/i18n/lt.po b/mail_footer_notified_partner/i18n/lt.po new file mode 100644 index 00000000..c0e298dc --- /dev/null +++ b/mail_footer_notified_partner/i18n/lt.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/lv.po b/mail_footer_notified_partner/i18n/lv.po new file mode 100644 index 00000000..b52e777a --- /dev/null +++ b/mail_footer_notified_partner/i18n/lv.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/mail_footer_notified_partner.pot b/mail_footer_notified_partner/i18n/mail_footer_notified_partner.pot new file mode 100644 index 00000000..8a4fe3fa --- /dev/null +++ b/mail_footer_notified_partner/i18n/mail_footer_notified_partner.pot @@ -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 "" + diff --git a/mail_footer_notified_partner/i18n/mk.po b/mail_footer_notified_partner/i18n/mk.po new file mode 100644 index 00000000..52f71f09 --- /dev/null +++ b/mail_footer_notified_partner/i18n/mk.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "Партнер" diff --git a/mail_footer_notified_partner/i18n/mn.po b/mail_footer_notified_partner/i18n/mn.po new file mode 100644 index 00000000..cd50b9a9 --- /dev/null +++ b/mail_footer_notified_partner/i18n/mn.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "Харилцагч" diff --git a/mail_footer_notified_partner/i18n/nb.po b/mail_footer_notified_partner/i18n/nb.po new file mode 100644 index 00000000..546c59b7 --- /dev/null +++ b/mail_footer_notified_partner/i18n/nb.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/nb_NO.po b/mail_footer_notified_partner/i18n/nb_NO.po new file mode 100644 index 00000000..cc23a55e --- /dev/null +++ b/mail_footer_notified_partner/i18n/nb_NO.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/nl.po b/mail_footer_notified_partner/i18n/nl.po new file mode 100644 index 00000000..3e246924 --- /dev/null +++ b/mail_footer_notified_partner/i18n/nl.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/nl_BE.po b/mail_footer_notified_partner/i18n/nl_BE.po new file mode 100644 index 00000000..5f827aa4 --- /dev/null +++ b/mail_footer_notified_partner/i18n/nl_BE.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/nl_NL.po b/mail_footer_notified_partner/i18n/nl_NL.po new file mode 100644 index 00000000..c1ef91a5 --- /dev/null +++ b/mail_footer_notified_partner/i18n/nl_NL.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# Peter Hageman , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/pl.po b/mail_footer_notified_partner/i18n/pl.po new file mode 100644 index 00000000..7abae1ee --- /dev/null +++ b/mail_footer_notified_partner/i18n/pl.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/pt.po b/mail_footer_notified_partner/i18n/pt.po new file mode 100644 index 00000000..43386ccd --- /dev/null +++ b/mail_footer_notified_partner/i18n/pt.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/pt_BR.po b/mail_footer_notified_partner/i18n/pt_BR.po new file mode 100644 index 00000000..9e497ba7 --- /dev/null +++ b/mail_footer_notified_partner/i18n/pt_BR.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/pt_PT.po b/mail_footer_notified_partner/i18n/pt_PT.po new file mode 100644 index 00000000..80c3b88b --- /dev/null +++ b/mail_footer_notified_partner/i18n/pt_PT.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/ro.po b/mail_footer_notified_partner/i18n/ro.po new file mode 100644 index 00000000..c09a9f74 --- /dev/null +++ b/mail_footer_notified_partner/i18n/ro.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/ru.po b/mail_footer_notified_partner/i18n/ru.po new file mode 100644 index 00000000..566685b0 --- /dev/null +++ b/mail_footer_notified_partner/i18n/ru.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "Контрагент" diff --git a/mail_footer_notified_partner/i18n/sk.po b/mail_footer_notified_partner/i18n/sk.po new file mode 100644 index 00000000..a0e6b49a --- /dev/null +++ b/mail_footer_notified_partner/i18n/sk.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/sl.po b/mail_footer_notified_partner/i18n/sl.po new file mode 100644 index 00000000..fad7e0cb --- /dev/null +++ b/mail_footer_notified_partner/i18n/sl.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/sr@latin.po b/mail_footer_notified_partner/i18n/sr@latin.po new file mode 100644 index 00000000..d3fd1f40 --- /dev/null +++ b/mail_footer_notified_partner/i18n/sr@latin.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/sv.po b/mail_footer_notified_partner/i18n/sv.po new file mode 100644 index 00000000..344c8aad --- /dev/null +++ b/mail_footer_notified_partner/i18n/sv.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/th.po b/mail_footer_notified_partner/i18n/th.po new file mode 100644 index 00000000..221e5389 --- /dev/null +++ b/mail_footer_notified_partner/i18n/th.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "พาร์ทเนอร์" diff --git a/mail_footer_notified_partner/i18n/tr.po b/mail_footer_notified_partner/i18n/tr.po new file mode 100644 index 00000000..bd3ada13 --- /dev/null +++ b/mail_footer_notified_partner/i18n/tr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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ğı" diff --git a/mail_footer_notified_partner/i18n/tr_TR.po b/mail_footer_notified_partner/i18n/tr_TR.po new file mode 100644 index 00000000..82b5034c --- /dev/null +++ b/mail_footer_notified_partner/i18n/tr_TR.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/vi.po b/mail_footer_notified_partner/i18n/vi.po new file mode 100644 index 00000000..b3f669e4 --- /dev/null +++ b/mail_footer_notified_partner/i18n/vi.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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" diff --git a/mail_footer_notified_partner/i18n/zh_CN.po b/mail_footer_notified_partner/i18n/zh_CN.po new file mode 100644 index 00000000..ef6e31e8 --- /dev/null +++ b/mail_footer_notified_partner/i18n/zh_CN.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "业务伙伴" diff --git a/mail_footer_notified_partner/i18n/zh_TW.po b/mail_footer_notified_partner/i18n/zh_TW.po new file mode 100644 index 00000000..a1f91779 --- /dev/null +++ b/mail_footer_notified_partner/i18n/zh_TW.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +# Translators: +# OCA Transbot , 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 , 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 "夥伴" diff --git a/mail_footer_notified_partner/models/__init__.py b/mail_footer_notified_partner/models/__init__.py new file mode 100644 index 00000000..de1bfecf --- /dev/null +++ b/mail_footer_notified_partner/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2016 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import mail_followers diff --git a/mail_footer_notified_partner/models/mail_followers.py b/mail_footer_notified_partner/models/mail_followers.py new file mode 100644 index 00000000..d6bbc2f8 --- /dev/null +++ b/mail_footer_notified_partner/models/mail_followers.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +# © 2016 ACSONE SA/NV +# 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'
%s%s.
' % \ + (_('Also notified: '), + ', '.join(recipients_name)) + return additional_footer diff --git a/mail_footer_notified_partner/tests/__init__.py b/mail_footer_notified_partner/tests/__init__.py new file mode 100644 index 00000000..4488e7cd --- /dev/null +++ b/mail_footer_notified_partner/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2016 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import test_mail_notification diff --git a/mail_footer_notified_partner/tests/test_mail_notification.py b/mail_footer_notified_partner/tests/test_mail_notification.py new file mode 100644 index 00000000..b0fc5127 --- /dev/null +++ b/mail_footer_notified_partner/tests/test_mail_notification.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# © 2016 ACSONE SA/NV +# 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')