summaryrefslogtreecommitdiff
path: root/addons/attachment_indexation
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/attachment_indexation
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/attachment_indexation')
-rw-r--r--addons/attachment_indexation/__init__.py4
-rw-r--r--addons/attachment_indexation/__manifest__.py18
-rw-r--r--addons/attachment_indexation/i18n/ar.po42
-rw-r--r--addons/attachment_indexation/i18n/attachment_indexation.pot36
-rw-r--r--addons/attachment_indexation/i18n/bg.po41
-rw-r--r--addons/attachment_indexation/i18n/bn.po40
-rw-r--r--addons/attachment_indexation/i18n/ca.po41
-rw-r--r--addons/attachment_indexation/i18n/ckb.po40
-rw-r--r--addons/attachment_indexation/i18n/cs.po42
-rw-r--r--addons/attachment_indexation/i18n/da.po42
-rw-r--r--addons/attachment_indexation/i18n/de.po40
-rw-r--r--addons/attachment_indexation/i18n/el.po40
-rw-r--r--addons/attachment_indexation/i18n/eo.po36
-rw-r--r--addons/attachment_indexation/i18n/es.po41
-rw-r--r--addons/attachment_indexation/i18n/es_MX.po40
-rw-r--r--addons/attachment_indexation/i18n/et.po41
-rw-r--r--addons/attachment_indexation/i18n/eu.po42
-rw-r--r--addons/attachment_indexation/i18n/fa.po42
-rw-r--r--addons/attachment_indexation/i18n/fi.po43
-rw-r--r--addons/attachment_indexation/i18n/fr.po43
-rw-r--r--addons/attachment_indexation/i18n/he.po41
-rw-r--r--addons/attachment_indexation/i18n/hi.po36
-rw-r--r--addons/attachment_indexation/i18n/hr.po40
-rw-r--r--addons/attachment_indexation/i18n/hu.po42
-rw-r--r--addons/attachment_indexation/i18n/id.po41
-rw-r--r--addons/attachment_indexation/i18n/it.po40
-rw-r--r--addons/attachment_indexation/i18n/ja.po42
-rw-r--r--addons/attachment_indexation/i18n/ka.po41
-rw-r--r--addons/attachment_indexation/i18n/km.po41
-rw-r--r--addons/attachment_indexation/i18n/ko.po40
-rw-r--r--addons/attachment_indexation/i18n/lb.po21
-rw-r--r--addons/attachment_indexation/i18n/lt.po42
-rw-r--r--addons/attachment_indexation/i18n/lv.po41
-rw-r--r--addons/attachment_indexation/i18n/mn.po40
-rw-r--r--addons/attachment_indexation/i18n/nb.po41
-rw-r--r--addons/attachment_indexation/i18n/nl.po41
-rw-r--r--addons/attachment_indexation/i18n/pl.po41
-rw-r--r--addons/attachment_indexation/i18n/pt.po42
-rw-r--r--addons/attachment_indexation/i18n/pt_BR.po43
-rw-r--r--addons/attachment_indexation/i18n/ro.po40
-rw-r--r--addons/attachment_indexation/i18n/ru.po43
-rw-r--r--addons/attachment_indexation/i18n/si.po36
-rw-r--r--addons/attachment_indexation/i18n/sk.po42
-rw-r--r--addons/attachment_indexation/i18n/sl.po42
-rw-r--r--addons/attachment_indexation/i18n/sv.po41
-rw-r--r--addons/attachment_indexation/i18n/th.po40
-rw-r--r--addons/attachment_indexation/i18n/tr.po43
-rw-r--r--addons/attachment_indexation/i18n/uk.po40
-rw-r--r--addons/attachment_indexation/i18n/ur.po36
-rw-r--r--addons/attachment_indexation/i18n/vi.po41
-rw-r--r--addons/attachment_indexation/i18n/zh_CN.po42
-rw-r--r--addons/attachment_indexation/i18n/zh_TW.po40
-rw-r--r--addons/attachment_indexation/models/__init__.py4
-rw-r--r--addons/attachment_indexation/models/ir_attachment.py130
-rw-r--r--addons/attachment_indexation/tests/__init__.py3
-rw-r--r--addons/attachment_indexation/tests/files/test_content.pdfbin0 -> 7497 bytes
-rw-r--r--addons/attachment_indexation/tests/test_indexation.py23
57 files changed, 2196 insertions, 0 deletions
diff --git a/addons/attachment_indexation/__init__.py b/addons/attachment_indexation/__init__.py
new file mode 100644
index 00000000..dc5e6b69
--- /dev/null
+++ b/addons/attachment_indexation/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import models
diff --git a/addons/attachment_indexation/__manifest__.py b/addons/attachment_indexation/__manifest__.py
new file mode 100644
index 00000000..180b7724
--- /dev/null
+++ b/addons/attachment_indexation/__manifest__.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+{
+ 'name': 'Attachments List and Document Indexation',
+ 'version': '2.1',
+ 'category': 'Hidden/Tools',
+ 'description': """
+Attachments list and document indexation
+========================================
+* Show attachment on the top of the forms
+* Document Indexation: odt, pdf, xlsx, docx
+
+The `pdfminer.six` Python library has to be installed in order to index PDF files
+""",
+ 'depends': ['web'],
+ 'installable': True,
+ 'license': 'LGPL-3',
+}
diff --git a/addons/attachment_indexation/i18n/ar.po b/addons/attachment_indexation/i18n/ar.po
new file mode 100644
index 00000000..412b8505
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ar.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Mustafa Rawi <mustafa@cubexco.com>, 2020
+# Martin Trigaux, 2020
+# Osama Ahmaro <osamaahmaro@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n"
+"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "مرفق"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "الاسم المعروض"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "المُعرف"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "آخر تعديل في"
diff --git a/addons/attachment_indexation/i18n/attachment_indexation.pot b/addons/attachment_indexation/i18n/attachment_indexation.pot
new file mode 100644
index 00000000..e132b9e1
--- /dev/null
+++ b/addons/attachment_indexation/i18n/attachment_indexation.pot
@@ -0,0 +1,36 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-01 07:28+0000\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr ""
diff --git a/addons/attachment_indexation/i18n/bg.po b/addons/attachment_indexation/i18n/bg.po
new file mode 100644
index 00000000..3665ea00
--- /dev/null
+++ b/addons/attachment_indexation/i18n/bg.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Maria Boyadjieva <marabo2000@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n"
+"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Прикачен файл"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Име за показване"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Последно променено на"
diff --git a/addons/attachment_indexation/i18n/bn.po b/addons/attachment_indexation/i18n/bn.po
new file mode 100644
index 00000000..39322dba
--- /dev/null
+++ b/addons/attachment_indexation/i18n/bn.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Abu Zafar <azmikbal@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n"
+"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "এটাচমেন্ট"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "প্রদর্শন নাম"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "আইডি "
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "সর্বশেষ সংশোধিত"
diff --git a/addons/attachment_indexation/i18n/ca.po b/addons/attachment_indexation/i18n/ca.po
new file mode 100644
index 00000000..b0857020
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ca.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Josep Anton Belchi, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Josep Anton Belchi, 2021\n"
+"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Adjunt"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nom mostrat"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Última modificació el "
diff --git a/addons/attachment_indexation/i18n/ckb.po b/addons/attachment_indexation/i18n/ckb.po
new file mode 100644
index 00000000..8e3e1a6f
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ckb.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n"
+"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ckb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "هاوپێچ"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "پیشاندانی ناو"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ناسنامە"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "دواین دەستکاری لە"
diff --git a/addons/attachment_indexation/i18n/cs.po b/addons/attachment_indexation/i18n/cs.po
new file mode 100644
index 00000000..b739e6d6
--- /dev/null
+++ b/addons/attachment_indexation/i18n/cs.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jan Horzinka <jan.horzinka@centrum.cz>, 2020
+# Jiří Podhorecký, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Jiří Podhorecký, 2020\n"
+"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Příloha"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Zobrazované jméno"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Naposled změněno"
diff --git a/addons/attachment_indexation/i18n/da.po b/addons/attachment_indexation/i18n/da.po
new file mode 100644
index 00000000..8a7dd595
--- /dev/null
+++ b/addons/attachment_indexation/i18n/da.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Morten Schou <ms@msteknik.dk>, 2020
+# Jesper Carstensen <jc@danodoo.dk>, 2020
+# Sanne Kristensen <sanne@vkdata.dk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2020\n"
+"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Vedhæftning"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Vis navn"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Sidst ændret den"
diff --git a/addons/attachment_indexation/i18n/de.po b/addons/attachment_indexation/i18n/de.po
new file mode 100644
index 00000000..ebb5757e
--- /dev/null
+++ b/addons/attachment_indexation/i18n/de.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: German (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Dateianhang"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Anzeigename"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Zuletzt geändert am"
diff --git a/addons/attachment_indexation/i18n/el.po b/addons/attachment_indexation/i18n/el.po
new file mode 100644
index 00000000..b691880f
--- /dev/null
+++ b/addons/attachment_indexation/i18n/el.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: el\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Συνημμένο"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Εμφάνιση Ονόματος"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "Κωδικός"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Τελευταία τροποποίηση στις"
diff --git a/addons/attachment_indexation/i18n/eo.po b/addons/attachment_indexation/i18n/eo.po
new file mode 100644
index 00000000..ccdde435
--- /dev/null
+++ b/addons/attachment_indexation/i18n/eo.po
@@ -0,0 +1,36 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr ""
diff --git a/addons/attachment_indexation/i18n/es.po b/addons/attachment_indexation/i18n/es.po
new file mode 100644
index 00000000..10f5f37d
--- /dev/null
+++ b/addons/attachment_indexation/i18n/es.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Daniela Cervantes <dace@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n"
+"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Archivo adjunto"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "Identificación"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
diff --git a/addons/attachment_indexation/i18n/es_MX.po b/addons/attachment_indexation/i18n/es_MX.po
new file mode 100644
index 00000000..e2c4aec9
--- /dev/null
+++ b/addons/attachment_indexation/i18n/es_MX.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Cécile Collart <cco@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Cécile Collart <cco@odoo.com>, 2021\n"
+"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Archivo adjunto"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "Identificación"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
diff --git a/addons/attachment_indexation/i18n/et.po b/addons/attachment_indexation/i18n/et.po
new file mode 100644
index 00000000..259d6fdf
--- /dev/null
+++ b/addons/attachment_indexation/i18n/et.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Triine Aavik <triine@avalah.ee>, 2020
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Manus"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Kuva nimi"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Viimati muudetud (millal)"
diff --git a/addons/attachment_indexation/i18n/eu.po b/addons/attachment_indexation/i18n/eu.po
new file mode 100644
index 00000000..21153f1f
--- /dev/null
+++ b/addons/attachment_indexation/i18n/eu.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2021
+# Eneko <eastigarraga@codesyntax.com>, 2021
+# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021\n"
+"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Eranskin "
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Izena erakutsi"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Azken aldaketa"
diff --git a/addons/attachment_indexation/i18n/fa.po b/addons/attachment_indexation/i18n/fa.po
new file mode 100644
index 00000000..1f27a756
--- /dev/null
+++ b/addons/attachment_indexation/i18n/fa.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Hamid Darabi, 2020
+# Hamed Mohammadi <hamed@dehongi.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n"
+"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fa\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "پیوست"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "نام نمایشی"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "شناسه"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "آخرین تغییر در"
diff --git a/addons/attachment_indexation/i18n/fi.po b/addons/attachment_indexation/i18n/fi.po
new file mode 100644
index 00000000..ccb73360
--- /dev/null
+++ b/addons/attachment_indexation/i18n/fi.po
@@ -0,0 +1,43 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020
+# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020\n"
+"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Liite"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Näyttönimi"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "Tunniste (ID)"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Viimeksi muokattu"
diff --git a/addons/attachment_indexation/i18n/fr.po b/addons/attachment_indexation/i18n/fr.po
new file mode 100644
index 00000000..03749a8f
--- /dev/null
+++ b/addons/attachment_indexation/i18n/fr.po
@@ -0,0 +1,43 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020
+# Cécile Collart <cco@odoo.com>, 2020
+# Gilles Mangin <gilles.mangin@phidias.fr>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Gilles Mangin <gilles.mangin@phidias.fr>, 2020\n"
+"Language-Team: French (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Pièce jointe"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nom affiché"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Dernière modification le"
diff --git a/addons/attachment_indexation/i18n/he.po b/addons/attachment_indexation/i18n/he.po
new file mode 100644
index 00000000..57a1e547
--- /dev/null
+++ b/addons/attachment_indexation/i18n/he.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# ExcaliberX <excaliberx@gmail.com>, 2020
+# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n"
+"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: he\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "קובץ מצורף"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "שם תצוגה"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "מזהה"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "שונה לאחרונה ב - "
diff --git a/addons/attachment_indexation/i18n/hi.po b/addons/attachment_indexation/i18n/hi.po
new file mode 100644
index 00000000..e52f57f9
--- /dev/null
+++ b/addons/attachment_indexation/i18n/hi.po
@@ -0,0 +1,36 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr ""
diff --git a/addons/attachment_indexation/i18n/hr.po b/addons/attachment_indexation/i18n/hr.po
new file mode 100644
index 00000000..dfca5951
--- /dev/null
+++ b/addons/attachment_indexation/i18n/hr.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Prilog"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Naziv"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Zadnja promjena"
diff --git a/addons/attachment_indexation/i18n/hu.po b/addons/attachment_indexation/i18n/hu.po
new file mode 100644
index 00000000..49fd89c7
--- /dev/null
+++ b/addons/attachment_indexation/i18n/hu.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2021
+# Tamás Németh <ntomasz81@gmail.com>, 2021
+# Ákos Nagy <akos.nagy@oregional.hu>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2021\n"
+"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Melléklet"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Név megjelenítése"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "Azonosító"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Legutóbb módosítva"
diff --git a/addons/attachment_indexation/i18n/id.po b/addons/attachment_indexation/i18n/id.po
new file mode 100644
index 00000000..1f95f773
--- /dev/null
+++ b/addons/attachment_indexation/i18n/id.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Bonny Useful <bonny.useful@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Bonny Useful <bonny.useful@gmail.com>, 2020\n"
+"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Lampiran"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nama Tampilan"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Terakhir diubah pada"
diff --git a/addons/attachment_indexation/i18n/it.po b/addons/attachment_indexation/i18n/it.po
new file mode 100644
index 00000000..95cb174f
--- /dev/null
+++ b/addons/attachment_indexation/i18n/it.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Sergio Zanchetta <primes2h@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2020\n"
+"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Allegato"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nome visualizzato"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Ultima modifica il"
diff --git a/addons/attachment_indexation/i18n/ja.po b/addons/attachment_indexation/i18n/ja.po
new file mode 100644
index 00000000..f5b4c71d
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ja.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020
+# Martin Trigaux, 2020
+# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Yoshi Tashiro <tashiro@roomsfor.hk>, 2020\n"
+"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "添付"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "表示名"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "最終更新日"
diff --git a/addons/attachment_indexation/i18n/ka.po b/addons/attachment_indexation/i18n/ka.po
new file mode 100644
index 00000000..ee45f61d
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ka.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021
+# Martin Trigaux, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2021\n"
+"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ka\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "დანართი"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "სახელი"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "იდენტიფიკატორი/ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "ბოლოს განახლებულია"
diff --git a/addons/attachment_indexation/i18n/km.po b/addons/attachment_indexation/i18n/km.po
new file mode 100644
index 00000000..8eaceb08
--- /dev/null
+++ b/addons/attachment_indexation/i18n/km.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Sengtha Chay <sengtha@gmail.com>, 2020
+# Lux Sok <sok.lux@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n"
+"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: km\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "ឯកសារ​ភ្ជាប់"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "ឈ្មោះសំរាប់បង្ហាញ"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "អត្តសញ្ញាណ"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
diff --git a/addons/attachment_indexation/i18n/ko.po b/addons/attachment_indexation/i18n/ko.po
new file mode 100644
index 00000000..40a2d573
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ko.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "첨부 파일"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "이름 표시"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "최근 수정"
diff --git a/addons/attachment_indexation/i18n/lb.po b/addons/attachment_indexation/i18n/lb.po
new file mode 100644
index 00000000..c582b1f9
--- /dev/null
+++ b/addons/attachment_indexation/i18n/lb.po
@@ -0,0 +1,21 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~12.2\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-03-20 14:18+0000\n"
+"PO-Revision-Date: 2019-08-26 09:09+0000\n"
+"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr ""
diff --git a/addons/attachment_indexation/i18n/lt.po b/addons/attachment_indexation/i18n/lt.po
new file mode 100644
index 00000000..775742ea
--- /dev/null
+++ b/addons/attachment_indexation/i18n/lt.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2021
+# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021
+# Linas Versada <linaskrisiukenas@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n"
+"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Prisegtukas"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Rodomas pavadinimas"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Paskutinį kartą keista"
diff --git a/addons/attachment_indexation/i18n/lv.po b/addons/attachment_indexation/i18n/lv.po
new file mode 100644
index 00000000..42c9b593
--- /dev/null
+++ b/addons/attachment_indexation/i18n/lv.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Arnis Putniņš <arnis@allegro.lv>, 2020
+# ievaputnina <ievai.putninai@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\n"
+"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Pielikums"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Attēlotais nosaukums"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Pēdējoreiz modificēts"
diff --git a/addons/attachment_indexation/i18n/mn.po b/addons/attachment_indexation/i18n/mn.po
new file mode 100644
index 00000000..8abeecb2
--- /dev/null
+++ b/addons/attachment_indexation/i18n/mn.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Хавсралт"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Дэлгэрэнгүй нэр"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Сүүлд зассан огноо"
diff --git a/addons/attachment_indexation/i18n/nb.po b/addons/attachment_indexation/i18n/nb.po
new file mode 100644
index 00000000..f00bac20
--- /dev/null
+++ b/addons/attachment_indexation/i18n/nb.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Marius Stedjan <marius@stedjan.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n"
+"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Vedlegg"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Visningsnavn"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Sist endret"
diff --git a/addons/attachment_indexation/i18n/nl.po b/addons/attachment_indexation/i18n/nl.po
new file mode 100644
index 00000000..f544ff57
--- /dev/null
+++ b/addons/attachment_indexation/i18n/nl.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Bijlage"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Schermnaam"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Laatst gewijzigd op"
diff --git a/addons/attachment_indexation/i18n/pl.po b/addons/attachment_indexation/i18n/pl.po
new file mode 100644
index 00000000..501a6f9e
--- /dev/null
+++ b/addons/attachment_indexation/i18n/pl.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020\n"
+"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Załącznik"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nazwa wyświetlana"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Data ostatniej modyfikacji"
diff --git a/addons/attachment_indexation/i18n/pt.po b/addons/attachment_indexation/i18n/pt.po
new file mode 100644
index 00000000..67b04552
--- /dev/null
+++ b/addons/attachment_indexation/i18n/pt.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Manuela Silva <manuelarodsilva@gmail.com>, 2020
+# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020
+# Pedro Filipe <pedro2.10@hotmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n"
+"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Anexo"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nome"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Última Modificação em"
diff --git a/addons/attachment_indexation/i18n/pt_BR.po b/addons/attachment_indexation/i18n/pt_BR.po
new file mode 100644
index 00000000..ef127333
--- /dev/null
+++ b/addons/attachment_indexation/i18n/pt_BR.po
@@ -0,0 +1,43 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020
+# Martin Trigaux, 2020
+# Mateus Lopes <mateus1@gmail.com>, 2020
+# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Anexo"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nome exibido"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Última modificação em"
diff --git a/addons/attachment_indexation/i18n/ro.po b/addons/attachment_indexation/i18n/ro.po
new file mode 100644
index 00000000..76da4522
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ro.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Atașament"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Nume afișat"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Ultima modificare la"
diff --git a/addons/attachment_indexation/i18n/ru.po b/addons/attachment_indexation/i18n/ru.po
new file mode 100644
index 00000000..1db043f5
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ru.po
@@ -0,0 +1,43 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# ILMIR <karamov@it-projects.info>, 2020
+# Irina Fedulova <istartlin@gmail.com>, 2020
+# Сергей Шебанин <sergey@shebanin.ru>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Сергей Шебанин <sergey@shebanin.ru>, 2020\n"
+"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Вложение"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Отображаемое имя"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "Идентификатор"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Последнее изменение"
diff --git a/addons/attachment_indexation/i18n/si.po b/addons/attachment_indexation/i18n/si.po
new file mode 100644
index 00000000..ef8bc155
--- /dev/null
+++ b/addons/attachment_indexation/i18n/si.po
@@ -0,0 +1,36 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: si\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr ""
diff --git a/addons/attachment_indexation/i18n/sk.po b/addons/attachment_indexation/i18n/sk.po
new file mode 100644
index 00000000..e1ba27e5
--- /dev/null
+++ b/addons/attachment_indexation/i18n/sk.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# gebri <gebri@inmail.sk>, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n"
+"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Príloha"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Zobrazovaný názov"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Posledná úprava"
diff --git a/addons/attachment_indexation/i18n/sl.po b/addons/attachment_indexation/i18n/sl.po
new file mode 100644
index 00000000..26792d6b
--- /dev/null
+++ b/addons/attachment_indexation/i18n/sl.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2021
+# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021
+# matjaz k <matjaz@mentis.si>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: matjaz k <matjaz@mentis.si>, 2021\n"
+"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Priponka"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Prikazani naziv"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Zadnjič spremenjeno"
diff --git a/addons/attachment_indexation/i18n/sv.po b/addons/attachment_indexation/i18n/sv.po
new file mode 100644
index 00000000..f5da5e36
--- /dev/null
+++ b/addons/attachment_indexation/i18n/sv.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2021
+# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2021\n"
+"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Bilaga"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Visningsnamn"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Senast redigerad"
diff --git a/addons/attachment_indexation/i18n/th.po b/addons/attachment_indexation/i18n/th.po
new file mode 100644
index 00000000..3339855d
--- /dev/null
+++ b/addons/attachment_indexation/i18n/th.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "แนบ"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "ชื่อที่ใช้แสดง"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "รหัส"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
diff --git a/addons/attachment_indexation/i18n/tr.po b/addons/attachment_indexation/i18n/tr.po
new file mode 100644
index 00000000..434476bb
--- /dev/null
+++ b/addons/attachment_indexation/i18n/tr.po
@@ -0,0 +1,43 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Levent Karakaş <levent@mektup.at>, 2020
+# Murat Kaplan <muratk@projetgrup.com>, 2020
+# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020\n"
+"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Ek"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Görünüm Adı"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Son Düzenleme"
diff --git a/addons/attachment_indexation/i18n/uk.po b/addons/attachment_indexation/i18n/uk.po
new file mode 100644
index 00000000..762ed38e
--- /dev/null
+++ b/addons/attachment_indexation/i18n/uk.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n"
+"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: uk\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Прикріплення"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Відобразити назву"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Останні зміни на"
diff --git a/addons/attachment_indexation/i18n/ur.po b/addons/attachment_indexation/i18n/ur.po
new file mode 100644
index 00000000..72363cde
--- /dev/null
+++ b/addons/attachment_indexation/i18n/ur.po
@@ -0,0 +1,36 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ur\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr ""
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr ""
diff --git a/addons/attachment_indexation/i18n/vi.po b/addons/attachment_indexation/i18n/vi.po
new file mode 100644
index 00000000..e946c6e2
--- /dev/null
+++ b/addons/attachment_indexation/i18n/vi.po
@@ -0,0 +1,41 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020
+# Duy BQ <duybq86@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Duy BQ <duybq86@gmail.com>, 2020\n"
+"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "Đính kèm"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "Tên hiển thị"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "Sửa lần cuối vào"
diff --git a/addons/attachment_indexation/i18n/zh_CN.po b/addons/attachment_indexation/i18n/zh_CN.po
new file mode 100644
index 00000000..51fb4155
--- /dev/null
+++ b/addons/attachment_indexation/i18n/zh_CN.po
@@ -0,0 +1,42 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020
+# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020\n"
+"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "附件"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "显示名称"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "最后修改日"
diff --git a/addons/attachment_indexation/i18n/zh_TW.po b/addons/attachment_indexation/i18n/zh_TW.po
new file mode 100644
index 00000000..fff61ccb
--- /dev/null
+++ b/addons/attachment_indexation/i18n/zh_TW.po
@@ -0,0 +1,40 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * attachment_indexation
+#
+# Translators:
+# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:10+0000\n"
+"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n"
+"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/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: attachment_indexation
+#: model:ir.model,name:attachment_indexation.model_ir_attachment
+msgid "Attachment"
+msgstr "附件"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__display_name
+msgid "Display Name"
+msgstr "顯示名稱"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment__id
+msgid "ID"
+msgstr "ID"
+
+#. module: attachment_indexation
+#: model:ir.model.fields,field_description:attachment_indexation.field_ir_attachment____last_update
+msgid "Last Modified on"
+msgstr "最後修改於"
diff --git a/addons/attachment_indexation/models/__init__.py b/addons/attachment_indexation/models/__init__.py
new file mode 100644
index 00000000..3f801459
--- /dev/null
+++ b/addons/attachment_indexation/models/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import ir_attachment
diff --git a/addons/attachment_indexation/models/ir_attachment.py b/addons/attachment_indexation/models/ir_attachment.py
new file mode 100644
index 00000000..c6017f01
--- /dev/null
+++ b/addons/attachment_indexation/models/ir_attachment.py
@@ -0,0 +1,130 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+import io
+import logging
+import xml.dom.minidom
+import zipfile
+
+from odoo import api, models
+
+_logger = logging.getLogger(__name__)
+
+try:
+ from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter
+ from pdfminer.converter import TextConverter
+ from pdfminer.pdfpage import PDFPage
+except ImportError:
+ PDFResourceManager = PDFPageInterpreter = TextConverter = PDFPage = None
+ _logger.warning("Attachment indexation of PDF documents is unavailable because the 'pdfminer' Python library cannot be found on the system. "
+ "You may install it from https://pypi.org/project/pdfminer.six/ (e.g. `pip3 install pdfminer.six`)")
+
+FTYPES = ['docx', 'pptx', 'xlsx', 'opendoc', 'pdf']
+
+
+def textToString(element):
+ buff = u""
+ for node in element.childNodes:
+ if node.nodeType == xml.dom.Node.TEXT_NODE:
+ buff += node.nodeValue
+ elif node.nodeType == xml.dom.Node.ELEMENT_NODE:
+ buff += textToString(node)
+ return buff
+
+
+class IrAttachment(models.Model):
+ _inherit = 'ir.attachment'
+
+ def _index_docx(self, bin_data):
+ '''Index Microsoft .docx documents'''
+ buf = u""
+ f = io.BytesIO(bin_data)
+ if zipfile.is_zipfile(f):
+ try:
+ zf = zipfile.ZipFile(f)
+ content = xml.dom.minidom.parseString(zf.read("word/document.xml"))
+ for val in ["w:p", "w:h", "text:list"]:
+ for element in content.getElementsByTagName(val):
+ buf += textToString(element) + "\n"
+ except Exception:
+ pass
+ return buf
+
+ def _index_pptx(self, bin_data):
+ '''Index Microsoft .pptx documents'''
+
+ buf = u""
+ f = io.BytesIO(bin_data)
+ if zipfile.is_zipfile(f):
+ try:
+ zf = zipfile.ZipFile(f)
+ zf_filelist = [x for x in zf.namelist() if x.startswith('ppt/slides/slide')]
+ for i in range(1, len(zf_filelist) + 1):
+ content = xml.dom.minidom.parseString(zf.read('ppt/slides/slide%s.xml' % i))
+ for val in ["a:t"]:
+ for element in content.getElementsByTagName(val):
+ buf += textToString(element) + "\n"
+ except Exception:
+ pass
+ return buf
+
+ def _index_xlsx(self, bin_data):
+ '''Index Microsoft .xlsx documents'''
+
+ buf = u""
+ f = io.BytesIO(bin_data)
+ if zipfile.is_zipfile(f):
+ try:
+ zf = zipfile.ZipFile(f)
+ content = xml.dom.minidom.parseString(zf.read("xl/sharedStrings.xml"))
+ for val in ["t"]:
+ for element in content.getElementsByTagName(val):
+ buf += textToString(element) + "\n"
+ except Exception:
+ pass
+ return buf
+
+ def _index_opendoc(self, bin_data):
+ '''Index OpenDocument documents (.odt, .ods...)'''
+
+ buf = u""
+ f = io.BytesIO(bin_data)
+ if zipfile.is_zipfile(f):
+ try:
+ zf = zipfile.ZipFile(f)
+ content = xml.dom.minidom.parseString(zf.read("content.xml"))
+ for val in ["text:p", "text:h", "text:list"]:
+ for element in content.getElementsByTagName(val):
+ buf += textToString(element) + "\n"
+ except Exception:
+ pass
+ return buf
+
+ def _index_pdf(self, bin_data):
+ '''Index PDF documents'''
+ if PDFResourceManager is None:
+ return
+ buf = u""
+ if bin_data.startswith(b'%PDF-'):
+ f = io.BytesIO(bin_data)
+ try:
+ resource_manager = PDFResourceManager()
+ with io.StringIO() as content, TextConverter(resource_manager, content) as device:
+ logging.getLogger("pdfminer").setLevel(logging.CRITICAL)
+ interpreter = PDFPageInterpreter(resource_manager, device)
+
+ for page in PDFPage.get_pages(f):
+ interpreter.process_page(page)
+
+ buf = content.getvalue()
+ except Exception:
+ pass
+ return buf
+
+ @api.model
+ def _index(self, bin_data, mimetype):
+ for ftype in FTYPES:
+ buf = getattr(self, '_index_%s' % ftype)(bin_data)
+ if buf:
+ return buf.replace('\x00', '')
+
+ return super(IrAttachment, self)._index(bin_data, mimetype)
diff --git a/addons/attachment_indexation/tests/__init__.py b/addons/attachment_indexation/tests/__init__.py
new file mode 100644
index 00000000..d76ba919
--- /dev/null
+++ b/addons/attachment_indexation/tests/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+from . import test_indexation
diff --git a/addons/attachment_indexation/tests/files/test_content.pdf b/addons/attachment_indexation/tests/files/test_content.pdf
new file mode 100644
index 00000000..062e1e6e
--- /dev/null
+++ b/addons/attachment_indexation/tests/files/test_content.pdf
Binary files differ
diff --git a/addons/attachment_indexation/tests/test_indexation.py b/addons/attachment_indexation/tests/test_indexation.py
new file mode 100644
index 00000000..36c558cd
--- /dev/null
+++ b/addons/attachment_indexation/tests/test_indexation.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+
+from odoo.tests.common import TransactionCase, tagged
+from unittest import skipIf
+import os
+
+directory = os.path.dirname(__file__)
+
+try:
+ from pdfminer.pdfinterp import PDFResourceManager
+except ImportError:
+ PDFResourceManager = None
+
+
+@tagged('post_install', '-at_install')
+class TestCaseIndexation(TransactionCase):
+
+ @skipIf(PDFResourceManager is None, "pdfminer not installed")
+ def test_attachment_pdf_indexation(self):
+ with open(os.path.join(directory, 'files', 'test_content.pdf'), 'rb') as file:
+ pdf = file.read()
+ text = self.env['ir.attachment']._index(pdf, 'application/pdf')
+ self.assertEqual(text, 'TestContent!!\x0c', 'the index content should be correct')