From de8e9a20b101a8e69d44ee5303c3d601bb55998e Mon Sep 17 00:00:00 2001 From: darshan-serpent Date: Tue, 17 Jan 2017 12:26:51 +0530 Subject: [PATCH] [IMP] advanced search for negative expression --- base_search_mail_content/README.rst | 2 +- base_search_mail_content/__openerp__.py | 2 +- base_search_mail_content/i18n/am.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/ar.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/bg.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/bs.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/ca.po | 48 +++++++++++++++++++ base_search_mail_content/i18n/cs.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/da.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/de.po | 48 +++++++++++++++++++ base_search_mail_content/i18n/el_GR.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/en_GB.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/es.po | 48 +++++++++++++++++++ base_search_mail_content/i18n/es_CR.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/es_EC.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/es_MX.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/es_VE.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/et.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/eu.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/fi.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/fr.po | 48 +++++++++++++++++++ base_search_mail_content/i18n/fr_CA.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/fr_CH.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/gl.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/hr.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/hr_HR.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/hu.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/it.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/ja.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/lt.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/lv.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/mk.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/mn.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/nb.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/nb_NO.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/nl.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/nl_BE.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/pl.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/pt.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/pt_BR.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/pt_PT.po | 48 +++++++++++++++++++ base_search_mail_content/i18n/ro.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/ru.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/sk.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/sl.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/sr@latin.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/sv.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/th.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/tr.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/tr_TR.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/vi.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/zh_CN.po | 47 ++++++++++++++++++ base_search_mail_content/i18n/zh_TW.po | 47 ++++++++++++++++++ .../models/mail_thread.py | 16 ++++--- .../views/trgm_index_view.xml | 12 +++++ 55 files changed, 2426 insertions(+), 8 deletions(-) create mode 100644 base_search_mail_content/i18n/am.po create mode 100644 base_search_mail_content/i18n/ar.po create mode 100644 base_search_mail_content/i18n/bg.po create mode 100644 base_search_mail_content/i18n/bs.po create mode 100644 base_search_mail_content/i18n/ca.po create mode 100644 base_search_mail_content/i18n/cs.po create mode 100644 base_search_mail_content/i18n/da.po create mode 100644 base_search_mail_content/i18n/de.po create mode 100644 base_search_mail_content/i18n/el_GR.po create mode 100644 base_search_mail_content/i18n/en_GB.po create mode 100644 base_search_mail_content/i18n/es.po create mode 100644 base_search_mail_content/i18n/es_CR.po create mode 100644 base_search_mail_content/i18n/es_EC.po create mode 100644 base_search_mail_content/i18n/es_MX.po create mode 100644 base_search_mail_content/i18n/es_VE.po create mode 100644 base_search_mail_content/i18n/et.po create mode 100644 base_search_mail_content/i18n/eu.po create mode 100644 base_search_mail_content/i18n/fi.po create mode 100644 base_search_mail_content/i18n/fr.po create mode 100644 base_search_mail_content/i18n/fr_CA.po create mode 100644 base_search_mail_content/i18n/fr_CH.po create mode 100644 base_search_mail_content/i18n/gl.po create mode 100644 base_search_mail_content/i18n/hr.po create mode 100644 base_search_mail_content/i18n/hr_HR.po create mode 100644 base_search_mail_content/i18n/hu.po create mode 100644 base_search_mail_content/i18n/it.po create mode 100644 base_search_mail_content/i18n/ja.po create mode 100644 base_search_mail_content/i18n/lt.po create mode 100644 base_search_mail_content/i18n/lv.po create mode 100644 base_search_mail_content/i18n/mk.po create mode 100644 base_search_mail_content/i18n/mn.po create mode 100644 base_search_mail_content/i18n/nb.po create mode 100644 base_search_mail_content/i18n/nb_NO.po create mode 100644 base_search_mail_content/i18n/nl.po create mode 100644 base_search_mail_content/i18n/nl_BE.po create mode 100644 base_search_mail_content/i18n/pl.po create mode 100644 base_search_mail_content/i18n/pt.po create mode 100644 base_search_mail_content/i18n/pt_BR.po create mode 100644 base_search_mail_content/i18n/pt_PT.po create mode 100644 base_search_mail_content/i18n/ro.po create mode 100644 base_search_mail_content/i18n/ru.po create mode 100644 base_search_mail_content/i18n/sk.po create mode 100644 base_search_mail_content/i18n/sl.po create mode 100644 base_search_mail_content/i18n/sr@latin.po create mode 100644 base_search_mail_content/i18n/sv.po create mode 100644 base_search_mail_content/i18n/th.po create mode 100644 base_search_mail_content/i18n/tr.po create mode 100644 base_search_mail_content/i18n/tr_TR.po create mode 100644 base_search_mail_content/i18n/vi.po create mode 100644 base_search_mail_content/i18n/zh_CN.po create mode 100644 base_search_mail_content/i18n/zh_TW.po diff --git a/base_search_mail_content/README.rst b/base_search_mail_content/README.rst index dfa436c..5934ec0 100644 --- a/base_search_mail_content/README.rst +++ b/base_search_mail_content/README.rst @@ -6,7 +6,7 @@ Base Search Mail Content ======================== -This module adds the capability to find any object (e.g. project issues or +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, diff --git a/base_search_mail_content/__openerp__.py b/base_search_mail_content/__openerp__.py index 4da3ff2..db6d9b2 100644 --- a/base_search_mail_content/__openerp__.py +++ b/base_search_mail_content/__openerp__.py @@ -5,7 +5,7 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { - "name": "Base Mail Search Content", + "name": "Base Search Mail Content", "version": "9.0.1.0.0", "author": "Eficent," "SerpentCS," diff --git a/base_search_mail_content/i18n/am.po b/base_search_mail_content/i18n/am.po new file mode 100644 index 0000000..95bffa3 --- /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 0000000..522206a --- /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 0000000..9f27803 --- /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 0000000..f0dad9d --- /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 0000000..9758d9c --- /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 0000000..89358cc --- /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 0000000..2ece7d9 --- /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 0000000..be4a198 --- /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 0000000..af5040e --- /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 0000000..f6d4da5 --- /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 0000000..8088877 --- /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 0000000..3a626e6 --- /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 0000000..e376d51 --- /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 0000000..414cabb --- /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 0000000..702c554 --- /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 0000000..b3b99c8 --- /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 0000000..bb3ffe4 --- /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 0000000..4aa9906 --- /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 0000000..12657a3 --- /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 0000000..b72abad --- /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 0000000..1578304 --- /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 0000000..99f034e --- /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 0000000..a44084f --- /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 0000000..84edb93 --- /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 0000000..b2091e7 --- /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 0000000..579376d --- /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 0000000..46f35eb --- /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 0000000..378c01e --- /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 0000000..082dbfc --- /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 0000000..55c1568 --- /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 0000000..4faaf75 --- /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 0000000..22095ad --- /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 0000000..e02c666 --- /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 0000000..a6fad0d --- /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 0000000..47ff999 --- /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 0000000..96059ea --- /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 0000000..ee03319 --- /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 0000000..8da9260 --- /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 0000000..6cf743b --- /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 0000000..34501b0 --- /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 0000000..b26a691 --- /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 0000000..1cd938b --- /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 0000000..4777adb --- /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 0000000..c87e143 --- /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 0000000..95524cb --- /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 0000000..7a54524 --- /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 0000000..98f6cfd --- /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 0000000..38a65d5 --- /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 0000000..2bc65c6 --- /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 0000000..ad1c77a --- /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 0000000..28b073d --- /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/mail_thread.py b/base_search_mail_content/models/mail_thread.py index 90e8efe..b8a0f11 100644 --- a/base_search_mail_content/models/mail_thread.py +++ b/base_search_mail_content/models/mail_thread.py @@ -15,16 +15,20 @@ class MailThread(models.AbstractModel): _inherit = 'mail.thread' def _search_message_content(self, operator, value): + + main_operator = 'in' + if operator in expression.NEGATIVE_TERM_OPERATORS: + main_operator = 'not in' + operators = {'!=': '=', 'not like': 'like', + 'not ilike': 'ilike', 'not in': 'in'} + operator = operators[operator] domain = [('model', '=', self._name), '|', '|', '|', '|', ('record_name', operator, value), ('subject', operator, value), ('body', operator, value), ('email_from', operator, value), ('reply_to', operator, value)] - - if operator in expression.NEGATIVE_TERM_OPERATORS: - domain = domain[2:] recs = self.env['mail.message'].search(domain) - return [('id', 'in', recs.mapped('res_id'))] + return [('id', main_operator, recs.mapped('res_id'))] @api.multi def _compute_message_content(self): @@ -33,7 +37,7 @@ class MailThread(models.AbstractModel): return '' message_content = fields.Text( - string='Messages', + string='Message Content', help='Message content, to be used only in searches', compute="_compute_message_content", search='_search_message_content') @@ -62,7 +66,7 @@ def _custom_fields_view_get(self, view_id=None, view_type='form', }) for node in doc.xpath("//field[1]"): - # Add message_ids in search view + # Add message_content in search view elem = etree.Element('field', { 'name': 'message_content', }) diff --git a/base_search_mail_content/views/trgm_index_view.xml b/base_search_mail_content/views/trgm_index_view.xml index 2534f64..304a836 100644 --- a/base_search_mail_content/views/trgm_index_view.xml +++ b/base_search_mail_content/views/trgm_index_view.xml @@ -9,6 +9,18 @@ [('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'."