diff --git a/.gitignore b/.gitignore index e1a97937..4df67829 100644 --- a/.gitignore +++ b/.gitignore @@ -46,6 +46,9 @@ coverage.xml # Translations *.mo +# Pycharm +.idea + # Django stuff: *.log diff --git a/base_search_mail_content/README.rst b/base_search_mail_content/README.rst new file mode 100644 index 00000000..276c6ff0 --- /dev/null +++ b/base_search_mail_content/README.rst @@ -0,0 +1,86 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +======================== +Base Search Mail Content +======================== + +This module adds the capability to find on any object (e.g. project issues or +helpdesk ticket) based on the conversation threads associated to them. + +This will be useful in models that make intense use of messages, +like project issues or helpdesk tickets. + +A project issue or helpdesk ticket can contain tens of mails or notes +associated, based on the feedback that the person responsible for the ticket +maintains, including conversations with the person that raised the issue. + +A user may often want to find issues or tickets, based on the past +conversations that were recorded, as much as he or she needs to search +in their mail for past conversations. + +This module will add dynamically a field 'message_content' to the search view of +any model that inherits from the mail.thread. + +The current search capabilities include searching into the subject, body, +email from, reply to and record name. + +Installation +============ + +This module depends on the module 'base_search_fuzzy' to ensure that +searches on emails are based on indexes. Please read carefully the +`install instructions `_. + +This module installs by default the indexes that are required to +perform the searches on mail messages. + +Usage +===== + +Go to any model that contains a chatter (e.g. Contacts, ...). Search +for content in field 'Message Content'. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/server-tools/10.0 + +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. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Jordi Ballester Alomar +* Serpent Consulting Services Pvt. Ltd. +* Lois Rilo Antelo +* Aaron Henriquez + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/base_search_mail_content/__init__.py b/base_search_mail_content/__init__.py new file mode 100644 index 00000000..ae34718d --- /dev/null +++ b/base_search_mail_content/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# © 2016 Serpent Consulting Services Pvt. Ltd. () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/base_search_mail_content/__manifest__.py b/base_search_mail_content/__manifest__.py new file mode 100644 index 00000000..45a7ed0a --- /dev/null +++ b/base_search_mail_content/__manifest__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# © 2016 Serpent Consulting Services Pvt. Ltd. () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +{ + "name": "Base Search Mail Content", + "version": "10.0.1.0.0", + "author": "Eficent," + "SerpentCS," + "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/social", + "category": "Social", + "data": ["data/trgm_index_data.xml", + "views/trgm_index_view.xml"], + "depends": ["mail", "base_search_fuzzy"], + "license": "AGPL-3", + 'installable': True, +} diff --git a/base_search_mail_content/data/trgm_index_data.xml b/base_search_mail_content/data/trgm_index_data.xml new file mode 100644 index 00000000..78a25d85 --- /dev/null +++ b/base_search_mail_content/data/trgm_index_data.xml @@ -0,0 +1,34 @@ + + + + + gin + + + + + gin + + + + + gin + + + + + gin + + + + + gin + + + + diff --git a/base_search_mail_content/i18n/am.po b/base_search_mail_content/i18n/am.po new file mode 100644 index 00000000..95bffa33 --- /dev/null +++ b/base_search_mail_content/i18n/am.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "ተባባሪ" diff --git a/base_search_mail_content/i18n/ar.po b/base_search_mail_content/i18n/ar.po new file mode 100644 index 00000000..522206a8 --- /dev/null +++ b/base_search_mail_content/i18n/ar.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "الشريك" diff --git a/base_search_mail_content/i18n/bg.po b/base_search_mail_content/i18n/bg.po new file mode 100644 index 00000000..9f27803b --- /dev/null +++ b/base_search_mail_content/i18n/bg.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Партньор" diff --git a/base_search_mail_content/i18n/bs.po b/base_search_mail_content/i18n/bs.po new file mode 100644 index 00000000..f0dad9dd --- /dev/null +++ b/base_search_mail_content/i18n/bs.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/ca.po b/base_search_mail_content/i18n/ca.po new file mode 100644 index 00000000..9758d9c6 --- /dev/null +++ b/base_search_mail_content/i18n/ca.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +# Marc Tormo i Bochaca , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 08:19+0000\n" +"PO-Revision-Date: 2017-03-28 08:19+0000\n" +"Last-Translator: Marc Tormo i Bochaca , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "Tema del Correu electrònic " + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/base_search_mail_content/i18n/cs.po b/base_search_mail_content/i18n/cs.po new file mode 100644 index 00000000..89358cca --- /dev/null +++ b/base_search_mail_content/i18n/cs.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Společník" diff --git a/base_search_mail_content/i18n/da.po b/base_search_mail_content/i18n/da.po new file mode 100644 index 00000000..2ece7d97 --- /dev/null +++ b/base_search_mail_content/i18n/da.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/de.po b/base_search_mail_content/i18n/de.po new file mode 100644 index 00000000..be4a1988 --- /dev/null +++ b/base_search_mail_content/i18n/de.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 08:19+0000\n" +"PO-Revision-Date: 2017-03-28 08:19+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "\"Sie können ein Feld vom Typ 'text', 'char' oder 'html' verwenden.\"" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "Email-Thread" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "Mitteilungsinhalt" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "Mitteilungsinhalt, nur zur Verwendung in Suche" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/el_GR.po b/base_search_mail_content/i18n/el_GR.po new file mode 100644 index 00000000..af5040ec --- /dev/null +++ b/base_search_mail_content/i18n/el_GR.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Συνεργάτης" diff --git a/base_search_mail_content/i18n/en_GB.po b/base_search_mail_content/i18n/en_GB.po new file mode 100644 index 00000000..f6d4da5d --- /dev/null +++ b/base_search_mail_content/i18n/en_GB.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/es.po b/base_search_mail_content/i18n/es.po new file mode 100644 index 00000000..80888774 --- /dev/null +++ b/base_search_mail_content/i18n/es.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +# Pedro M. Baeza , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 08:19+0000\n" +"PO-Revision-Date: 2017-03-28 08:19+0000\n" +"Last-Translator: Pedro M. Baeza , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "\"Puede seleccionar un campo de tipo 'text', 'char' o 'html'.\"" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "Hilo correo electrónico" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "Contenido del mensaje" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "Contenido del mensaje, para ser usado sólo en búsquedas" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/base_search_mail_content/i18n/es_CR.po b/base_search_mail_content/i18n/es_CR.po new file mode 100644 index 00000000..3a626e62 --- /dev/null +++ b/base_search_mail_content/i18n/es_CR.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/base_search_mail_content/i18n/es_EC.po b/base_search_mail_content/i18n/es_EC.po new file mode 100644 index 00000000..e376d51b --- /dev/null +++ b/base_search_mail_content/i18n/es_EC.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/base_search_mail_content/i18n/es_MX.po b/base_search_mail_content/i18n/es_MX.po new file mode 100644 index 00000000..414cabb1 --- /dev/null +++ b/base_search_mail_content/i18n/es_MX.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/base_search_mail_content/i18n/es_VE.po b/base_search_mail_content/i18n/es_VE.po new file mode 100644 index 00000000..702c5544 --- /dev/null +++ b/base_search_mail_content/i18n/es_VE.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/base_search_mail_content/i18n/et.po b/base_search_mail_content/i18n/et.po new file mode 100644 index 00000000..b3b99c8a --- /dev/null +++ b/base_search_mail_content/i18n/et.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/eu.po b/base_search_mail_content/i18n/eu.po new file mode 100644 index 00000000..bb3ffe40 --- /dev/null +++ b/base_search_mail_content/i18n/eu.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-18 07:47+0000\n" +"PO-Revision-Date: 2017-02-18 07:47+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Kidea" diff --git a/base_search_mail_content/i18n/fi.po b/base_search_mail_content/i18n/fi.po new file mode 100644 index 00000000..4aa9906e --- /dev/null +++ b/base_search_mail_content/i18n/fi.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Kumppani" diff --git a/base_search_mail_content/i18n/fr.po b/base_search_mail_content/i18n/fr.po new file mode 100644 index 00000000..12657a32 --- /dev/null +++ b/base_search_mail_content/i18n/fr.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# Zwygart , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "Discussion de courriel" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partenaire" diff --git a/base_search_mail_content/i18n/fr_CA.po b/base_search_mail_content/i18n/fr_CA.po new file mode 100644 index 00000000..b72abade --- /dev/null +++ b/base_search_mail_content/i18n/fr_CA.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partenaire" diff --git a/base_search_mail_content/i18n/fr_CH.po b/base_search_mail_content/i18n/fr_CH.po new file mode 100644 index 00000000..1578304d --- /dev/null +++ b/base_search_mail_content/i18n/fr_CH.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partenaire" diff --git a/base_search_mail_content/i18n/gl.po b/base_search_mail_content/i18n/gl.po new file mode 100644 index 00000000..99f034eb --- /dev/null +++ b/base_search_mail_content/i18n/gl.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Empresa" diff --git a/base_search_mail_content/i18n/hr.po b/base_search_mail_content/i18n/hr.po new file mode 100644 index 00000000..a44084f8 --- /dev/null +++ b/base_search_mail_content/i18n/hr.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/hr_HR.po b/base_search_mail_content/i18n/hr_HR.po new file mode 100644 index 00000000..84edb935 --- /dev/null +++ b/base_search_mail_content/i18n/hr_HR.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/hu.po b/base_search_mail_content/i18n/hu.po new file mode 100644 index 00000000..b2091e72 --- /dev/null +++ b/base_search_mail_content/i18n/hu.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/it.po b/base_search_mail_content/i18n/it.po new file mode 100644 index 00000000..579376db --- /dev/null +++ b/base_search_mail_content/i18n/it.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "Discussione Email" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/ja.po b/base_search_mail_content/i18n/ja.po new file mode 100644 index 00000000..46f35eb2 --- /dev/null +++ b/base_search_mail_content/i18n/ja.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "パートナ" diff --git a/base_search_mail_content/i18n/lt.po b/base_search_mail_content/i18n/lt.po new file mode 100644 index 00000000..378c01e6 --- /dev/null +++ b/base_search_mail_content/i18n/lt.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partneris" diff --git a/base_search_mail_content/i18n/lv.po b/base_search_mail_content/i18n/lv.po new file mode 100644 index 00000000..082dbfc6 --- /dev/null +++ b/base_search_mail_content/i18n/lv.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partneris" diff --git a/base_search_mail_content/i18n/mk.po b/base_search_mail_content/i18n/mk.po new file mode 100644 index 00000000..55c15686 --- /dev/null +++ b/base_search_mail_content/i18n/mk.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Партнер" diff --git a/base_search_mail_content/i18n/mn.po b/base_search_mail_content/i18n/mn.po new file mode 100644 index 00000000..4faaf75c --- /dev/null +++ b/base_search_mail_content/i18n/mn.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Харилцагч" diff --git a/base_search_mail_content/i18n/nb.po b/base_search_mail_content/i18n/nb.po new file mode 100644 index 00000000..22095ad7 --- /dev/null +++ b/base_search_mail_content/i18n/nb.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/nb_NO.po b/base_search_mail_content/i18n/nb_NO.po new file mode 100644 index 00000000..e02c666d --- /dev/null +++ b/base_search_mail_content/i18n/nb_NO.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/nl.po b/base_search_mail_content/i18n/nl.po new file mode 100644 index 00000000..a6fad0dc --- /dev/null +++ b/base_search_mail_content/i18n/nl.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Relatie" diff --git a/base_search_mail_content/i18n/nl_BE.po b/base_search_mail_content/i18n/nl_BE.po new file mode 100644 index 00000000..47ff9992 --- /dev/null +++ b/base_search_mail_content/i18n/nl_BE.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Relatie" diff --git a/base_search_mail_content/i18n/pl.po b/base_search_mail_content/i18n/pl.po new file mode 100644 index 00000000..96059ea2 --- /dev/null +++ b/base_search_mail_content/i18n/pl.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/pt.po b/base_search_mail_content/i18n/pt.po new file mode 100644 index 00000000..ee033193 --- /dev/null +++ b/base_search_mail_content/i18n/pt.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Entidade" diff --git a/base_search_mail_content/i18n/pt_BR.po b/base_search_mail_content/i18n/pt_BR.po new file mode 100644 index 00000000..8da92603 --- /dev/null +++ b/base_search_mail_content/i18n/pt_BR.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "Processo Email" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Parceiro" diff --git a/base_search_mail_content/i18n/pt_PT.po b/base_search_mail_content/i18n/pt_PT.po new file mode 100644 index 00000000..6cf743b7 --- /dev/null +++ b/base_search_mail_content/i18n/pt_PT.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# Pedro Castro Silva , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "Tópico de Email" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Parceiro" diff --git a/base_search_mail_content/i18n/ro.po b/base_search_mail_content/i18n/ro.po new file mode 100644 index 00000000..34501b0c --- /dev/null +++ b/base_search_mail_content/i18n/ro.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partener" diff --git a/base_search_mail_content/i18n/ru.po b/base_search_mail_content/i18n/ru.po new file mode 100644 index 00000000..b26a691d --- /dev/null +++ b/base_search_mail_content/i18n/ru.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Контрагент" diff --git a/base_search_mail_content/i18n/sk.po b/base_search_mail_content/i18n/sk.po new file mode 100644 index 00000000..1cd938b4 --- /dev/null +++ b/base_search_mail_content/i18n/sk.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# gebri , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: gebri , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/sl.po b/base_search_mail_content/i18n/sl.po new file mode 100644 index 00000000..4777adb6 --- /dev/null +++ b/base_search_mail_content/i18n/sl.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "E-poštna nit" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/sr@latin.po b/base_search_mail_content/i18n/sr@latin.po new file mode 100644 index 00000000..c87e143d --- /dev/null +++ b/base_search_mail_content/i18n/sr@latin.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Partner" diff --git a/base_search_mail_content/i18n/sv.po b/base_search_mail_content/i18n/sv.po new file mode 100644 index 00000000..95524cbe --- /dev/null +++ b/base_search_mail_content/i18n/sv.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Företag" diff --git a/base_search_mail_content/i18n/th.po b/base_search_mail_content/i18n/th.po new file mode 100644 index 00000000..7a545243 --- /dev/null +++ b/base_search_mail_content/i18n/th.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "พาร์ทเนอร์" diff --git a/base_search_mail_content/i18n/tr.po b/base_search_mail_content/i18n/tr.po new file mode 100644 index 00000000..98f6cfde --- /dev/null +++ b/base_search_mail_content/i18n/tr.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "Eposta konuşması" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "İş Ortağı" diff --git a/base_search_mail_content/i18n/tr_TR.po b/base_search_mail_content/i18n/tr_TR.po new file mode 100644 index 00000000..38a65d5c --- /dev/null +++ b/base_search_mail_content/i18n/tr_TR.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Ortak" diff --git a/base_search_mail_content/i18n/vi.po b/base_search_mail_content/i18n/vi.po new file mode 100644 index 00000000..2bc65c6b --- /dev/null +++ b/base_search_mail_content/i18n/vi.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "Đối tác" diff --git a/base_search_mail_content/i18n/zh_CN.po b/base_search_mail_content/i18n/zh_CN.po new file mode 100644 index 00000000..ad1c77a5 --- /dev/null +++ b/base_search_mail_content/i18n/zh_CN.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "业务伙伴" diff --git a/base_search_mail_content/i18n/zh_TW.po b/base_search_mail_content/i18n/zh_TW.po new file mode 100644 index 00000000..28b073df --- /dev/null +++ b/base_search_mail_content/i18n/zh_TW.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-18 03:39+0000\n" +"PO-Revision-Date: 2017-01-18 03:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +msgid "Message content, to be used only in searches" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_res_partner +msgid "Partner" +msgstr "夥伴" diff --git a/base_search_mail_content/models/__init__.py b/base_search_mail_content/models/__init__.py new file mode 100644 index 00000000..b0b43827 --- /dev/null +++ b/base_search_mail_content/models/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# © 2016-17 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# © 2016 Serpent Consulting Services Pvt. Ltd. () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import mail_thread diff --git a/base_search_mail_content/models/mail_thread.py b/base_search_mail_content/models/mail_thread.py new file mode 100644 index 00000000..822f3d44 --- /dev/null +++ b/base_search_mail_content/models/mail_thread.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +# © 2016-17 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# © 2016 Serpent Consulting Services Pvt. Ltd. () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models +from lxml import etree +from odoo.osv import expression +from odoo.osv.orm import setup_modifiers + + +class MailThread(models.AbstractModel): + + _inherit = 'mail.thread' + + def _search_message_content(self, operator, value): + + model_domain = [('model', '=', self._name)] + if operator not in expression.NEGATIVE_TERM_OPERATORS: + model_domain += ["|"] * 4 + model_domain += [ + ('record_name', operator, value), + ('subject', operator, value), + ('body', operator, value), + ('email_from', operator, value), + ('reply_to', operator, value) + ] + recs = self.env['mail.message'].search(model_domain) + return [('id', 'in', recs.mapped('res_id'))] + + message_content = fields.Text( + string='Message Content', + help='Message content, to be used only in searches', + compute=lambda self: False, + search='_search_message_content') + + @api.model + def fields_view_get(self, view_id=None, view_type='form', toolbar=False, + submenu=False): + """ + Override to add message_content field in all the objects + that inherits mail.thread + """ + res = super(MailThread, self).fields_view_get( + view_id=view_id, view_type=view_type, toolbar=toolbar, + submenu=submenu) + if view_type == 'search' and self._fields.get('message_content'): + doc = etree.XML(res['arch']) + res['fields'].update({ + 'message_content': { + 'type': 'char', + 'string': 'Message Content', + } + }) + + for node in doc.xpath("//field[1]"): + # Add message_content in search view + elem = etree.Element( + 'field', + { + 'name': 'message_content', + }) + setup_modifiers(elem) + node.addnext(elem) + res['arch'] = etree.tostring(doc) + return res diff --git a/base_search_mail_content/static/description/icon.png b/base_search_mail_content/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/base_search_mail_content/static/description/icon.png differ diff --git a/base_search_mail_content/tests/__init__.py b/base_search_mail_content/tests/__init__.py new file mode 100644 index 00000000..915ca325 --- /dev/null +++ b/base_search_mail_content/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import test_base_search_mail_content diff --git a/base_search_mail_content/tests/test_base_search_mail_content.py b/base_search_mail_content/tests/test_base_search_mail_content.py new file mode 100644 index 00000000..38b2c3eb --- /dev/null +++ b/base_search_mail_content/tests/test_base_search_mail_content.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Eficent Business and IT Consulting Services S.L. +# (http://www.eficent.com) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo.tests.common import TransactionCase + + +class TestBaseSearchMailContent(TransactionCase): + def setUp(self): + super(TestBaseSearchMailContent, self).setUp() + self.channel_obj = self.env["mail.channel"] + + def test_base_search_mail_content_1(self): + res = self.channel_obj.search( + [('message_content', 'ilike', 'xxxyyyzzz')]) + self.assertFalse(res, "You have a channel with xxxyyyzzz :O") + + def test_base_search_mail_content_2(self): + res = self.channel_obj.load_views( + [[False, 'search']], {'load_fields': False, + 'load_filters': True, + 'toolbar': True}) + self.assertIn( + 'message_content', res['fields_views']['search']['fields'], + "message_content field was not detected") diff --git a/base_search_mail_content/views/trgm_index_view.xml b/base_search_mail_content/views/trgm_index_view.xml new file mode 100644 index 00000000..ed3a55a8 --- /dev/null +++ b/base_search_mail_content/views/trgm_index_view.xml @@ -0,0 +1,27 @@ + + + + + trgm.index.view.form + trgm.index + + + + [('ttype', 'in', ['char', 'text', 'html'])] + "You can either select a field of type 'text', 'char' or 'html'." + + + + + + trgm.index.view.tree + trgm.index + + + + "You can either select a field of type 'text', 'char' or 'html'." + + + + + diff --git a/oca_dependencies.txt b/oca_dependencies.txt new file mode 100644 index 00000000..a89069d5 --- /dev/null +++ b/oca_dependencies.txt @@ -0,0 +1 @@ +server-tools \ No newline at end of file