diff --git a/mail_follower_custom_notification/README.rst b/mail_follower_custom_notification/README.rst new file mode 100644 index 00000000..b03244ad --- /dev/null +++ b/mail_follower_custom_notification/README.rst @@ -0,0 +1,97 @@ +========================================== +Custom notification settings for followers +========================================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github + :target: https://github.com/OCA/social/tree/10.0/mail_follower_custom_notification + :alt: OCA/social +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/social-10-0/social-10-0-mail_follower_custom_notification + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/205/10.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +In standard Odoo, receiving mail notifications is an all or nothing affair. +This module allows users to decide per followed record if they want to +receive emails or not. Further, they can choose to receive notifications about +their own messages. + +You can also set defaults for this settings on the subtype in question. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +When followers open their subscriptions, they will be offered the choice to +override mail settings and to force being notified about their own messages. + +Note subscriptions are only editable for users of the `Technical settings` +group. + +You can add defaults per message subtype for this settings in Settings / +Technical / Email / Subtypes. Here, you also have the opportunity to apply +those defaults to existing subscriptions. Note that this overrides all +customizations your users already have done. + +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Therp BV + +Contributors +~~~~~~~~~~~~ + +* Holger Brunn + +Other credits +~~~~~~~~~~~~~ + +* Odoo Community Association: `Icon `_. + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +This module is part of the `OCA/social `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mail_follower_custom_notification/__init__.py b/mail_follower_custom_notification/__init__.py new file mode 100644 index 00000000..b12f44cb --- /dev/null +++ b/mail_follower_custom_notification/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import models +from . import wizards +from . import controllers diff --git a/mail_follower_custom_notification/__manifest__.py b/mail_follower_custom_notification/__manifest__.py new file mode 100644 index 00000000..1318c648 --- /dev/null +++ b/mail_follower_custom_notification/__manifest__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Custom notification settings for followers", + "version": "10.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Social Network", + "summary": "Let followers choose if they want to receive email " + "notifications for a given subscription", + "depends": [ + 'mail', + ], + "data": [ + "wizards/mail_subtype_assign_custom_notifications.xml", + "views/mail_message_subtype.xml", + 'views/templates.xml', + ], + "qweb": [ + 'static/src/xml/mail_follower_custom_notification.xml', + ], + "images": [ + 'images/mail_follower_custom_notification.png', + ], + "installable": True, +} diff --git a/mail_follower_custom_notification/controllers/__init__.py b/mail_follower_custom_notification/controllers/__init__.py new file mode 100644 index 00000000..20777a6f --- /dev/null +++ b/mail_follower_custom_notification/controllers/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from . import mail_controller diff --git a/mail_follower_custom_notification/controllers/mail_controller.py b/mail_follower_custom_notification/controllers/mail_controller.py new file mode 100644 index 00000000..359c4926 --- /dev/null +++ b/mail_follower_custom_notification/controllers/mail_controller.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from odoo import http +from odoo.http import request +from odoo.addons.mail.controllers.main import MailController as _MailController + + +class MailController(_MailController): + @http.route() + def read_subscription_data(self, res_model, follower_id): + """Add custom notification data to subscriptions""" + subtypes_list = super(MailController, self).read_subscription_data( + res_model, follower_id, + ) + follower = request.env['mail.followers'].browse(follower_id) + for subtype_dict in subtypes_list: + subtype = request.env['mail.message.subtype'].browse( + subtype_dict['id'] + ) + subtype_dict['force_mail'] = 'default' + if subtype in follower.force_mail_subtype_ids: + subtype_dict['force_mail'] = 'force_yes' + elif subtype in follower.force_nomail_subtype_ids: + subtype_dict['force_mail'] = 'force_no' + subtype_dict['force_own'] = ( + subtype in follower.force_own_subtype_ids + ) + return subtypes_list diff --git a/mail_follower_custom_notification/i18n/am.po b/mail_follower_custom_notification/i18n/am.po new file mode 100644 index 00000000..d12aaf10 --- /dev/null +++ b/mail_follower_custom_notification/i18n/am.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/ar.po b/mail_follower_custom_notification/i18n/ar.po new file mode 100644 index 00000000..bc29bdaf --- /dev/null +++ b/mail_follower_custom_notification/i18n/ar.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "إلغاء" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "أو" diff --git a/mail_follower_custom_notification/i18n/bg.po b/mail_follower_custom_notification/i18n/bg.po new file mode 100644 index 00000000..f0d8a2f7 --- /dev/null +++ b/mail_follower_custom_notification/i18n/bg.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Приложи" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Откажи" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "или" diff --git a/mail_follower_custom_notification/i18n/bs.po b/mail_follower_custom_notification/i18n/bs.po new file mode 100644 index 00000000..6e25b873 --- /dev/null +++ b/mail_follower_custom_notification/i18n/bs.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Otkaži" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ili" diff --git a/mail_follower_custom_notification/i18n/ca.po b/mail_follower_custom_notification/i18n/ca.po new file mode 100644 index 00000000..46fffd0e --- /dev/null +++ b/mail_follower_custom_notification/i18n/ca.po @@ -0,0 +1,252 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2012,2014 +# jeon , 2014 +# John Toro , 2015 +# Jong-Dae Park , 2013,2015 +# Gu Hong Min , 2015 +# Kunwoo Kim , 2015 +# LEE SI HYEONG , 2014 +# Matjaž Mozetič , 2015-2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +# Sam Ryoo , 2014 +# Seo. Junmin , 2015 +# seungil , 2014 +# SEUNGWON , 2014 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-30 10:21+0000\n" +"PO-Revision-Date: 2017-03-24 09:00+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancel·la" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Veure el nom" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Tema del Correu electrònic " + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Missatge" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Models " + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/ca_ES.po b/mail_follower_custom_notification/i18n/ca_ES.po new file mode 100644 index 00000000..5dc318b6 --- /dev/null +++ b/mail_follower_custom_notification/i18n/ca_ES.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-02 13:22+0000\n" +"PO-Revision-Date: 2018-02-02 14:11+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/ca_ES/)\n" +"Language: ca_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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancel·la" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creat a" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nom visible" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera actualització per" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Darrera actualització el" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/cs.po b/mail_follower_custom_notification/i18n/cs.po new file mode 100644 index 00000000..4ea17634 --- /dev/null +++ b/mail_follower_custom_notification/i18n/cs.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Zrušit" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "nebo" diff --git a/mail_follower_custom_notification/i18n/da.po b/mail_follower_custom_notification/i18n/da.po new file mode 100644 index 00000000..3e9d82f8 --- /dev/null +++ b/mail_follower_custom_notification/i18n/da.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-22 14:08+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuller" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Id" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "eller" diff --git a/mail_follower_custom_notification/i18n/de.po b/mail_follower_custom_notification/i18n/de.po new file mode 100644 index 00000000..3ea05f7a --- /dev/null +++ b/mail_follower_custom_notification/i18n/de.po @@ -0,0 +1,245 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Alejandro Santana , 2015 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Carles Antoli , 2015 +# danimaribeiro , 2015 +# FIRST AUTHOR , 2012 +# Rudolf Schnapka , 2015-2017 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-30 10:21+0000\n" +"PO-Revision-Date: 2017-04-19 11:44+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Anwenden" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "Individuelle Mitteilungseinstellungen bestehenden Followern zuordnen" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Abbrechen" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" +"Anwählen, um Mitteilungen über eigene Meldungen zu erzeugen und per Email zu " +"verschicken" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" +"Wählen Sie die Modelle, auf die die Individuelle Konfiguration zutrifft. " +"Dies ist nur erforderlich, wenn Ihre Unterart das Modell nicht selbst " +"festlegt" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Angelegt durch" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Angelegt am" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "Individuelle Mitteilungen" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "Dokument-Follower" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Email-Thread" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "Erzwinge Mails der Unterart" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "Erzwinge nicht" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "Erzwinge keine Mails von Unterart" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "Unterbinde Mailversand" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "Erzwinge Unterart eigener Mails " + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "Erzwinge Mailversand" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "Erzwinge ja" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" +"Leer lassen, um die Einstellung der Partnersicht zu verwenden, setze " +"\"Erzinge ja', um immer und 'Erzwinge nie', um niemals Nachrichten dieser " +"Art zu versenden." + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "Nachrichtenhinweis" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Nachricht" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "Meldungsunterarten" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Datenmodelle" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "Keine Benachrichtigung" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Mitteilungen" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "Hinweisen auf eigene Emails" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "Benachrichtige mich" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "Eigene Mitteilungen" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "Versende Benachrichtigungsmail" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "Unterarten" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "Aktualisiere bestehende Abonnements" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "Verwende Vorgabe-Maileinstellungen" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "oder" diff --git a/mail_follower_custom_notification/i18n/el_GR.po b/mail_follower_custom_notification/i18n/el_GR.po new file mode 100644 index 00000000..da55469d --- /dev/null +++ b/mail_follower_custom_notification/i18n/el_GR.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Kostas Goutoudis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:30+0000\n" +"Last-Translator: Kostas Goutoudis \n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Εφαρμογή" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Άκυρο" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Μήνυμα" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Ειδοποιήσεις " + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/en_AU.po b/mail_follower_custom_notification/i18n/en_AU.po new file mode 100644 index 00000000..a760f1cb --- /dev/null +++ b/mail_follower_custom_notification/i18n/en_AU.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/en_AU/)\n" +"Language: en_AU\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancel" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/en_GB.po b/mail_follower_custom_notification/i18n/en_GB.po new file mode 100644 index 00000000..ed747f3b --- /dev/null +++ b/mail_follower_custom_notification/i18n/en_GB.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancel" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "or" diff --git a/mail_follower_custom_notification/i18n/es.po b/mail_follower_custom_notification/i18n/es.po new file mode 100644 index 00000000..f59c1c98 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es.po @@ -0,0 +1,235 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Carles Antoli , 2016 +# FIRST AUTHOR , 2012 +# Matjaž Mozetič , 2015-2016 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Aplicar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado el" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Hilo de mensajes" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Mensaje" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modelos" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Notificaciones" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_AR.po b/mail_follower_custom_notification/i18n/es_AR.po new file mode 100644 index 00000000..9b1ed0f0 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_AR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/es_AR/)\n" +"Language: es_AR\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_CL.po b/mail_follower_custom_notification/i18n/es_CL.po new file mode 100644 index 00000000..b2a67121 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_CL.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_CO.po b/mail_follower_custom_notification/i18n/es_CO.po new file mode 100644 index 00000000..b9d9c5f6 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_CO.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# bossnm11 , 2014 +# Chanseok , 2014 +# Chanseok , 2014 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# Chul Park , 2015 +# David10000 , 2014 +# FIRST AUTHOR , 2012-2013 +# Gil , 2014 +# kmooc , 2015 +# Hongseob Lee , 2015 +# jeon , 2014 +# JiyeonLee , 2014 +# Jong-Dae Park , 2013 +# Kevin Min , 2015 +# KimKyudong , 2014 +# kmooc , 2015 +# mariana1201 , 2014 +# Matjaž Mozetič , 2015 +# Nicole , 2014 +# Paolo Valier, 2016 +# Pedro M. Baeza , 2015 +# Pope, 2014 +# SaFi J. , 2015 +# Sarina Canelake , 2014 +# Seok Jun Yoon , 2015 +# shin2012 , 2014 +# Sujin Lee , 2014 +# Sunah Lim , 2013 +# Young C. Kim, 2015 +# Young C. Kim, 2015 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Mensaje" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_CR.po b/mail_follower_custom_notification/i18n/es_CR.po new file mode 100644 index 00000000..ef0a474e --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_CR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/es_DO.po b/mail_follower_custom_notification/i18n/es_DO.po new file mode 100644 index 00000000..f4c1e5cf --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_DO.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/" +"OCA-social-8-0/language/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_EC.po b/mail_follower_custom_notification/i18n/es_EC.po new file mode 100644 index 00000000..025382ab --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_EC.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_ES.po b/mail_follower_custom_notification/i18n/es_ES.po new file mode 100644 index 00000000..4992b6f9 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_ES.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-10 11:32+0000\n" +"PO-Revision-Date: 2017-02-16 15:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/es_ES/)\n" +"Language: es_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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modelos" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_MX.po b/mail_follower_custom_notification/i18n/es_MX.po new file mode 100644 index 00000000..1862552d --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_MX.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ó" diff --git a/mail_follower_custom_notification/i18n/es_PE.po b/mail_follower_custom_notification/i18n/es_PE.po new file mode 100644 index 00000000..9c7ee0c8 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_PE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/es_PY.po b/mail_follower_custom_notification/i18n/es_PY.po new file mode 100644 index 00000000..d015a4a2 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_PY.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:21+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/es_VE.po b/mail_follower_custom_notification/i18n/es_VE.po new file mode 100644 index 00000000..d5fd5247 --- /dev/null +++ b/mail_follower_custom_notification/i18n/es_VE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/et.po b/mail_follower_custom_notification/i18n/et.po new file mode 100644 index 00000000..686422a8 --- /dev/null +++ b/mail_follower_custom_notification/i18n/et.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Loobu" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "või" diff --git a/mail_follower_custom_notification/i18n/fa.po b/mail_follower_custom_notification/i18n/fa.po new file mode 100644 index 00000000..26491ad0 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fa.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"fa/)\n" +"Language: fa\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "لغو" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "یا" diff --git a/mail_follower_custom_notification/i18n/fi.po b/mail_follower_custom_notification/i18n/fi.po new file mode 100644 index 00000000..4e13e3a1 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fi.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-13 03:01+0000\n" +"PO-Revision-Date: 2017-05-11 14:14+0000\n" +"Last-Translator: Jarmo Kortetjärvi \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Peruuta" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Viesti" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Mallit" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Ilmoitukset" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "tai" diff --git a/mail_follower_custom_notification/i18n/fr.po b/mail_follower_custom_notification/i18n/fr.po new file mode 100644 index 00000000..e7d7b22a --- /dev/null +++ b/mail_follower_custom_notification/i18n/fr.po @@ -0,0 +1,237 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Christophe CHAUVET , 2016 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-18 13:19+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Appliquer" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" +"Affecter les paramètres de notification personnalisé aux abonnés existants" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuler" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" +"Cochez cette case pour avoir les notifications générées et envoyées par " +"courriel à propos de ses propres messages" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" +"Choisissez pour quels modèles appliquer de la configuration. Ceci est " +"nécessaire uniquement si votre sous-type ne spécifie pas de modèle lui-même" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "créé par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "Notification personnalisée" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "Abonnées du document" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Courriel de cette discussion" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "Forcer le courriel pour le sous-type" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "Forcer non" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "Ne pas forcer de courriel pour le sous-type" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "Forcer pour ne pas envoyer de courriels" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "Forcer vos propres courriels de sous-type" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "Forcer l'envoi des courriels" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "Forcer oui" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" +"Laisser vide pour l'utiliser sur le formulaire du partenaire, régler sur " +"\"Forcer oui\" à toujours envoyer des messages de ce type par courriel, et " +"\"Forcer non\" de ne jamais envoyer des messages de type par courriel" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "Courriel de notifications" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Méssage" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "Message de sous types" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modèles" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "Pas de notification" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Notifications" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "Notifier à propos de nos messages" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "Me notifier" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "Mes messages" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "Envoyer un courriel de notification" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "Sous types" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "Mettre à jour les abonnements existants" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "utiliser les préférences de courriel par défaut" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/fr_CA.po b/mail_follower_custom_notification/i18n/fr_CA.po new file mode 100644 index 00000000..203a07f2 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fr_CA.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-12 12:59+0000\n" +"PO-Revision-Date: 2017-03-13 12:52+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuler" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/fr_CH.po b/mail_follower_custom_notification/i18n/fr_CH.po new file mode 100644 index 00000000..b3f88972 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fr_CH.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 17:50+0000\n" +"PO-Revision-Date: 2016-12-01 10:10+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuler" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/fr_FR.po b/mail_follower_custom_notification/i18n/fr_FR.po new file mode 100644 index 00000000..0f8aef96 --- /dev/null +++ b/mail_follower_custom_notification/i18n/fr_FR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:20+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/fr_FR/)\n" +"Language: fr_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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuler" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/gl.po b/mail_follower_custom_notification/i18n/gl.po new file mode 100644 index 00000000..1f5f2163 --- /dev/null +++ b/mail_follower_custom_notification/i18n/gl.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/gl_ES.po b/mail_follower_custom_notification/i18n/gl_ES.po new file mode 100644 index 00000000..7f29f587 --- /dev/null +++ b/mail_follower_custom_notification/i18n/gl_ES.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/gl_ES/)\n" +"Language: gl_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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/he.po b/mail_follower_custom_notification/i18n/he.po new file mode 100644 index 00000000..b04bceaa --- /dev/null +++ b/mail_follower_custom_notification/i18n/he.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-social-8-0/language/" +"he/)\n" +"Language: he\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "בטל" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "או" diff --git a/mail_follower_custom_notification/i18n/hi.po b/mail_follower_custom_notification/i18n/hi.po new file mode 100644 index 00000000..c258ce05 --- /dev/null +++ b/mail_follower_custom_notification/i18n/hi.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hindi (http://www.transifex.com/oca/OCA-social-8-0/language/" +"hi/)\n" +"Language: hi\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "रद्द" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/hr.po b/mail_follower_custom_notification/i18n/hr.po new file mode 100644 index 00000000..01925f01 --- /dev/null +++ b/mail_follower_custom_notification/i18n/hr.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-29 09:32+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Primjeni" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Odustani" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Naziv " + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modeli" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ili" diff --git a/mail_follower_custom_notification/i18n/hr_HR.po b/mail_follower_custom_notification/i18n/hr_HR.po new file mode 100644 index 00000000..2c02c6a0 --- /dev/null +++ b/mail_follower_custom_notification/i18n/hr_HR.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Otkaži" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modeli" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/hu.po b/mail_follower_custom_notification/i18n/hu.po new file mode 100644 index 00000000..86dec3b6 --- /dev/null +++ b/mail_follower_custom_notification/i18n/hu.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Mégsem" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "vagy" diff --git a/mail_follower_custom_notification/i18n/id.po b/mail_follower_custom_notification/i18n/id.po new file mode 100644 index 00000000..df21aae8 --- /dev/null +++ b/mail_follower_custom_notification/i18n/id.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/id/)\n" +"Language: id\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Batalkan" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "atau" diff --git a/mail_follower_custom_notification/i18n/it.po b/mail_follower_custom_notification/i18n/it.po new file mode 100644 index 00000000..f8c5498c --- /dev/null +++ b/mail_follower_custom_notification/i18n/it.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 07:31+0000\n" +"PO-Revision-Date: 2017-01-13 09:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annulla" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Discussione Email" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modelli" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Notifiche" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "o" diff --git a/mail_follower_custom_notification/i18n/ja.po b/mail_follower_custom_notification/i18n/ja.po new file mode 100644 index 00000000..02bdb7ac --- /dev/null +++ b/mail_follower_custom_notification/i18n/ja.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "キャンセル" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "または" diff --git a/mail_follower_custom_notification/i18n/ko.po b/mail_follower_custom_notification/i18n/ko.po new file mode 100644 index 00000000..cf4a09fc --- /dev/null +++ b/mail_follower_custom_notification/i18n/ko.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-social-8-0/language/" +"ko/)\n" +"Language: ko\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "취소" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "또는" diff --git a/mail_follower_custom_notification/i18n/lo.po b/mail_follower_custom_notification/i18n/lo.po new file mode 100644 index 00000000..22406c09 --- /dev/null +++ b/mail_follower_custom_notification/i18n/lo.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lao (http://www.transifex.com/oca/OCA-social-8-0/language/" +"lo/)\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/lt.po b/mail_follower_custom_notification/i18n/lt.po new file mode 100644 index 00000000..c24a85e5 --- /dev/null +++ b/mail_follower_custom_notification/i18n/lt.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Atšaukti" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "arba" diff --git a/mail_follower_custom_notification/i18n/lt_LT.po b/mail_follower_custom_notification/i18n/lt_LT.po new file mode 100644 index 00000000..ee4f69ba --- /dev/null +++ b/mail_follower_custom_notification/i18n/lt_LT.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 07:31+0000\n" +"PO-Revision-Date: 2017-01-11 15:35+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/lt_LT/)\n" +"Language: lt_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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Atšaukti" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/lv.po b/mail_follower_custom_notification/i18n/lv.po new file mode 100644 index 00000000..a3ef1b3b --- /dev/null +++ b/mail_follower_custom_notification/i18n/lv.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Atcelt" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "vai" diff --git a/mail_follower_custom_notification/i18n/mail_follower_custom_notification.pot b/mail_follower_custom_notification/i18n/mail_follower_custom_notification.pot new file mode 100644 index 00000000..5d241255 --- /dev/null +++ b/mail_follower_custom_notification/i18n/mail_follower_custom_notification.pot @@ -0,0 +1,217 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "Check this to have notifications generated and sent via email about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "Choose for which models the custom configuration applies. This is only necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "Leave empty to use the on the partner's form, set to \"Force yes\" to always send messages of this type via email, and \"Force no\" to never send messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" + diff --git a/mail_follower_custom_notification/i18n/mk.po b/mail_follower_custom_notification/i18n/mk.po new file mode 100644 index 00000000..055e899e --- /dev/null +++ b/mail_follower_custom_notification/i18n/mk.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Откажи" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "или" diff --git a/mail_follower_custom_notification/i18n/mn.po b/mail_follower_custom_notification/i18n/mn.po new file mode 100644 index 00000000..5f97aa4b --- /dev/null +++ b/mail_follower_custom_notification/i18n/mn.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Цуцлах" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "эсвэл" diff --git a/mail_follower_custom_notification/i18n/nb.po b/mail_follower_custom_notification/i18n/nb.po new file mode 100644 index 00000000..1f07647d --- /dev/null +++ b/mail_follower_custom_notification/i18n/nb.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 17:50+0000\n" +"PO-Revision-Date: 2016-12-02 13:53+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Avbryt" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Melding" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "eller" diff --git a/mail_follower_custom_notification/i18n/nb_NO.po b/mail_follower_custom_notification/i18n/nb_NO.po new file mode 100644 index 00000000..b6caed31 --- /dev/null +++ b/mail_follower_custom_notification/i18n/nb_NO.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Lukk" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/nl.po b/mail_follower_custom_notification/i18n/nl.po new file mode 100644 index 00000000..ed7821e3 --- /dev/null +++ b/mail_follower_custom_notification/i18n/nl.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-30 10:21+0000\n" +"PO-Revision-Date: 2017-04-25 10:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuleren" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modellen" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "of" diff --git a/mail_follower_custom_notification/i18n/nl_BE.po b/mail_follower_custom_notification/i18n/nl_BE.po new file mode 100644 index 00000000..fc7e237a --- /dev/null +++ b/mail_follower_custom_notification/i18n/nl_BE.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Annuleren" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "of" diff --git a/mail_follower_custom_notification/i18n/nl_NL.po b/mail_follower_custom_notification/i18n/nl_NL.po new file mode 100644 index 00000000..0f3ee842 --- /dev/null +++ b/mail_follower_custom_notification/i18n/nl_NL.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-19 10:09+0000\n" +"PO-Revision-Date: 2017-08-29 08:01+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Verwijderen" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/pl.po b/mail_follower_custom_notification/i18n/pl.po new file mode 100644 index 00000000..91598898 --- /dev/null +++ b/mail_follower_custom_notification/i18n/pl.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Anuluj" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "lub" diff --git a/mail_follower_custom_notification/i18n/pt.po b/mail_follower_custom_notification/i18n/pt.po new file mode 100644 index 00000000..8daeefeb --- /dev/null +++ b/mail_follower_custom_notification/i18n/pt.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nome" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/pt_BR.po b/mail_follower_custom_notification/i18n/pt_BR.po new file mode 100644 index 00000000..079021d2 --- /dev/null +++ b/mail_follower_custom_notification/i18n/pt_BR.po @@ -0,0 +1,243 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 +# Antonio Trueba, 2016 +# Armando Vulcano Junior , 2015 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2015 +# FIRST AUTHOR , 2013 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2016 +# Rudolf Schnapka , 2015 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-10 06:24+0000\n" +"PO-Revision-Date: 2016-12-14 08:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Processo Email" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Mensagem" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modelos" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/pt_PT.po b/mail_follower_custom_notification/i18n/pt_PT.po new file mode 100644 index 00000000..0a324e14 --- /dev/null +++ b/mail_follower_custom_notification/i18n/pt_PT.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Cancelar" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Tópico de Email" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ou" diff --git a/mail_follower_custom_notification/i18n/ro.po b/mail_follower_custom_notification/i18n/ro.po new file mode 100644 index 00000000..7f387253 --- /dev/null +++ b/mail_follower_custom_notification/i18n/ro.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Anuleaza" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Creat de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Creat la" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "sau" diff --git a/mail_follower_custom_notification/i18n/ru.po b/mail_follower_custom_notification/i18n/ru.po new file mode 100644 index 00000000..95deb0d6 --- /dev/null +++ b/mail_follower_custom_notification/i18n/ru.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Отменена" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Создано" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "или" diff --git a/mail_follower_custom_notification/i18n/sk.po b/mail_follower_custom_notification/i18n/sk.po new file mode 100644 index 00000000..d0c7be3f --- /dev/null +++ b/mail_follower_custom_notification/i18n/sk.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Zrušiť" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "alebo" diff --git a/mail_follower_custom_notification/i18n/sl.po b/mail_follower_custom_notification/i18n/sl.po new file mode 100644 index 00000000..36a6caff --- /dev/null +++ b/mail_follower_custom_notification/i18n/sl.po @@ -0,0 +1,244 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +# Antonio Trueba, 2016 +# FIRST AUTHOR , 2012,2014 +# Gustavo Lepri , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-30 02:47+0000\n" +"PO-Revision-Date: 2016-04-30 06:12+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "Uveljavi" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "Obstoječim sledilcem dodeli nastavitve obvestil po meri" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Preklic" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" +"Označite, če želite, da se obvestila o lastnih sporočilih ustvarjajo in " +"pošiljajo po e-pošti" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" +"Izberite na katere modele se nastavitve po meri nanašajo. To je potrebno le, " +"če podtip sam ne nastavi modela" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "Obvestila po meri" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "Sledilci dokumenta" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "E-poštni niz" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "Vsili e-pošto iz podtipa" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "Vsili ne" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "Vsili ne pošte iz podtipa" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "Vsili ne pošiljanje pošte" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "Vsili lastno pošto iz podtipa" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "Vsili pošiljanje pošte" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "Vsili da" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" +"Pustite prazno za uporabo na obrazcu partnerja, nastavite \"Vsili da\", da " +"bi vedno preko e-pošte pošiljali sporočila tega tipa in \"Vsili ne\", da ne " +"bi nikoli pošiljali sporočil tega tipa preko e-pošte" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "Poštna obvestila" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "Sporočilo" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "Sporočilni podtipi" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modeli" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "Brez obvestil" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "Obvestila" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "Obveščanje o lastnih sporočilih" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "Obvesti me" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "Lastna sporočila" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "Pošlji poštno obvestilo" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "Podtipi" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "Posodobi obstoječe naročnine" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "Uporabi privzete poštne nastavitve" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ali" diff --git a/mail_follower_custom_notification/i18n/sr.po b/mail_follower_custom_notification/i18n/sr.po new file mode 100644 index 00000000..f6676e94 --- /dev/null +++ b/mail_follower_custom_notification/i18n/sr.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-social-8-0/language/" +"sr/)\n" +"Language: sr\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Otkaži" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "" diff --git a/mail_follower_custom_notification/i18n/sr@latin.po b/mail_follower_custom_notification/i18n/sr@latin.po new file mode 100644 index 00000000..395fadf4 --- /dev/null +++ b/mail_follower_custom_notification/i18n/sr@latin.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/sr@latin/)\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Otkaži" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ili" diff --git a/mail_follower_custom_notification/i18n/sv.po b/mail_follower_custom_notification/i18n/sv.po new file mode 100644 index 00000000..78b8bf4d --- /dev/null +++ b/mail_follower_custom_notification/i18n/sv.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Avbryt" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "eller" diff --git a/mail_follower_custom_notification/i18n/th.po b/mail_follower_custom_notification/i18n/th.po new file mode 100644 index 00000000..3c66347f --- /dev/null +++ b/mail_follower_custom_notification/i18n/th.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "หรือ" diff --git a/mail_follower_custom_notification/i18n/tr.po b/mail_follower_custom_notification/i18n/tr.po new file mode 100644 index 00000000..3da61164 --- /dev/null +++ b/mail_follower_custom_notification/i18n/tr.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 07:31+0000\n" +"PO-Revision-Date: 2017-01-13 09:22+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Vazgeç" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "Eposta konuşması" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Modeller" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ya da" diff --git a/mail_follower_custom_notification/i18n/tr_TR.po b/mail_follower_custom_notification/i18n/tr_TR.po new file mode 100644 index 00000000..8c47651b --- /dev/null +++ b/mail_follower_custom_notification/i18n/tr_TR.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 08:49+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "İptal et" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "Tipler" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "ya da " diff --git a/mail_follower_custom_notification/i18n/uk.po b/mail_follower_custom_notification/i18n/uk.po new file mode 100644 index 00000000..4ccae7d0 --- /dev/null +++ b/mail_follower_custom_notification/i18n/uk.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-27 08:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-social-8-0/" +"language/uk/)\n" +"Language: uk\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Скасувати" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "або" diff --git a/mail_follower_custom_notification/i18n/vi.po b/mail_follower_custom_notification/i18n/vi.po new file mode 100644 index 00000000..2b99cd18 --- /dev/null +++ b/mail_follower_custom_notification/i18n/vi.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:55+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "hoặc" diff --git a/mail_follower_custom_notification/i18n/vi_VN.po b/mail_follower_custom_notification/i18n/vi_VN.po new file mode 100644 index 00000000..aabad69a --- /dev/null +++ b/mail_follower_custom_notification/i18n/vi_VN.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-16 01:44+0000\n" +"PO-Revision-Date: 2017-11-23 23:27+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/vi_VN/)\n" +"Language: vi_VN\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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "Hủy" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "hoặc" diff --git a/mail_follower_custom_notification/i18n/zh_CN.po b/mail_follower_custom_notification/i18n/zh_CN.po new file mode 100644 index 00000000..8c67b639 --- /dev/null +++ b/mail_follower_custom_notification/i18n/zh_CN.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 14:56+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "取消" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "或" diff --git a/mail_follower_custom_notification/i18n/zh_TW.po b/mail_follower_custom_notification/i18n/zh_TW.po new file mode 100644 index 00000000..9190b9ae --- /dev/null +++ b/mail_follower_custom_notification/i18n/zh_TW.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_follower_custom_notification +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: social (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-22 16:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-social-8-0/" +"language/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_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Apply" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_subtype_assign_custom_notifications +msgid "Assign custom notification settings to existing followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "Cancel" +msgstr "刪除" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_own:0 +msgid "" +"Check this to have notifications generated and sent via email about own " +"messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_model_ids:0 +msgid "" +"Choose for which models the custom configuration applies. This is only " +"necessary if your subtype doesn't set a model itself" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: mail_follower_custom_notification +#: view:mail.message.subtype:mail_follower_custom_notification.view_mail_message_subtype_form +msgid "Custom notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,display_name:0 +#: field:mail.subtype.assign.custom.notifications,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_followers +msgid "Document Followers" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_mail_subtype_ids:0 +msgid "Force mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force no" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_nomail_subtype_ids:0 +msgid "Force no mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:20 +#, python-format +msgid "Force not sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.followers,force_own_subtype_ids:0 +msgid "Force own mails from subtype" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:16 +#, python-format +msgid "Force sending mails" +msgstr "" + +#. module: mail_follower_custom_notification +#: selection:mail.message.subtype,custom_notification_mail:0 +msgid "Force yes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,id:0 +#: field:mail.subtype.assign.custom.notifications,id:0 +msgid "ID" +msgstr "編號" + +#. module: mail_follower_custom_notification +#: field:base.patch.models.mixin,__last_update:0 +#: field:mail.subtype.assign.custom.notifications,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: mail_follower_custom_notification +#: help:mail.message.subtype,custom_notification_mail:0 +msgid "" +"Leave empty to use the on the partner's form, set to \"Force yes\" to always " +"send messages of this type via email, and \"Force no\" to never send " +"messages of type via email" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:9 +#, python-format +msgid "Mail notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_message_subtype +msgid "Message subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_model_ids:0 +msgid "Models" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:27 +#, python-format +msgid "No notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.model,name:mail_follower_custom_notification.model_mail_notification +msgid "Notifications" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_own:0 +msgid "Notify about own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:31 +#, python-format +msgid "Notify me" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:24 +#, python-format +msgid "Own messages" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.message.subtype,custom_notification_mail:0 +msgid "Send mail notification" +msgstr "" + +#. module: mail_follower_custom_notification +#: field:mail.subtype.assign.custom.notifications,subtype_ids:0 +msgid "Subtypes" +msgstr "" + +#. module: mail_follower_custom_notification +#: model:ir.actions.act_window,name:mail_follower_custom_notification.action_mail_subtype_assign_custom_notifications +msgid "Update existing subscriptions" +msgstr "" + +#. module: mail_follower_custom_notification +#. openerp-web +#: code:addons/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml:12 +#, python-format +msgid "Use default mail preferences" +msgstr "" + +#. module: mail_follower_custom_notification +#: view:mail.subtype.assign.custom.notifications:mail_follower_custom_notification.view_mail_subtype_assign_custom_notifications +msgid "or" +msgstr "或" diff --git a/mail_follower_custom_notification/images/mail_follower_custom_notification.png b/mail_follower_custom_notification/images/mail_follower_custom_notification.png new file mode 100644 index 00000000..3c63b9a7 Binary files /dev/null and b/mail_follower_custom_notification/images/mail_follower_custom_notification.png differ diff --git a/mail_follower_custom_notification/models/__init__.py b/mail_follower_custom_notification/models/__init__.py new file mode 100644 index 00000000..4702885e --- /dev/null +++ b/mail_follower_custom_notification/models/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import mail_followers +from . import mail_thread +from . import mail_message +from . import mail_message_subtype +from . import res_partner diff --git a/mail_follower_custom_notification/models/mail_followers.py b/mail_follower_custom_notification/models/mail_followers.py new file mode 100644 index 00000000..ef096f46 --- /dev/null +++ b/mail_follower_custom_notification/models/mail_followers.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import api, fields, models + + +class MailFollowers(models.Model): + _inherit = 'mail.followers' + + force_mail_subtype_ids = fields.Many2many( + 'mail.message.subtype', 'mail_followers_force_mail_rel', + 'mail_followers_id', 'mail_message_subtype_id', + string='Force mails from subtype') + + force_nomail_subtype_ids = fields.Many2many( + 'mail.message.subtype', 'mail_followers_force_nomail_rel', + 'mail_followers_id', 'mail_message_subtype_id', + string='Force no mails from subtype') + + force_own_subtype_ids = fields.Many2many( + 'mail.message.subtype', 'mail_followers_force_own_rel', + 'mail_followers_id', 'mail_message_subtype_id', + string='Force own mails from subtype') + + @api.model + def create(self, values): + this = super(MailFollowers, self).create(values) + for subtype in this.subtype_ids: + if not subtype.res_model and\ + subtype.custom_notification_model_ids and\ + this.res_model not in\ + subtype.custom_notification_model_ids\ + .mapped('model'): + continue + if subtype.custom_notification_mail == 'force_yes': + this.force_mail_subtype_ids += subtype + if subtype.custom_notification_mail == 'force_no': + this.force_nomail_subtype_ids += subtype + if subtype.custom_notification_own: + this.force_own_subtype_ids += subtype + return this diff --git a/mail_follower_custom_notification/models/mail_message.py b/mail_follower_custom_notification/models/mail_message.py new file mode 100644 index 00000000..9132c252 --- /dev/null +++ b/mail_follower_custom_notification/models/mail_message.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import api, models + + +class MailMessage(models.Model): + _inherit = 'mail.message' + + @api.multi + def _notify( + self, force_send=False, send_after_commit=True, user_signature=True, + ): + """notify author if she's a follower and turned on force_own""" + self.ensure_one() + if self.subtype_id and self.model and self.res_id and self.env[ + 'mail.followers' + ].search([ + ('res_model', '=', self.model), + ('res_id', '=', self.res_id), + ('partner_id', '=', self.author_id.id), + ('force_own_subtype_ids', '=', self.subtype_id.id), + ]): + self = self.with_context(mail_notify_author=True) + return super(MailMessage, self)._notify( + force_send=force_send, send_after_commit=send_after_commit, + user_signature=user_signature, + ) diff --git a/mail_follower_custom_notification/models/mail_message_subtype.py b/mail_follower_custom_notification/models/mail_message_subtype.py new file mode 100644 index 00000000..72c475b8 --- /dev/null +++ b/mail_follower_custom_notification/models/mail_message_subtype.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import fields, models + + +class MailMessageSubtype(models.Model): + _inherit = 'mail.message.subtype' + + custom_notification_mail = fields.Selection( + [('force_yes', 'Force yes'), ('force_no', 'Force no')], + string='Send mail notification', help='Leave empty to use the setting ' + 'on the partner\'s form, set to "Force yes" to always send messages ' + 'of this type via email, and "Force no" to never send messages of ' + 'type via email', + ) + custom_notification_own = fields.Boolean( + 'Notify about own messages', help='Check this to have notifications ' + 'generated and sent via email about own messages', + ) + custom_notification_model_ids = fields.Many2many( + 'ir.model', string='Models', help='Choose for which models the ' + 'custom configuration applies. This is only necessary if your subtype ' + 'doesn\'t set a model itself', + domain=[('transient', '=', False)], + ) diff --git a/mail_follower_custom_notification/models/mail_thread.py b/mail_follower_custom_notification/models/mail_thread.py new file mode 100644 index 00000000..1a890ee8 --- /dev/null +++ b/mail_follower_custom_notification/models/mail_thread.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import api, models + + +class MailThread(models.AbstractModel): + _inherit = 'mail.thread' + + @api.multi + def message_custom_notification_update_user(self, custom_notifications): + """change custom_notifications from user ids to partner ids""" + user2partner = dict( + self.env['res.users'].browse(map(int, custom_notifications.keys())) + .mapped(lambda user: (str(user.id), str(user.partner_id.id))) + ) + return self.message_custom_notification_update({ + user2partner[user_id]: data + for user_id, data in custom_notifications.iteritems() + }) + + @api.multi + def message_custom_notification_update(self, custom_notifications): + """custom_notifications is a dictionary with partner ids as keys + and dictionaries mapping message subtype ids to custom notification + values""" + def ids_with_value(data, key, value): + return map( + lambda x: int(x[0]), + filter(lambda x: x[1][key] == value, data.iteritems()) + ) + + custom_notifications = { + int(key): value + for key, value in custom_notifications.iteritems() + if key != 'False' + } + + for follower in self.env['mail.followers'].search([ + ('res_model', '=', self._name), + ('res_id', 'in', self.ids), + ('partner_id', 'in', custom_notifications.keys()), + ]): + data = custom_notifications[follower.partner_id.id] + follower.write({ + 'force_mail_subtype_ids': [(6, 0, ids_with_value( + data, 'force_mail', 'force_yes'))], + 'force_nomail_subtype_ids': [(6, 0, ids_with_value( + data, 'force_mail', 'force_no'))], + 'force_own_subtype_ids': [(6, 0, ids_with_value( + data, 'force_own', '1'))] + }), diff --git a/mail_follower_custom_notification/models/res_partner.py b/mail_follower_custom_notification/models/res_partner.py new file mode 100644 index 00000000..304fbd2a --- /dev/null +++ b/mail_follower_custom_notification/models/res_partner.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from odoo import api, models + + +class ResPartner(models.Model): + _inherit = 'res.partner' + + @api.multi + def _notify_by_email( + self, message, force_send=False, send_after_commit=True, + user_signature=True, + ): + """remove partners from `self` who requested not to be mailed, + add the ones who did the opposite""" + domain = [ + ('res_model', '=', message.model), + ('res_id', '=', message.res_id), + ] + self |= self.env['mail.followers'].search( + domain + [('force_mail_subtype_ids', '=', message.subtype_id.id)] + ).mapped('partner_id') + self -= self.env['mail.followers'].search( + domain + [('force_nomail_subtype_ids', '=', message.subtype_id.id)] + ).mapped('partner_id') + return super(ResPartner, self)._notify_by_email( + message, force_send=force_send, + send_after_commit=send_after_commit, user_signature=user_signature, + ) diff --git a/mail_follower_custom_notification/readme/CONFIGURE.rst b/mail_follower_custom_notification/readme/CONFIGURE.rst new file mode 100644 index 00000000..95b051ee --- /dev/null +++ b/mail_follower_custom_notification/readme/CONFIGURE.rst @@ -0,0 +1,10 @@ +When followers open their subscriptions, they will be offered the choice to +override mail settings and to force being notified about their own messages. + +Note subscriptions are only editable for users of the `Technical settings` +group. + +You can add defaults per message subtype for this settings in Settings / +Technical / Email / Subtypes. Here, you also have the opportunity to apply +those defaults to existing subscriptions. Note that this overrides all +customizations your users already have done. diff --git a/mail_follower_custom_notification/readme/CONTRIBUTORS.rst b/mail_follower_custom_notification/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..b120a956 --- /dev/null +++ b/mail_follower_custom_notification/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Holger Brunn diff --git a/mail_follower_custom_notification/readme/CREDITS.rst b/mail_follower_custom_notification/readme/CREDITS.rst new file mode 100644 index 00000000..cc056a80 --- /dev/null +++ b/mail_follower_custom_notification/readme/CREDITS.rst @@ -0,0 +1 @@ +* Odoo Community Association: `Icon `_. diff --git a/mail_follower_custom_notification/readme/DESCRIPTION.rst b/mail_follower_custom_notification/readme/DESCRIPTION.rst new file mode 100644 index 00000000..6d1d1d14 --- /dev/null +++ b/mail_follower_custom_notification/readme/DESCRIPTION.rst @@ -0,0 +1,6 @@ +In standard Odoo, receiving mail notifications is an all or nothing affair. +This module allows users to decide per followed record if they want to +receive emails or not. Further, they can choose to receive notifications about +their own messages. + +You can also set defaults for this settings on the subtype in question. diff --git a/mail_follower_custom_notification/static/description/icon.png b/mail_follower_custom_notification/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/mail_follower_custom_notification/static/description/icon.png differ diff --git a/mail_follower_custom_notification/static/description/index.html b/mail_follower_custom_notification/static/description/index.html new file mode 100644 index 00000000..59101d8e --- /dev/null +++ b/mail_follower_custom_notification/static/description/index.html @@ -0,0 +1,442 @@ + + + + + + +Custom notification settings for followers + + + +
+

Custom notification settings for followers

+ + +

Beta License: AGPL-3 OCA/social Translate me on Weblate Try me on Runbot

+

In standard Odoo, receiving mail notifications is an all or nothing affair. +This module allows users to decide per followed record if they want to +receive emails or not. Further, they can choose to receive notifications about +their own messages.

+

You can also set defaults for this settings on the subtype in question.

+

Table of contents

+ +
+

Configuration

+

When followers open their subscriptions, they will be offered the choice to +override mail settings and to force being notified about their own messages.

+

Note subscriptions are only editable for users of the Technical settings +group.

+

You can add defaults per message subtype for this settings in Settings / +Technical / Email / Subtypes. Here, you also have the opportunity to apply +those defaults to existing subscriptions. Note that this overrides all +customizations your users already have done.

+
+
+

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 smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Therp BV
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+
    +
  • Odoo Community Association: Icon.
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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.

+

This module is part of the OCA/social project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css b/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css new file mode 100644 index 00000000..a75b9021 --- /dev/null +++ b/mail_follower_custom_notification/static/src/css/mail_follower_custom_notification.css @@ -0,0 +1,18 @@ +.o_mail_follower_custom_notification +{ + padding: 5px 10px 10px 10px; +} +.o_mail_follower_custom_notification fieldset > legend +{ + font-size: inherit; + margin-bottom: 0px; +} +.o_mail_follower_custom_notification fieldset > div, +.o_mail_follower_custom_notification fieldset > div > label +{ + white-space: nowrap; +} +.o_mail_follower_custom_notification fieldset > div > label +{ + font-weight: normal; +} diff --git a/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js b/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js new file mode 100644 index 00000000..449e3d1e --- /dev/null +++ b/mail_follower_custom_notification/static/src/js/mail_follower_custom_notification.js @@ -0,0 +1,65 @@ +// -*- coding: utf-8 -*- +// Copyright 2015-2019 Therp BV +// License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +odoo.define('mail_follower_custom_notification', function(require) { + 'use strict'; + var core = require('web.core'); + require('mail.Followers'); + core.form_widget_registry.get('mail_followers').include({ + /* eslint-disable-next-line no-unused-vars */ + display_subtypes:function (data, dialog, display_warning) { + this._super.apply(this, arguments); + var $list = this.$('ul.o_followers_list'); + if (dialog) { + $list = this.dialog.$('ul'); + } + $list.find('input[type=checkbox]').change(function() { + $list.find(_.str.sprintf( + '#custom_notification_%s%s', + jQuery(this).data('id'), + dialog ? '_dialog' : '' + )).toggle(jQuery(this).prop('checked')); + }); + if (!dialog) { + $list.find( + '.oe_custom_notification input[type=radio]' + ).change(this.proxy('do_update_subscription')); + } + }, + /* eslint-disable-next-line no-unused-vars */ + do_update_subscription: function (event, follower_id, is_channel) { + var self = this, + update_func = 'message_custom_notification_update_user', + follower_ids = [this.session.uid], + custom_notifications = {}, + $list = this.$('ul'); + if (follower_id !== undefined) { + update_func = 'message_custom_notification_update'; + follower_ids = [follower_id]; + $list = this.dialog.$('ul'); + } + _(follower_ids).each(function(follower) { + var follower_settings = custom_notifications[follower] = {}; + $list.find( + '.o_mail_follower_custom_notification' + ).each(function () { + var id = parseInt(jQuery(this).data('id'), 10), + settings = follower_settings[id] = {}; + settings.force_mail = jQuery(this) + .find('.mail input:checked') + .val(); + settings.force_own = jQuery(this) + .find('.own input:checked') + .val(); + }); + }); + return jQuery.when( + this._super.apply(this, arguments) + ).then(function () { + return self.ds_model.call( + update_func, + [[self.view.datarecord.id], custom_notifications]); + }).then(this.proxy('render_value')); + }, + }); +}); diff --git a/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml b/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml new file mode 100644 index 00000000..72f184f2 --- /dev/null +++ b/mail_follower_custom_notification/static/src/xml/mail_follower_custom_notification.xml @@ -0,0 +1,35 @@ + + diff --git a/mail_follower_custom_notification/tests/__init__.py b/mail_follower_custom_notification/tests/__init__.py new file mode 100644 index 00000000..ef042795 --- /dev/null +++ b/mail_follower_custom_notification/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# © 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import test_mail_follower_custom_notification diff --git a/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py b/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py new file mode 100644 index 00000000..62463bd6 --- /dev/null +++ b/mail_follower_custom_notification/tests/test_mail_follower_custom_notification.py @@ -0,0 +1,85 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from mock import Mock, patch +from openerp.tests.common import TransactionCase +from ..controllers.mail_controller import MailController + + +class TestMailFollowerCustomNotification(TransactionCase): + def _call_controller(self, res_model, follower_id): + mt_comment = self.env.ref('mail.mt_comment') + with patch('__builtin__.super') as mock_super, patch( + 'odoo.addons.mail_follower_custom_notification.controllers.' + 'mail_controller.request' + ) as mock_request: + mock_super.return_value = Mock( + read_subscription_data=lambda res_model, follower_id: [{ + 'id': mt_comment.id, + }], + ) + mock_request.env = self.env + return MailController.read_subscription_data.__func__( + None, res_model, follower_id, + )[0] + + def test_mail_follower_custom_notification(self): + followed_partner = self.env['res.partner'].create({ + 'name': 'I\'m followed', + }) + demo_user = self.env.ref('base.user_demo') + mt_comment = self.env.ref('mail.mt_comment') + followed_partner_demo = followed_partner.sudo(demo_user.id) + followed_partner_demo.message_subscribe_users() + follower = followed_partner_demo.message_follower_ids.filtered( + lambda x: x.partner_id == demo_user.partner_id + ) + + # see if default subscriptions return default custom settings + subscription_data = self._call_controller( + follower.res_model, follower.id, + ) + self.assertEqual(subscription_data['force_mail'], 'default') + self.assertEqual(subscription_data['force_own'], False) + + # set custom settings + followed_partner_demo.message_custom_notification_update_user({ + str(demo_user.id): { + str(mt_comment.id): { + 'force_mail': 'force_yes', + 'force_own': '1', + }, + }, + }) + # see if we can read them back + subscription_data = self._call_controller( + follower.res_model, follower.id, + ) + self.assertEqual(subscription_data['force_mail'], 'force_yes') + self.assertEqual(subscription_data['force_own'], True) + + # post a message and see if we successfully forced a notification to + # ourselves + # pylint: disable=translation-required + followed_partner_demo.message_post('hello world', subtype='mt_comment') + self.assertIn( + demo_user.partner_id, + followed_partner_demo.message_ids[:-1].notification_ids.mapped( + 'res_partner_id', + ) + ) + + # assign default values on message subtype and apply them to all + # followers + mt_comment.custom_notification_model_ids = self.env['ir.model'].search( + [('model', '=', 'res.partner')] + ) + wizard = self.env['mail.subtype.assign.custom.notifications']\ + .with_context(active_ids=mt_comment.ids)\ + .create({}) + wizard.button_apply() + subscription_data = self._call_controller( + follower.res_model, follower.id, + ) + self.assertEqual(subscription_data['force_mail'], 'default') + self.assertEqual(subscription_data['force_own'], False) diff --git a/mail_follower_custom_notification/views/mail_message_subtype.xml b/mail_follower_custom_notification/views/mail_message_subtype.xml new file mode 100644 index 00000000..c43a5d07 --- /dev/null +++ b/mail_follower_custom_notification/views/mail_message_subtype.xml @@ -0,0 +1,16 @@ + + + + mail.message.subtype + + + + + + + + + + + + diff --git a/mail_follower_custom_notification/views/templates.xml b/mail_follower_custom_notification/views/templates.xml new file mode 100644 index 00000000..f24f9214 --- /dev/null +++ b/mail_follower_custom_notification/views/templates.xml @@ -0,0 +1,9 @@ + + + + diff --git a/mail_follower_custom_notification/wizards/__init__.py b/mail_follower_custom_notification/wizards/__init__.py new file mode 100644 index 00000000..5b4f1fb7 --- /dev/null +++ b/mail_follower_custom_notification/wizards/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import mail_subtype_assign_custom_notifications diff --git a/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py new file mode 100644 index 00000000..66d04092 --- /dev/null +++ b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import api, fields, models + + +class MailSubtypeAssignCustomNotifications(models.TransientModel): + _name = 'mail.subtype.assign.custom.notifications' + _description = 'Assign custom notification settings to existing followers' + + subtype_ids = fields.Many2many( + 'mail.message.subtype', 'mail_subtype_assign_custom_notifications_rel', + string='Subtypes', required=True, + default=lambda self: [(6, 0, self.env.context.get('active_ids', []))]) + + @api.multi + def button_apply(self): + for subtype in self.mapped('subtype_ids'): + domain = [('subtype_ids', '=', subtype.id)] + if subtype.custom_notification_model_ids: + domain.append( + ('res_model', 'in', + subtype.custom_notification_model_ids.mapped('model'))) + self.env['mail.followers'].with_context(active_test=False)\ + .search(domain)\ + .write({ + 'force_mail_subtype_ids': [ + (4, subtype.id) + if subtype.custom_notification_mail == 'force_yes' + else + (3, subtype.id) + ], + 'force_nomail_subtype_ids': [ + (4, subtype.id) + if subtype.custom_notification_mail == 'force_no' + else + (3, subtype.id) + ], + 'force_own_subtype_ids': [ + (4, subtype.id) + if subtype.custom_notification_own + else + (3, subtype.id) + ], + }) diff --git a/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml new file mode 100644 index 00000000..8264c344 --- /dev/null +++ b/mail_follower_custom_notification/wizards/mail_subtype_assign_custom_notifications.xml @@ -0,0 +1,27 @@ + + + + mail.subtype.assign.custom.notifications + +
+ + + +
+
+
+
+
+ +