Browse Source

Merge pull request #1478 from Tecnativa/12.0-mig-base_search_fuzzy

12.0 mig base_search_fuzzy
pull/1502/head
Pedro M. Baeza 5 years ago
committed by GitHub
parent
commit
5902af6a1a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 138
      base_search_fuzzy/README.rst
  2. 4
      base_search_fuzzy/__init__.py
  3. 21
      base_search_fuzzy/__manifest__.py
  4. 131
      base_search_fuzzy/i18n/am.po
  5. 133
      base_search_fuzzy/i18n/ar.po
  6. 120
      base_search_fuzzy/i18n/base_search_fuzzy.pot
  7. 131
      base_search_fuzzy/i18n/bg.po
  8. 132
      base_search_fuzzy/i18n/bs.po
  9. 132
      base_search_fuzzy/i18n/ca.po
  10. 131
      base_search_fuzzy/i18n/cs.po
  11. 131
      base_search_fuzzy/i18n/da.po
  12. 136
      base_search_fuzzy/i18n/de.po
  13. 132
      base_search_fuzzy/i18n/el_GR.po
  14. 132
      base_search_fuzzy/i18n/en_GB.po
  15. 131
      base_search_fuzzy/i18n/es.po
  16. 132
      base_search_fuzzy/i18n/es_AR.po
  17. 132
      base_search_fuzzy/i18n/es_CL.po
  18. 132
      base_search_fuzzy/i18n/es_CO.po
  19. 132
      base_search_fuzzy/i18n/es_CR.po
  20. 132
      base_search_fuzzy/i18n/es_DO.po
  21. 132
      base_search_fuzzy/i18n/es_EC.po
  22. 132
      base_search_fuzzy/i18n/es_ES.po
  23. 132
      base_search_fuzzy/i18n/es_MX.po
  24. 132
      base_search_fuzzy/i18n/es_PE.po
  25. 132
      base_search_fuzzy/i18n/es_PY.po
  26. 132
      base_search_fuzzy/i18n/es_VE.po
  27. 131
      base_search_fuzzy/i18n/et.po
  28. 131
      base_search_fuzzy/i18n/eu.po
  29. 131
      base_search_fuzzy/i18n/fa.po
  30. 132
      base_search_fuzzy/i18n/fi.po
  31. 135
      base_search_fuzzy/i18n/fr.po
  32. 132
      base_search_fuzzy/i18n/fr_CA.po
  33. 132
      base_search_fuzzy/i18n/fr_CH.po
  34. 131
      base_search_fuzzy/i18n/gl.po
  35. 132
      base_search_fuzzy/i18n/gl_ES.po
  36. 131
      base_search_fuzzy/i18n/he.po
  37. 133
      base_search_fuzzy/i18n/hr.po
  38. 133
      base_search_fuzzy/i18n/hr_HR.po
  39. 131
      base_search_fuzzy/i18n/hu.po
  40. 131
      base_search_fuzzy/i18n/id.po
  41. 132
      base_search_fuzzy/i18n/it.po
  42. 131
      base_search_fuzzy/i18n/ja.po
  43. 131
      base_search_fuzzy/i18n/ko.po
  44. 132
      base_search_fuzzy/i18n/lt.po
  45. 133
      base_search_fuzzy/i18n/lt_LT.po
  46. 132
      base_search_fuzzy/i18n/lv.po
  47. 131
      base_search_fuzzy/i18n/mk.po
  48. 131
      base_search_fuzzy/i18n/mn.po
  49. 132
      base_search_fuzzy/i18n/nb.po
  50. 133
      base_search_fuzzy/i18n/nb_NO.po
  51. 131
      base_search_fuzzy/i18n/nl.po
  52. 132
      base_search_fuzzy/i18n/nl_BE.po
  53. 132
      base_search_fuzzy/i18n/nl_NL.po
  54. 132
      base_search_fuzzy/i18n/pl.po
  55. 131
      base_search_fuzzy/i18n/pt.po
  56. 132
      base_search_fuzzy/i18n/pt_BR.po
  57. 132
      base_search_fuzzy/i18n/pt_PT.po
  58. 133
      base_search_fuzzy/i18n/ro.po
  59. 133
      base_search_fuzzy/i18n/ru.po
  60. 131
      base_search_fuzzy/i18n/sk.po
  61. 136
      base_search_fuzzy/i18n/sl.po
  62. 132
      base_search_fuzzy/i18n/sr.po
  63. 133
      base_search_fuzzy/i18n/sr@latin.po
  64. 131
      base_search_fuzzy/i18n/sv.po
  65. 131
      base_search_fuzzy/i18n/th.po
  66. 131
      base_search_fuzzy/i18n/tr.po
  67. 133
      base_search_fuzzy/i18n/tr_TR.po
  68. 132
      base_search_fuzzy/i18n/uk.po
  69. 131
      base_search_fuzzy/i18n/vi.po
  70. 132
      base_search_fuzzy/i18n/vi_VN.po
  71. 132
      base_search_fuzzy/i18n/zh_CN.po
  72. 132
      base_search_fuzzy/i18n/zh_TW.po
  73. 5
      base_search_fuzzy/models/__init__.py
  74. 91
      base_search_fuzzy/models/ir_model.py
  75. 175
      base_search_fuzzy/models/trgm_index.py
  76. 5
      base_search_fuzzy/readme/CONFIGURE.rst
  77. 9
      base_search_fuzzy/readme/CONTRIBUTORS.rst
  78. 4
      base_search_fuzzy/readme/DESCRIPTION.rst
  79. 5
      base_search_fuzzy/readme/INSTALL.rst
  80. 2
      base_search_fuzzy/readme/ROADMAP.rst
  81. 24
      base_search_fuzzy/readme/USAGE.rst
  82. 5
      base_search_fuzzy/security/ir.model.access.csv
  83. 489
      base_search_fuzzy/static/description/index.html
  84. 4
      base_search_fuzzy/tests/__init__.py
  85. 101
      base_search_fuzzy/tests/test_query_generation.py
  86. 45
      base_search_fuzzy/views/trgm_index.xml

138
base_search_fuzzy/README.rst

@ -0,0 +1,138 @@
============
Fuzzy Search
============
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
:target: https://github.com/OCA/server-tools/tree/12.0/base_search_fuzzy
:alt: OCA/server-tools
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-base_search_fuzzy
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/149/12.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
This addon provides the ability to create GIN or GiST indexes of char and text
fields and also to use the search operator `%` in search domains. Currently
this module doesn't change the backend search or anything else. It provides
only the possibility to perform the fuzzy search for external addons.
**Table of contents**
.. contents::
:local:
Installation
============
#. The PostgreSQL extension ``pg_trgm`` should be available. In debian based
distribution you have to install the `postgresql-contrib` module.
#. Install the ``pg_trgm`` extension to your database or give your postgresql
user the ``SUPERUSER`` right (this allows the odoo module to install the
extension to the database).
Configuration
=============
If the odoo module is installed:
#. You can define ``GIN`` and ``GiST`` indexes for `char` and `text` via
`Settings -> Database Structure -> Trigram Index`. The index name will
automatically created for new entries.
Usage
=====
#. You can create an index for the `name` field of `res.partner`.
#. In the search you can use:
``self.env['res.partner'].search([('name', '%', 'Jon Miller)])``
#. In this example the function will return positive result for `John Miller`
or `John Mill`.
#. You can tweak the number of strings to be returned by adjusting the set
limit (default: 0.3). NB: Currently you have to set the limit by executing
the following SQL statement:
``self.env.cr.execute("SELECT set_limit(0.2);")``
#. Another interesting feature is the use of ``similarity(column, 'text')``
function in the ``order`` parameter to order by similarity. This module just
contains a basic implementation which doesn't perform validations and has to
start with this function. For example you can define the function as
followed:
``similarity(%s.name, 'John Mil') DESC" % self.env['res.partner']._table``
For further questions read the Documentation of the
`pg_trgm <https://www.postgresql.org/docs/current/static/pgtrgm.html>`_ module.
Known issues / Roadmap
======================
* Modify the general search parts (e.g. in tree view or many2one fields)
* Add better `order by` handling
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20base_search_fuzzy%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
Credits
=======
Authors
~~~~~~~
* bloopark systems GmbH & Co. KG
* Eficent
* Serpent CS
Contributors
~~~~~~~~~~~~
* Christoph Giesel <https://github.com/christophlsa>
* Jordi Ballester <jordi.ballester@eficent.com>
* Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>
* Dave Lasley <dave@laslabs.com>
* `Tecnativa <https://www.tecnativa.com>`_:
* Vicent Cubells
* Ernesto Tejeda
Maintainers
~~~~~~~~~~~
This module is maintained by the OCA.
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/12.0/base_search_fuzzy>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

4
base_search_fuzzy/__init__.py

@ -0,0 +1,4 @@
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models

21
base_search_fuzzy/__manifest__.py

@ -0,0 +1,21 @@
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': "Fuzzy Search",
'summary': "Fuzzy search with the PostgreSQL trigram extension",
'category': 'Uncategorized',
'version': '12.0.1.0.0',
'website': 'https://github.com/OCA/server-tools',
'author': 'bloopark systems GmbH & Co. KG, '
'Eficent, '
'Serpent CS, '
'Odoo Community Association (OCA)',
'license': 'AGPL-3',
'depends': ['base'],
'data': [
'views/trgm_index.xml',
'security/ir.model.access.csv',
],
'installable': True,
}

131
base_search_fuzzy/i18n/am.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/ar.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# SaFi J. <safi2266@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: SaFi J. <safi2266@gmail.com>, 2017\n"
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "أنشئ بواسطة"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "أنشئ في"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "اسم العرض"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "الحقل"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "المعرف"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "آخر تعديل في"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "آخر تحديث بواسطة"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "آخر تحديث في"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

120
base_search_fuzzy/i18n/base_search_fuzzy.pot

@ -0,0 +1,120 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 11.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid "Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is faster to search than a GiST index, but slower to build or update; so GIN is better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid "The index name is automatically generated like fieldname_indextype_idx. If the index already exists and the index is located in the same table then this index is reused. If the index is located in another table then a number is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/bg.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Създадено от"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Създадено на"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Име за Показване"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Последно обновено на"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Последно обновено от"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Последно обновено на"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/bs.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Kreirano"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Prikaži naziv"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Zadnje mijenjano"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/ca.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Carles Antoli <carlesantoli@hotmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-17 13:11+0000\n"
"PO-Revision-Date: 2017-01-17 13:11+0000\n"
"Last-Translator: Carles Antoli <carlesantoli@hotmail.com>, 2017\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creat per"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creat el"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Veure el nom"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Camp"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Darrera modificació el"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Darrera Actualització per"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Darrera Actualització el"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/cs.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Vytvořil(a)"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Vytvořeno"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Zobrazovaný název"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Naposled upraveno"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Naposled upraveno"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Naposled upraveno"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/da.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Oprettet af"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Oprettet den"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Vist navn"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "Id"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Sidst ændret den"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Sidst opdateret af"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Sidst opdateret den"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

136
base_search_fuzzy/i18n/de.po

@ -0,0 +1,136 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
"Zitat aus der PostgreSQL Dokumentation: \"Eine Fausregel ist, ein GIN Index "
"ist schneller durchzusuchen als ein GiST Index, aber langsamer aufzubauen "
"und zu aktualisieren; so ist GIN besser geeignet für statische Daten und "
"GiST für oft aktualisierte Daten.\""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Erstellt von"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Erstellt am:"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Anzeigename"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Feld"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr "GIN"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr "GiST"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr "Index Name"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr "Index Typ"
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Zuletzt geändert am"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Zuletzt aktualisiert von"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Zuletzt aktualisiert am"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Datenmodelle"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
"Die pg_trgm Erweiterung existiert nicht oder kann nicht installiert werden."
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr "Trigram Index"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr "Sie können entweder Felder vom Typ \"text\" oder \"char\" auswählen."
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/el_GR.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
"el_GR/)\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Δημιουργήθηκε από "
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Δημιουργήθηκε στις"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "Κωδικός"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Τελευταία ενημέρωση από"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Τελευταία ενημέρωση στις"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/en_GB.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
"teams/23907/en_GB/)\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Created by"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Created on"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Display Name"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Last Modified on"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/es.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado el"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nombre a mostrar"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Campo"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última actualización por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modelos"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_AR.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
"teams/23907/es_AR/)\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Mostrar Nombre"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_CL.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
"es_CL/)\n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID (identificación)"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_CO.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
"es_CO/)\n"
"Language: es_CO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nombre Público"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última Modificación el"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Actualizado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Actualizado"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_CR.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
"teams/23907/es_CR/)\n"
"Language: es_CR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_DO.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
"teams/23907/es_DO/)\n"
"Language: es_DO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_EC.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
"es_EC/)\n"
"Language: es_EC\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID (identificación)"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_ES.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-01 10:38+0000\n"
"PO-Revision-Date: 2017-05-01 10:38+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
"es_ES/)\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nombre para mostrar"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_MX.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
"es_MX/)\n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nombre desplegado"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Ultima modificacion realizada"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Ultima actualizacion por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Ultima actualización realizada"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_PE.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
"es_PE/)\n"
"Language: es_PE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nombre a Mostrar"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Ultima Modificación en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Actualizado última vez por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Ultima Actualización"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_PY.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
"es_PY/)\n"
"Language: es_PY\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/es_VE.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
"teams/23907/es_VE/)\n"
"Language: es_VE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Mostrar nombre"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Modificada por última vez"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Ultima actualizacion en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/et.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Loonud"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Loodud"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Näidatav nimi"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Viimati muudetud"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Viimati uuendatud"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Viimati uuendatud"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/eu.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Nork sortua"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Created on"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Izena erakutsi"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/fa.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "ایجاد شده توسط"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "ایجاد شده در"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "نام نمایشی"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "شناسه"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "تاریخ آخرین به‌روزرسانی"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "آخرین به روز رسانی توسط"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "آخرین به روز رسانی در"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/fi.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2017\n"
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Luonut"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Luotu"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nimi"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Kenttä"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Viimeksi muokattu"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Viimeksi päivittänyt"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Viimeksi päivitetty"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Mallit"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

135
base_search_fuzzy/i18n/fr.po

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
"Cité dans la documentation PostgreSQL: \"En règle générale, un index GIN est "
"plus rapide pour la recherche qu'un index GiST, mais plus lent à construire "
"ou à mettre à jour, donc GIN est mieux adapté pour les données statiques et "
"GiST pour des données souvent mises à jour.\""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Champ"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr "GIN"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr "GiST"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr "Nom de l'index"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr "Type d'index"
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Mis à jour par"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Mis à jour le"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modèles"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr "l'extension pg_trgm n'existe pas et ne peut pas être installée."
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr "Index Trigram"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr "Vous puvez choisir chaque champ de type \"text\" ou \"char\"."
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/fr_CA.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/"
"fr_CA/)\n"
"Language: fr_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Afficher le nom"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "Identifiant"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/fr_CH.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
"teams/23907/fr_CH/)\n"
"Language: fr_CH\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Créé par"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Créé le"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Modifié par"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Modifié le"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/gl.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creado en"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última modificación"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "ültima actualización por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/gl_ES.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
"gl_ES/)\n"
"Language: gl_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/he.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "נוצר על ידי"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "נוצר ב-"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "השם המוצג"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "מזהה"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "תאריך שינוי אחרון"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "עודכן לאחרונה על ידי"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "עודכן לאחרונה על"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/hr.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Bole <bole@dajmi5.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-01 10:38+0000\n"
"PO-Revision-Date: 2017-05-01 10:38+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Kreirano"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Naziv "
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Polje"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Zadnje ažuriranje"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modeli"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/hr_HR.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
"hr_HR/)\n"
"Language: hr_HR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Kreirano"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Naziv"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modeli"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/hu.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Készítette"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Létrehozás dátuma"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Név megjelenítése"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Utolsó frissítés dátuma"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Utoljára frissítve, által"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Utoljára frissítve "
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/id.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Dibuat oleh"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Dibuat pada"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nama Tampilan"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Terakhir Dimodifikasi pada"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Diperbaharui oleh"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Diperbaharui pada"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/it.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Paolo Valier <paolo.valier@hotmail.it>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-06 02:24+0000\n"
"PO-Revision-Date: 2018-01-06 02:24+0000\n"
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2017\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creato da"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creato il"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nome da visualizzare"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Campo"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Ultima modifica il"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modelli"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/ja.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "作成者"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "作成日"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "表示名"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "最終更新日"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "最終更新者"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "最終更新日"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/ko.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "작성자"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "작성일"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "표시 이름"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "최근 수정"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "최근 갱신한 사람"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "최근 갱신 날짜"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/lt.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Sukurta"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Vaizduojamas pavadinimas"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Paskutinį kartą keista"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/lt_LT.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
"teams/23907/lt_LT/)\n"
"Language: lt_LT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Sukurta"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/lv.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Izveidoja"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Izveidots"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Pēdējo reizi atjaunoja"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Pēdējās izmaiņas"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/mk.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Креирано од"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Креирано на"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Прикажи име"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Последна промена на"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Последно ажурирање од"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Последно ажурирање на"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/mn.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Үүсгэгч"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Үүсгэсэн"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Дэлгэцийн Нэр"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Сүүлийн засвар хийсэн"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/nb.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
"nb/)\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Opprettet av"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Opprettet den"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Visnings navn"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Sist oppdatert "
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Sist oppdatert"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/nb_NO.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2017\n"
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
"teams/23907/nb_NO/)\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Laget av"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Laget den"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Vis navn"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Sist endret den"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Sist oppdatert den"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modeller"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/nl.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Te tonen naam"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Veld"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Laatst bijgewerkt op"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/nl_BE.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
"nl_BE/)\n"
"Language: nl_BE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Gemaakt door"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Gemaakt op"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Schermnaam"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Laatst Aangepast op"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/nl_NL.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# Peter Hageman <hageman.p@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-06-30 12:21+0000\n"
"PO-Revision-Date: 2017-06-30 12:21+0000\n"
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
"teams/23907/nl_NL/)\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "weergavenaam"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Veld"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Laatst gewijzigd op"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/pl.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Utworzone przez"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Utworzono"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Wyświetlana nazwa "
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Ostatnio modyfikowano"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Ostatnio modyfikowane przez"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Ostatnia zmiana"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/pt.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nome"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última Modificação Em"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última Modificação Por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última Atualização Em"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/pt_BR.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
"teams/23907/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nome para Mostrar"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Campo"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "Identificação"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última atualização em"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última atualização por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última atualização em"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modelos"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/pt_PT.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
"teams/23907/pt_PT/)\n"
"Language: pt_PT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Criado por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Criado em"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nome a Apresentar"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Última Modificação Em"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Última Atualização Por"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Última Atualização Em"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/ro.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Daniel Schweiger <danielcccasle@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-06-22 01:11+0000\n"
"PO-Revision-Date: 2017-06-22 01:11+0000\n"
"Last-Translator: Daniel Schweiger <danielcccasle@gmail.com>, 2017\n"
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Creat de"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Creat la"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Nume Afişat"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Columna"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Ultima actualizare în"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Ultima actualizare făcută de"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Ultima actualizare la"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/ru.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Создано"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Создан"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Поле"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Последний раз обновлено"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Последний раз обновлено"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/sk.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Vytvoril"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Vytvorené"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Zobraziť meno"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Posledná modifikácia"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Naposledy upravoval"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Naposledy upravované"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

136
base_search_fuzzy/i18n/sl.po

@ -0,0 +1,136 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
"Citat iz PostgreSQL dokumentacije: \"Po pravilu palca je GIN indeks za "
"iskanje hitrejši od GIST indeksa, a počasnejši pri gradnji posodobitev; zato "
"je GIN boljši za statične podatke, GIST pa za podatke, ki se pogosto "
"posodabljajo.\""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Ustvaril"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Ustvarjeno"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Prikazni naziv"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Polje"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr "GIN"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr "GiST"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr "Naziv indeksa"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr "Tip indeksa"
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Zadnjič spremenjeno"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Zadnji posodobil"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Zadnjič posodobljeno"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modeli"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr "Razširitev pg_trgm ne obstaja ali pa je ni mogoče namestiti."
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr "Trigram indeks"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr "Izberete lahko polje tipa \"text\" ali \"char\"."
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/sr.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Kreiran"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/sr@latin.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
"sr@latin/)\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Kreiran"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Ime za prikaz"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Zadnja izmjena"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Zadnja izmjena"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Zadnja izmjena"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/sv.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Skapad av"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Skapad den"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Visa namn"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Senast redigerad"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Senast uppdaterad av"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Senast uppdaterad"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/th.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "สร้างโดย"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "สร้างเมื่อ"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "ชื่อที่ใช้แสดง"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "รหัส"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "อัพเดทครั้งสุดท้ายโดย"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/tr.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Oluşturuldu"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Görünen İsim"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr "Alan"
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Son değişiklik"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Son güncelleyen"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Son güncellenme"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Modeller"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

133
base_search_fuzzy/i18n/tr_TR.po

@ -0,0 +1,133 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\n"
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
"tr_TR/)\n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Oluşturulma tarihi"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Görünen ad"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "Kimlik"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "En son güncelleme tarihi"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "En son güncelleyen "
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "En son güncelleme tarihi"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "Tipler"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/uk.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Створив"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Дата створення"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Назва для відображення"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Остання модифікація"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Востаннє оновив"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Останнє оновлення"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

131
base_search_fuzzy/i18n/vi.po

@ -0,0 +1,131 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Được tạo bởi"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Được tạo vào"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "Tên hiển thị"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "Sửa lần cuối vào"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/vi_VN.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
"teams/23907/vi_VN/)\n"
"Language: vi_VN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "Tạo bởi"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "Tạo vào"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/zh_CN.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
"zh_CN/)\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "创建者"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "创建时间"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "显示名称"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "ID"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "最后修改时间"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "最后更新者"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "上次更新日期"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr "模型"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

132
base_search_fuzzy/i18n/zh_TW.po

@ -0,0 +1,132 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * base_search_fuzzy
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-14 04:21+0000\n"
"PO-Revision-Date: 2017-01-14 04:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
"zh_TW/)\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type
msgid ""
"Cite from PostgreSQL documentation: \"As a rule of thumb, a GIN index is "
"faster to search than a GiST index, but slower to build or update; so GIN is "
"better suited for static data and GiST for often-updated data.\""
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid
msgid "Created by"
msgstr "建立者"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date
msgid "Created on"
msgstr "建立於"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name
msgid "Display Name"
msgstr "顯示名稱"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id
msgid "Field"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GIN"
msgstr ""
#. module: base_search_fuzzy
#: selection:trgm.index,index_type:0
msgid "GiST"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id
msgid "ID"
msgstr "編號"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name
msgid "Index Name"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type
msgid "Index Type"
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/ir_model.py:39
#, python-format
msgid "Invalid field %r in domain term %r"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update
msgid "Last Modified on"
msgstr "最後修改:"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid
msgid "Last Updated by"
msgstr "最後更新:"
#. module: base_search_fuzzy
#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date
msgid "Last Updated on"
msgstr "最後更新於"
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_ir_model
msgid "Models"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name
msgid ""
"The index name is automatically generated like fieldname_indextype_idx. If "
"the index already exists and the index is located in the same table then "
"this index is reused. If the index is located in another table then a number "
"is added at the end of the index name."
msgstr ""
#. module: base_search_fuzzy
#: code:addons/base_search_fuzzy/models/trgm_index.py:125
#, python-format
msgid "The pg_trgm extension does not exists or cannot be installed."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action
#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form
#: model:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_tree
msgid "Trigram Index"
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_field_id
msgid "You can either select a field of type \"text\" or \"char\"."
msgstr ""
#. module: base_search_fuzzy
#: model:ir.model,name:base_search_fuzzy.model_trgm_index
msgid "trgm.index"
msgstr ""

5
base_search_fuzzy/models/__init__.py

@ -0,0 +1,5 @@
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import ir_model
from . import trgm_index

91
base_search_fuzzy/models/ir_model.py

@ -0,0 +1,91 @@
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# Copyright 2017 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
import logging
from odoo import _, api, models
from odoo.osv import expression
_logger = logging.getLogger(__name__)
def patch_leaf_trgm(method):
def decorate_leaf_to_sql(self, eleaf):
model = eleaf.model
leaf = eleaf.leaf
left, operator, right = leaf
table_alias = '"%s"' % (eleaf.generate_alias())
if operator == '%':
sql_operator = '%%'
params = []
if left in model._fields:
column = '%s.%s' % (table_alias, expression._quote(left))
query = '(%s %s %s)' % (
column,
sql_operator,
model._fields[left].column_format,
)
elif left in models.MAGIC_COLUMNS:
query = "(%s.\"%s\" %s %%s)" % (
table_alias, left, sql_operator)
params = right
else: # Must not happen
raise ValueError(_(
"Invalid field %r in domain term %r" % (left, leaf)
))
if left in model._fields:
params = str(right)
if isinstance(params, str):
params = [params]
return query, params
elif operator == 'inselect':
right = (right[0].replace(' % ', ' %% '), right[1])
eleaf.leaf = (left, operator, right)
return method(self, eleaf)
decorate_leaf_to_sql.__decorated__ = True
return decorate_leaf_to_sql
def patch_generate_order_by(method):
@api.model
def decorate_generate_order_by(self, order_spec, query):
if order_spec and order_spec.startswith('similarity('):
return ' ORDER BY ' + order_spec
return method(self, order_spec, query)
decorate_generate_order_by.__decorated__ = True
return decorate_generate_order_by
class IrModel(models.Model):
_inherit = 'ir.model'
@api.model_cr
def _register_hook(self):
# We have to prevent wrapping the function twice to avoid recursion
# errors
if not hasattr(expression.expression._expression__leaf_to_sql,
'__decorated__'):
expression.expression._expression__leaf_to_sql = patch_leaf_trgm(
expression.expression._expression__leaf_to_sql)
if '%' not in expression.TERM_OPERATORS:
expression.TERM_OPERATORS += ('%',)
if not hasattr(models.BaseModel._generate_order_by,
'__decorated__'):
models.BaseModel._generate_order_by = patch_generate_order_by(
models.BaseModel._generate_order_by)
return super(IrModel, self)._register_hook()

175
base_search_fuzzy/models/trgm_index.py

@ -0,0 +1,175 @@
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# Copyright 2017 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
import logging
from odoo import _, api, exceptions, fields, models
from psycopg2.extensions import AsIs
_logger = logging.getLogger(__name__)
class TrgmIndex(models.Model):
"""Model for Trigram Index."""
_name = 'trgm.index'
_rec_name = 'field_id'
_description = 'Trigram Index'
field_id = fields.Many2one(
comodel_name='ir.model.fields',
string='Field',
required=True,
help='You can either select a field of type "text" or "char".'
)
index_name = fields.Char(
string='Index Name',
readonly=True,
help='The index name is automatically generated like '
'fieldname_indextype_idx. If the index already exists and the '
'index is located in the same table then this index is reused. '
'If the index is located in another table then a number is added '
'at the end of the index name.'
)
index_type = fields.Selection(
selection=[('gin', 'GIN'), ('gist', 'GiST')],
string='Index Type',
default='gin',
required=True,
help='Cite from PostgreSQL documentation: "As a rule of thumb, a '
'GIN index is faster to search than a GiST index, but slower to '
'build or update; so GIN is better suited for static data and '
'GiST for often-updated data."'
)
@api.model_cr
def _trgm_extension_exists(self):
self.env.cr.execute("""
SELECT name, installed_version
FROM pg_available_extensions
WHERE name = 'pg_trgm'
LIMIT 1;
""")
extension = self.env.cr.fetchone()
if extension is None:
return 'missing'
if extension[1] is None:
return 'uninstalled'
return 'installed'
@api.model_cr
def _is_postgres_superuser(self):
self.env.cr.execute("SHOW is_superuser;")
superuser = self.env.cr.fetchone()
return superuser is not None and superuser[0] == 'on' or False
@api.model_cr
def _install_trgm_extension(self):
extension = self._trgm_extension_exists()
if extension == 'missing':
_logger.warning('To use pg_trgm you have to install the '
'postgres-contrib module.')
elif extension == 'uninstalled':
if self._is_postgres_superuser():
self.env.cr.execute("CREATE EXTENSION IF NOT EXISTS pg_trgm;")
return True
else:
_logger.warning('To use pg_trgm you have to create the '
'extension pg_trgm in your database or you '
'have to be the superuser.')
else:
return True
return False
@api.model_cr_context
def _auto_init(self):
res = super(TrgmIndex, self)._auto_init()
if self._install_trgm_extension():
_logger.info('The pg_trgm is loaded in the database and the '
'fuzzy search can be used.')
return res
@api.model_cr
def get_not_used_index(self, index_name, table_name, inc=1):
if inc > 1:
new_index_name = index_name + str(inc)
else:
new_index_name = index_name
self.env.cr.execute("""
SELECT tablename, indexname
FROM pg_indexes
WHERE indexname = %(index)s;
""", {'index': new_index_name})
indexes = self.env.cr.fetchone()
if indexes is not None and indexes[0] == table_name:
return True, index_name
elif indexes is not None:
return self.get_not_used_index(index_name, table_name,
inc + 1)
return False, new_index_name
@api.multi
def create_index(self):
self.ensure_one()
if not self._install_trgm_extension():
raise exceptions.UserError(_(
'The pg_trgm extension does not exists or cannot be '
'installed.'))
table_name = self.env[self.field_id.model_id.model]._table
column_name = self.field_id.name
index_type = self.index_type
index_name = '%s_%s_idx' % (column_name, index_type)
index_exists, index_name = self.get_not_used_index(
index_name, table_name)
if not index_exists:
self.env.cr.execute("""
CREATE INDEX %(index)s
ON %(table)s
USING %(indextype)s (%(column)s %(indextype)s_trgm_ops);
""", {
'table': AsIs(table_name),
'index': AsIs(index_name),
'column': AsIs(column_name),
'indextype': AsIs(index_type)
})
return index_name
@api.model
def index_exists(self, model_name, field_name):
field = self.env['ir.model.fields'].search([
('model', '=', model_name), ('name', '=', field_name)], limit=1)
if not field:
return False
trgm_index = self.search([('field_id', '=', field.id)], limit=1)
return bool(trgm_index)
@api.model
def create(self, vals):
rec = super(TrgmIndex, self).create(vals)
rec.index_name = rec.create_index()
return rec
@api.multi
def unlink(self):
for rec in self:
self.env.cr.execute("""
DROP INDEX IF EXISTS %(index)s;
""", {
'index': AsIs(rec.index_name),
})
return super(TrgmIndex, self).unlink()

5
base_search_fuzzy/readme/CONFIGURE.rst

@ -0,0 +1,5 @@
If the odoo module is installed:
#. You can define ``GIN`` and ``GiST`` indexes for `char` and `text` via
`Settings -> Database Structure -> Trigram Index`. The index name will
automatically created for new entries.

9
base_search_fuzzy/readme/CONTRIBUTORS.rst

@ -0,0 +1,9 @@
* Christoph Giesel <https://github.com/christophlsa>
* Jordi Ballester <jordi.ballester@eficent.com>
* Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>
* Dave Lasley <dave@laslabs.com>
* `Tecnativa <https://www.tecnativa.com>`_:
* Vicent Cubells
* Ernesto Tejeda

4
base_search_fuzzy/readme/DESCRIPTION.rst

@ -0,0 +1,4 @@
This addon provides the ability to create GIN or GiST indexes of char and text
fields and also to use the search operator `%` in search domains. Currently
this module doesn't change the backend search or anything else. It provides
only the possibility to perform the fuzzy search for external addons.

5
base_search_fuzzy/readme/INSTALL.rst

@ -0,0 +1,5 @@
#. The PostgreSQL extension ``pg_trgm`` should be available. In debian based
distribution you have to install the `postgresql-contrib` module.
#. Install the ``pg_trgm`` extension to your database or give your postgresql
user the ``SUPERUSER`` right (this allows the odoo module to install the
extension to the database).

2
base_search_fuzzy/readme/ROADMAP.rst

@ -0,0 +1,2 @@
* Modify the general search parts (e.g. in tree view or many2one fields)
* Add better `order by` handling

24
base_search_fuzzy/readme/USAGE.rst

@ -0,0 +1,24 @@
#. You can create an index for the `name` field of `res.partner`.
#. In the search you can use:
``self.env['res.partner'].search([('name', '%', 'Jon Miller)])``
#. In this example the function will return positive result for `John Miller`
or `John Mill`.
#. You can tweak the number of strings to be returned by adjusting the set
limit (default: 0.3). NB: Currently you have to set the limit by executing
the following SQL statement:
``self.env.cr.execute("SELECT set_limit(0.2);")``
#. Another interesting feature is the use of ``similarity(column, 'text')``
function in the ``order`` parameter to order by similarity. This module just
contains a basic implementation which doesn't perform validations and has to
start with this function. For example you can define the function as
followed:
``similarity(%s.name, 'John Mil') DESC" % self.env['res.partner']._table``
For further questions read the Documentation of the
`pg_trgm <https://www.postgresql.org/docs/current/static/pgtrgm.html>`_ module.

5
base_search_fuzzy/security/ir.model.access.csv

@ -0,0 +1,5 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_trgm_index_public,trgm_index group_public,model_trgm_index,base.group_public,1,0,0,0
access_trgm_index_portal,trgm_index group_portal,model_trgm_index,base.group_portal,1,0,0,0
access_trgm_index_group_partner_manager,trgm_index group_partner_manager,model_trgm_index,base.group_no_one,1,1,1,1
access_trgm_index_group_user,trgm_index group_user,model_trgm_index,base.group_user,1,0,0,0

489
base_search_fuzzy/static/description/index.html

@ -0,0 +1,489 @@
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.14: http://docutils.sourceforge.net/" />
<title>Fuzzy Search</title>
<style type="text/css">
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
.subscript {
vertical-align: sub;
font-size: smaller }
.superscript {
vertical-align: super;
font-size: smaller }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left, table.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right, table.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
.align-top {
vertical-align: top }
.align-middle {
vertical-align: middle }
.align-bottom {
vertical-align: bottom }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
/* "booktabs" style (no vertical lines) */
table.docutils.booktabs {
border: 0px;
border-top: 2px solid;
border-bottom: 2px solid;
border-collapse: collapse;
}
table.docutils.booktabs * {
border: 0px;
}
table.docutils.booktabs th {
border-bottom: thin solid;
text-align: left;
}
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="fuzzy-search">
<h1 class="title">Fuzzy Search</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/12.0/base_search_fuzzy"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-base_search_fuzzy"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p>This addon provides the ability to create GIN or GiST indexes of char and text
fields and also to use the search operator <cite>%</cite> in search domains. Currently
this module doesn’t change the backend search or anything else. It provides
only the possibility to perform the fuzzy search for external addons.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#installation" id="id1">Installation</a></li>
<li><a class="reference internal" href="#configuration" id="id2">Configuration</a></li>
<li><a class="reference internal" href="#usage" id="id3">Usage</a></li>
<li><a class="reference internal" href="#known-issues-roadmap" id="id4">Known issues / Roadmap</a></li>
<li><a class="reference internal" href="#bug-tracker" id="id5">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="id6">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="id7">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="id8">Contributors</a></li>
<li><a class="reference internal" href="#maintainers" id="id9">Maintainers</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="installation">
<h1><a class="toc-backref" href="#id1">Installation</a></h1>
<ol class="arabic simple">
<li>The PostgreSQL extension <tt class="docutils literal">pg_trgm</tt> should be available. In debian based
distribution you have to install the <cite>postgresql-contrib</cite> module.</li>
<li>Install the <tt class="docutils literal">pg_trgm</tt> extension to your database or give your postgresql
user the <tt class="docutils literal">SUPERUSER</tt> right (this allows the odoo module to install the
extension to the database).</li>
</ol>
</div>
<div class="section" id="configuration">
<h1><a class="toc-backref" href="#id2">Configuration</a></h1>
<p>If the odoo module is installed:</p>
<ol class="arabic simple">
<li>You can define <tt class="docutils literal">GIN</tt> and <tt class="docutils literal">GiST</tt> indexes for <cite>char</cite> and <cite>text</cite> via
<cite>Settings -&gt; Database Structure -&gt; Trigram Index</cite>. The index name will
automatically created for new entries.</li>
</ol>
</div>
<div class="section" id="usage">
<h1><a class="toc-backref" href="#id3">Usage</a></h1>
<ol class="arabic">
<li><p class="first">You can create an index for the <cite>name</cite> field of <cite>res.partner</cite>.</p>
</li>
<li><p class="first">In the search you can use:</p>
<p><tt class="docutils literal"><span class="pre">self.env['res.partner'].search([('name',</span> <span class="pre">'%',</span> 'Jon <span class="pre">Miller)])</span></tt></p>
</li>
<li><p class="first">In this example the function will return positive result for <cite>John Miller</cite>
or <cite>John Mill</cite>.</p>
</li>
<li><p class="first">You can tweak the number of strings to be returned by adjusting the set
limit (default: 0.3). NB: Currently you have to set the limit by executing
the following SQL statement:</p>
<p><tt class="docutils literal"><span class="pre">self.env.cr.execute(&quot;SELECT</span> <span class="pre">set_limit(0.2);&quot;)</span></tt></p>
</li>
<li><p class="first">Another interesting feature is the use of <tt class="docutils literal">similarity(column, 'text')</tt>
function in the <tt class="docutils literal">order</tt> parameter to order by similarity. This module just
contains a basic implementation which doesn’t perform validations and has to
start with this function. For example you can define the function as
followed:</p>
<p><tt class="docutils literal"><span class="pre">similarity(%s.name,</span> 'John Mil') DESC&quot; % <span class="pre">self.env['res.partner']._table</span></tt></p>
</li>
</ol>
<p>For further questions read the Documentation of the
<a class="reference external" href="https://www.postgresql.org/docs/current/static/pgtrgm.html">pg_trgm</a> module.</p>
</div>
<div class="section" id="known-issues-roadmap">
<h1><a class="toc-backref" href="#id4">Known issues / Roadmap</a></h1>
<ul class="simple">
<li>Modify the general search parts (e.g. in tree view or many2one fields)</li>
<li>Add better <cite>order by</cite> handling</li>
</ul>
</div>
<div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#id5">Bug Tracker</a></h1>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20base_search_fuzzy%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
<h1><a class="toc-backref" href="#id6">Credits</a></h1>
<div class="section" id="authors">
<h2><a class="toc-backref" href="#id7">Authors</a></h2>
<ul class="simple">
<li>bloopark systems GmbH &amp; Co. KG</li>
<li>Eficent</li>
<li>Serpent CS</li>
</ul>
</div>
<div class="section" id="contributors">
<h2><a class="toc-backref" href="#id8">Contributors</a></h2>
<ul class="simple">
<li>Christoph Giesel &lt;<a class="reference external" href="https://github.com/christophlsa">https://github.com/christophlsa</a>&gt;</li>
<li>Jordi Ballester &lt;<a class="reference external" href="mailto:jordi.ballester&#64;eficent.com">jordi.ballester&#64;eficent.com</a>&gt;</li>
<li>Serpent Consulting Services Pvt. Ltd. &lt;<a class="reference external" href="mailto:support&#64;serpentcs.com">support&#64;serpentcs.com</a>&gt;</li>
<li>Dave Lasley &lt;<a class="reference external" href="mailto:dave&#64;laslabs.com">dave&#64;laslabs.com</a>&gt;</li>
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
<li>Vicent Cubells</li>
<li>Ernesto Tejeda</li>
</ul>
</li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#id9">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/12.0/base_search_fuzzy">OCA/server-tools</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>
</div>
</body>
</html>

4
base_search_fuzzy/tests/__init__.py

@ -0,0 +1,4 @@
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import test_query_generation

101
base_search_fuzzy/tests/test_query_generation.py

@ -0,0 +1,101 @@
# Copyright 2016 Eficent Business and IT Consulting Services S.L.
# Copyright 2016 Serpent Consulting Services Pvt. Ltd.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.osv import expression
from odoo.tests.common import TransactionCase, at_install, post_install
@at_install(False)
@post_install(True)
class QueryGenerationCase(TransactionCase):
def setUp(self):
super(QueryGenerationCase, self).setUp()
self.ResPartner = self.env['res.partner']
self.TrgmIndex = self.env['trgm.index']
self.ResPartnerCategory = self.env['res.partner.category']
def test_fuzzy_where_generation(self):
"""Check the generation of the where clause."""
# the added fuzzy search operator should be available in the allowed
# operators
self.assertIn('%', expression.TERM_OPERATORS)
# create new query with fuzzy search operator
query = self.ResPartner._where_calc(
[('name', '%', 'test')], active_test=False)
from_clause, where_clause, where_clause_params = query.get_sql()
# the % parameter has to be escaped (%%) for the string replation
self.assertEqual(where_clause, """("res_partner"."name" %% %s)""")
# test the right sql query statement creation
# now there should be only one '%'
complete_where = self.env.cr.mogrify(
"SELECT FROM %s WHERE %s" % (from_clause, where_clause),
where_clause_params)
self.assertEqual(
complete_where,
b'SELECT FROM "res_partner" WHERE '
b'("res_partner"."name" % \'test\')')
def test_fuzzy_where_generation_translatable(self):
"""Check the generation of the where clause for translatable fields."""
ctx = {'lang': 'de_DE'}
# create new query with fuzzy search operator
query = self.ResPartnerCategory.with_context(ctx)\
._where_calc([('name', '%', 'Goschaeftlic')], active_test=False)
from_clause, where_clause, where_clause_params = query.get_sql()
# the % parameter has to be escaped (%%) for the string replation
self.assertIn("""SELECT id FROM temp_irt_current WHERE name %% %s""",
where_clause)
complete_where = self.env.cr.mogrify(
"SELECT FROM %s WHERE %s" % (from_clause, where_clause),
where_clause_params)
self.assertIn(
b"""SELECT id FROM temp_irt_current WHERE name % 'Goschaeftlic'""",
complete_where)
def test_fuzzy_order_generation(self):
"""Check the generation of the where clause."""
order = "similarity(%s.name, 'test') DESC" % self.ResPartner._table
query = self.ResPartner._where_calc(
[('name', '%', 'test')], active_test=False)
order_by = self.ResPartner._generate_order_by(order, query)
self.assertEqual(' ORDER BY %s' % order, order_by)
def test_fuzzy_search(self):
"""Test the fuzzy search itself."""
if self.TrgmIndex._trgm_extension_exists() != 'installed':
return
if not self.TrgmIndex.index_exists('res.partner', 'name'):
field_partner_name = self.env.ref('base.field_res_partner__name')
self.TrgmIndex.create({
'field_id': field_partner_name.id,
'index_type': 'gin',
})
partner1 = self.ResPartner.create({
'name': 'John Smith'
})
partner2 = self.ResPartner.create(
{'name': 'John Smizz'}
)
partner3 = self.ResPartner.create({
'name': 'Linus Torvalds'
})
res = self.ResPartner.search([('name', '%', 'Jon Smith')])
self.assertIn(partner1.id, res.ids)
self.assertIn(partner2.id, res.ids)
self.assertNotIn(partner3.id, res.ids)
res = self.ResPartner.search([('name', '%', 'Smith John')])
self.assertIn(partner1.id, res.ids)
self.assertIn(partner2.id, res.ids)
self.assertNotIn(partner3.id, res.ids)

45
base_search_fuzzy/views/trgm_index.xml

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="trgm_index_view_form">
<field name="name">trgm.index.view.form</field>
<field name="model">trgm.index</field>
<field name="arch" type="xml">
<form string="Trigram Index">
<sheet>
<group col="4">
<field name="field_id" domain="[('ttype', 'in', ['char', 'text'])]"/>
<field name="index_name"/>
<field name="index_type"/>
</group>
</sheet>
</form>
</field>
</record>
<record model="ir.ui.view" id="trgm_index_view_tree">
<field name="name">trgm.index.view.tree</field>
<field name="model">trgm.index</field>
<field name="arch" type="xml">
<tree string="Trigram Index">
<field name="field_id"/>
<field name="index_name"/>
<field name="index_type"/>
</tree>
</field>
</record>
<record model="ir.actions.act_window" id="trgm_index_action">
<field name="name">Trigram Index</field>
<field name="res_model">trgm.index</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="type">ir.actions.act_window</field>
</record>
<menuitem id="trgm_index_menu"
parent="base.next_id_9"
action="trgm_index_action"
groups="base.group_no_one"/>
</odoo>
Loading…
Cancel
Save