From df8bdb1e1181d7ec2b555a4a3af132ad5022271c Mon Sep 17 00:00:00 2001 From: Christoph Giesel Date: Fri, 24 Jun 2016 11:13:19 +0200 Subject: [PATCH 01/53] Renamed module base_trgm_search to base_search_fuzzy, added Unit tests, added translations, added access permissions, moved the monkey patching to method _register_hook of ir.model and fixed _auto_init, added README, cleaned up some aprts --- base_search_fuzzy/README.rst | 104 +++++++++++ base_search_fuzzy/__init__.py | 3 + base_search_fuzzy/__openerp__.py | 20 ++ base_search_fuzzy/i18n/base_search_fuzzy.pot | 100 ++++++++++ base_search_fuzzy/i18n/de.po | 100 ++++++++++ base_search_fuzzy/models/__init__.py | 4 + base_search_fuzzy/models/ir_model.py | 82 +++++++++ base_search_fuzzy/models/trgm_index.py | 171 ++++++++++++++++++ .../security/ir.model.access.csv | 5 + base_search_fuzzy/tests/__init__.py | 3 + .../tests/test_query_generation.py | 100 ++++++++++ base_search_fuzzy/views/trgm_index.xml | 47 +++++ 12 files changed, 739 insertions(+) create mode 100644 base_search_fuzzy/README.rst create mode 100644 base_search_fuzzy/__init__.py create mode 100644 base_search_fuzzy/__openerp__.py create mode 100644 base_search_fuzzy/i18n/base_search_fuzzy.pot create mode 100644 base_search_fuzzy/i18n/de.po create mode 100644 base_search_fuzzy/models/__init__.py create mode 100644 base_search_fuzzy/models/ir_model.py create mode 100644 base_search_fuzzy/models/trgm_index.py create mode 100644 base_search_fuzzy/security/ir.model.access.csv create mode 100644 base_search_fuzzy/tests/__init__.py create mode 100644 base_search_fuzzy/tests/test_query_generation.py create mode 100644 base_search_fuzzy/views/trgm_index.xml diff --git a/base_search_fuzzy/README.rst b/base_search_fuzzy/README.rst new file mode 100644 index 00000000000..71a89e8503a --- /dev/null +++ b/base_search_fuzzy/README.rst @@ -0,0 +1,104 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +========================= +PostgreSQL Trigram Search +========================= + +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 possibilty to perfrom the fuzzy search for external addons. + + +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 ``SUEPRUSER`` 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 statment: + + ``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 `_ 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 +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Christoph Giesel + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/base_search_fuzzy/__init__.py b/base_search_fuzzy/__init__.py new file mode 100644 index 00000000000..66efa2ce721 --- /dev/null +++ b/base_search_fuzzy/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from . import models diff --git a/base_search_fuzzy/__openerp__.py b/base_search_fuzzy/__openerp__.py new file mode 100644 index 00000000000..e3ef3d02497 --- /dev/null +++ b/base_search_fuzzy/__openerp__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# 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': '8.0.1.0.0', + 'website': 'https://odoo-community.org/', + 'author': 'bloopark systems GmbH & Co. KG, ' + 'Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'depends': [ + 'base', + ], + 'data': [ + 'views/trgm_index.xml', + 'security/ir.model.access.csv', + ], + 'installable': True, +} diff --git a/base_search_fuzzy/i18n/base_search_fuzzy.pot b/base_search_fuzzy/i18n/base_search_fuzzy.pot new file mode 100644 index 00000000000..deaf7d891e4 --- /dev/null +++ b/base_search_fuzzy/i18n/base_search_fuzzy.pot @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-24 08:47+0000\n" +"PO-Revision-Date: 2016-06-24 08:47+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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 +#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action +#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" + +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/trgm_index.py:123 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" diff --git a/base_search_fuzzy/i18n/de.po b/base_search_fuzzy/i18n/de.po new file mode 100644 index 00000000000..51af7d4854d --- /dev/null +++ b/base_search_fuzzy/i18n/de.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0alpha1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-24 08:49+0000\n" +"PO-Revision-Date: 2016-06-24 08:49+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Erstellt durch" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Erstellt am" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "Index Name" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "Index Typ" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. If the index is located in another table then a number is added at the end of the index name." +msgstr "Der Index Name wird automatisch im Format feldname_indextyp_idx generiert. Falls der Index bereits existiert und der Index sich in der selben Tabelle befindet, dann wird dieser Index wiederverwendet. Falls der Index in einer anderen Tabelle existiert, dann wird eine Zahl an das Ende des Index Namens angefügt." + +#. 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 +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigram Index" +msgstr "Trigram Index" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +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 +#: code:addons/base_search_fuzzy/models/trgm_index.py:123 +#, 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." diff --git a/base_search_fuzzy/models/__init__.py b/base_search_fuzzy/models/__init__.py new file mode 100644 index 00000000000..e06aa43611c --- /dev/null +++ b/base_search_fuzzy/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from . import ir_model +from . import trgm_index diff --git a/base_search_fuzzy/models/ir_model.py b/base_search_fuzzy/models/ir_model.py new file mode 100644 index 00000000000..8be90b8e381 --- /dev/null +++ b/base_search_fuzzy/models/ir_model.py @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import logging + +from openerp import models +from openerp.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._columns: + format = model._columns[left]._symbol_set[0] + column = '%s.%s' % (table_alias, expression._quote(left)) + query = '(%s %s %s)' % (column, sql_operator, format) + elif left in expression.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._columns: + params = model._columns[left]._symbol_set[1](right) + + if isinstance(params, basestring): + 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): + 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' + + def _register_hook(self, cr, ids=None): + # 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(cr) diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py new file mode 100644 index 00000000000..d4ecc102555 --- /dev/null +++ b/base_search_fuzzy/models/trgm_index.py @@ -0,0 +1,171 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import logging + +from openerp import SUPERUSER_ID, _, 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' + + 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 resused. ' + '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 + 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 + 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 + 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 + + def _auto_init(self, cr, context=None): + res = super(TrgmIndex, self)._auto_init(cr, context) + if self._install_trgm_extension(cr, SUPERUSER_ID, context=context): + _logger.info('The pg_trgm is loaded in the database and the ' + 'fuzzy search can be used.') + return res + + @api.model + 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() diff --git a/base_search_fuzzy/security/ir.model.access.csv b/base_search_fuzzy/security/ir.model.access.csv new file mode 100644 index 00000000000..0d5bc603845 --- /dev/null +++ b/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 diff --git a/base_search_fuzzy/tests/__init__.py b/base_search_fuzzy/tests/__init__.py new file mode 100644 index 00000000000..b45665e4216 --- /dev/null +++ b/base_search_fuzzy/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from . import test_query_generation diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py new file mode 100644 index 00000000000..34c7e30b325 --- /dev/null +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -0,0 +1,100 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from openerp.osv import expression +from openerp.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, + 'SELECT FROM "res_partner" WHERE ' + '("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( + """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) diff --git a/base_search_fuzzy/views/trgm_index.xml b/base_search_fuzzy/views/trgm_index.xml new file mode 100644 index 00000000000..36fb6efcb1b --- /dev/null +++ b/base_search_fuzzy/views/trgm_index.xml @@ -0,0 +1,47 @@ + + + + + + trgm.index.view.form + trgm.index + +
+ + + + + + + +
+
+
+ + + trgm.index.view.tree + trgm.index + + + + + + + + + + + Trigram Index + trgm.index + form + tree,form + ir.actions.act_window + + + + +
+
From 0016c700aa7e5fa65e7fc4eec1e313ea1ec8f853 Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Wed, 10 Aug 2016 10:02:12 +0100 Subject: [PATCH 02/53] Fix typo --- base_search_fuzzy/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_search_fuzzy/README.rst b/base_search_fuzzy/README.rst index 71a89e8503a..1ee718a49af 100644 --- a/base_search_fuzzy/README.rst +++ b/base_search_fuzzy/README.rst @@ -18,7 +18,7 @@ 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 ``SUEPRUSER`` right (this allows the odoo module to install the + user the ``SUPERUSER`` right (this allows the odoo module to install the extension to the database). From 48c8e9d209c516ce4345621cb9dd1f11a449ca5e Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 14 Aug 2016 02:11:20 -0400 Subject: [PATCH 03/53] OCA Transbot updated translations from Transifex --- base_search_fuzzy/i18n/am.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/ar.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/bg.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/bs.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/ca.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/cs.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/da.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/de.po | 74 +++++++++++----- base_search_fuzzy/i18n/el_GR.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/en_GB.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es.po | 125 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_AR.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_CL.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_CO.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_CR.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_DO.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_EC.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_ES.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_MX.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_PE.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_PY.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/es_VE.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/et.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/fa.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/fi.po | 125 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/fr.po | 133 +++++++++++++++++++++++++++++ base_search_fuzzy/i18n/fr_CH.po | 125 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/gl.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/gl_ES.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/he.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/hr.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/hr_HR.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/hu.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/id.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/it.po | 125 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/ja.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/ko.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/lt.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/lv.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/mk.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/mn.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/nb.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/nl.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/nl_BE.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/pl.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/pt.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/pt_BR.po | 125 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/pt_PT.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/ru.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/sk.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/sl.po | 132 ++++++++++++++++++++++++++++ base_search_fuzzy/i18n/sr.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/sr@latin.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/sv.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/th.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/tr.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/uk.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/vi.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/zh_CN.po | 124 +++++++++++++++++++++++++++ base_search_fuzzy/i18n/zh_TW.po | 124 +++++++++++++++++++++++++++ 60 files changed, 7392 insertions(+), 20 deletions(-) create mode 100644 base_search_fuzzy/i18n/am.po create mode 100644 base_search_fuzzy/i18n/ar.po create mode 100644 base_search_fuzzy/i18n/bg.po create mode 100644 base_search_fuzzy/i18n/bs.po create mode 100644 base_search_fuzzy/i18n/ca.po create mode 100644 base_search_fuzzy/i18n/cs.po create mode 100644 base_search_fuzzy/i18n/da.po create mode 100644 base_search_fuzzy/i18n/el_GR.po create mode 100644 base_search_fuzzy/i18n/en_GB.po create mode 100644 base_search_fuzzy/i18n/es.po create mode 100644 base_search_fuzzy/i18n/es_AR.po create mode 100644 base_search_fuzzy/i18n/es_CL.po create mode 100644 base_search_fuzzy/i18n/es_CO.po create mode 100644 base_search_fuzzy/i18n/es_CR.po create mode 100644 base_search_fuzzy/i18n/es_DO.po create mode 100644 base_search_fuzzy/i18n/es_EC.po create mode 100644 base_search_fuzzy/i18n/es_ES.po create mode 100644 base_search_fuzzy/i18n/es_MX.po create mode 100644 base_search_fuzzy/i18n/es_PE.po create mode 100644 base_search_fuzzy/i18n/es_PY.po create mode 100644 base_search_fuzzy/i18n/es_VE.po create mode 100644 base_search_fuzzy/i18n/et.po create mode 100644 base_search_fuzzy/i18n/fa.po create mode 100644 base_search_fuzzy/i18n/fi.po create mode 100644 base_search_fuzzy/i18n/fr.po create mode 100644 base_search_fuzzy/i18n/fr_CH.po create mode 100644 base_search_fuzzy/i18n/gl.po create mode 100644 base_search_fuzzy/i18n/gl_ES.po create mode 100644 base_search_fuzzy/i18n/he.po create mode 100644 base_search_fuzzy/i18n/hr.po create mode 100644 base_search_fuzzy/i18n/hr_HR.po create mode 100644 base_search_fuzzy/i18n/hu.po create mode 100644 base_search_fuzzy/i18n/id.po create mode 100644 base_search_fuzzy/i18n/it.po create mode 100644 base_search_fuzzy/i18n/ja.po create mode 100644 base_search_fuzzy/i18n/ko.po create mode 100644 base_search_fuzzy/i18n/lt.po create mode 100644 base_search_fuzzy/i18n/lv.po create mode 100644 base_search_fuzzy/i18n/mk.po create mode 100644 base_search_fuzzy/i18n/mn.po create mode 100644 base_search_fuzzy/i18n/nb.po create mode 100644 base_search_fuzzy/i18n/nl.po create mode 100644 base_search_fuzzy/i18n/nl_BE.po create mode 100644 base_search_fuzzy/i18n/pl.po create mode 100644 base_search_fuzzy/i18n/pt.po create mode 100644 base_search_fuzzy/i18n/pt_BR.po create mode 100644 base_search_fuzzy/i18n/pt_PT.po create mode 100644 base_search_fuzzy/i18n/ru.po create mode 100644 base_search_fuzzy/i18n/sk.po create mode 100644 base_search_fuzzy/i18n/sl.po create mode 100644 base_search_fuzzy/i18n/sr.po create mode 100644 base_search_fuzzy/i18n/sr@latin.po create mode 100644 base_search_fuzzy/i18n/sv.po create mode 100644 base_search_fuzzy/i18n/th.po create mode 100644 base_search_fuzzy/i18n/tr.po create mode 100644 base_search_fuzzy/i18n/uk.po create mode 100644 base_search_fuzzy/i18n/vi.po create mode 100644 base_search_fuzzy/i18n/zh_CN.po create mode 100644 base_search_fuzzy/i18n/zh_TW.po diff --git a/base_search_fuzzy/i18n/am.po b/base_search_fuzzy/i18n/am.po new file mode 100644 index 00000000000..1cb40c7066a --- /dev/null +++ b/base_search_fuzzy/i18n/am.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-16 09:29+0000\n" +"PO-Revision-Date: 2016-09-16 09:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/ar.po b/base_search_fuzzy/i18n/ar.po new file mode 100644 index 00000000000..b361c20f476 --- /dev/null +++ b/base_search_fuzzy/i18n/ar.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/bg.po b/base_search_fuzzy/i18n/bg.po new file mode 100644 index 00000000000..a65b7a7735d --- /dev/null +++ b/base_search_fuzzy/i18n/bg.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:14+0000\n" +"PO-Revision-Date: 2016-12-24 04:14+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/bs.po b/base_search_fuzzy/i18n/bs.po new file mode 100644 index 00000000000..acc21e9d681 --- /dev/null +++ b/base_search_fuzzy/i18n/bs.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/ca.po b/base_search_fuzzy/i18n/ca.po new file mode 100644 index 00000000000..e583b35c7c4 --- /dev/null +++ b/base_search_fuzzy/i18n/ca.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-16 09:29+0000\n" +"PO-Revision-Date: 2016-09-16 09:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/cs.po b/base_search_fuzzy/i18n/cs.po new file mode 100644 index 00000000000..85f6512dc05 --- /dev/null +++ b/base_search_fuzzy/i18n/cs.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/da.po b/base_search_fuzzy/i18n/da.po new file mode 100644 index 00000000000..26fbd1125b4 --- /dev/null +++ b/base_search_fuzzy/i18n/da.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "Id" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/de.po b/base_search_fuzzy/i18n/de.po index 51af7d4854d..f4b0fb5a124 100644 --- a/base_search_fuzzy/i18n/de.po +++ b/base_search_fuzzy/i18n/de.po @@ -1,24 +1,34 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * base_search_fuzzy -# +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0alpha1\n" +"Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 08:49+0000\n" -"PO-Revision-Date: 2016-06-24 08:49+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy #: help:trgm.index,index_type:0 -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.\"" +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 #: field:trgm.index,create_uid:0 @@ -30,6 +40,11 @@ msgstr "Erstellt durch" msgid "Created on" msgstr "Erstellt am" +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + #. module: base_search_fuzzy #: field:trgm.index,field_id:0 msgid "Field" @@ -60,6 +75,11 @@ msgstr "Index Name" msgid "Index Type" msgstr "Index Typ" +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + #. module: base_search_fuzzy #: field:trgm.index,write_uid:0 msgid "Last Updated by" @@ -77,14 +97,34 @@ msgstr "Datenmodelle" #. module: base_search_fuzzy #: help:trgm.index,index_name:0 -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 resused. If the index is located in another table then a number is added at the end of the index name." -msgstr "Der Index Name wird automatisch im Format feldname_indextyp_idx generiert. Falls der Index bereits existiert und der Index sich in der selben Tabelle befindet, dann wird dieser Index wiederverwendet. Falls der Index in einer anderen Tabelle existiert, dann wird eine Zahl an das Ende des Index Namens angefügt." +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 resused. If the index is located in another table then a " +"number is added at the end of the index name." +msgstr "" +"Der Index Name wird automatisch im Format feldname_indextyp_idx generiert. " +"Falls der Index bereits existiert und der Index sich in der selben Tabelle " +"befindet, dann wird dieser Index wiederverwendet. Falls der Index in einer " +"anderen Tabelle existiert, dann wird eine Zahl an das Ende des Index Namens " +"angefügt." + +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#, 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 #: view:trgm.index:base_search_fuzzy.trgm_index_view_form #: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 msgid "Trigram Index" msgstr "Trigram Index" @@ -92,9 +132,3 @@ msgstr "Trigram Index" #: help:trgm.index,field_id:0 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 -#: code:addons/base_search_fuzzy/models/trgm_index.py:123 -#, 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." diff --git a/base_search_fuzzy/i18n/el_GR.po b/base_search_fuzzy/i18n/el_GR.po new file mode 100644 index 00000000000..2a69a293864 --- /dev/null +++ b/base_search_fuzzy/i18n/el_GR.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-16 09:29+0000\n" +"PO-Revision-Date: 2016-09-16 09:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/en_GB.po b/base_search_fuzzy/i18n/en_GB.po new file mode 100644 index 00000000000..898c392fc5d --- /dev/null +++ b/base_search_fuzzy/i18n/en_GB.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es.po b/base_search_fuzzy/i18n/es.po new file mode 100644 index 00000000000..a50a5431187 --- /dev/null +++ b/base_search_fuzzy/i18n/es.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +# Carles Antoli , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-11 02:42+0000\n" +"PO-Revision-Date: 2016-08-11 02:42+0000\n" +"Last-Translator: Carles Antoli , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado el" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última actualización por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_AR.po b/base_search_fuzzy/i18n/es_AR.po new file mode 100644 index 00000000000..98f91e827f9 --- /dev/null +++ b/base_search_fuzzy/i18n/es_AR.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_CL.po b/base_search_fuzzy/i18n/es_CL.po new file mode 100644 index 00000000000..a32f4c629ba --- /dev/null +++ b/base_search_fuzzy/i18n/es_CL.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_CO.po b/base_search_fuzzy/i18n/es_CO.po new file mode 100644 index 00000000000..b63f6bfb7b5 --- /dev/null +++ b/base_search_fuzzy/i18n/es_CO.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_CR.po b/base_search_fuzzy/i18n/es_CR.po new file mode 100644 index 00000000000..b116b7d72d6 --- /dev/null +++ b/base_search_fuzzy/i18n/es_CR.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_DO.po b/base_search_fuzzy/i18n/es_DO.po new file mode 100644 index 00000000000..998ed3363a7 --- /dev/null +++ b/base_search_fuzzy/i18n/es_DO.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_EC.po b/base_search_fuzzy/i18n/es_EC.po new file mode 100644 index 00000000000..1c1254af905 --- /dev/null +++ b/base_search_fuzzy/i18n/es_EC.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_ES.po b/base_search_fuzzy/i18n/es_ES.po new file mode 100644 index 00000000000..254d04162c5 --- /dev/null +++ b/base_search_fuzzy/i18n/es_ES.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-16 09:29+0000\n" +"PO-Revision-Date: 2016-09-16 09:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_MX.po b/base_search_fuzzy/i18n/es_MX.po new file mode 100644 index 00000000000..bcf652d443d --- /dev/null +++ b/base_search_fuzzy/i18n/es_MX.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_PE.po b/base_search_fuzzy/i18n/es_PE.po new file mode 100644 index 00000000000..3f0d1805225 --- /dev/null +++ b/base_search_fuzzy/i18n/es_PE.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_PY.po b/base_search_fuzzy/i18n/es_PY.po new file mode 100644 index 00000000000..c2e3b69e5d6 --- /dev/null +++ b/base_search_fuzzy/i18n/es_PY.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/es_VE.po b/base_search_fuzzy/i18n/es_VE.po new file mode 100644 index 00000000000..54e30447beb --- /dev/null +++ b/base_search_fuzzy/i18n/es_VE.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/et.po b/base_search_fuzzy/i18n/et.po new file mode 100644 index 00000000000..af2dd61d202 --- /dev/null +++ b/base_search_fuzzy/i18n/et.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/fa.po b/base_search_fuzzy/i18n/fa.po new file mode 100644 index 00000000000..f98a0126b92 --- /dev/null +++ b/base_search_fuzzy/i18n/fa.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/fi.po b/base_search_fuzzy/i18n/fi.po new file mode 100644 index 00000000000..786eeb824dc --- /dev/null +++ b/base_search_fuzzy/i18n/fi.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-21 00:47+0000\n" +"PO-Revision-Date: 2016-09-21 00:47+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/fr.po b/base_search_fuzzy/i18n/fr.po new file mode 100644 index 00000000000..177fb5fcd35 --- /dev/null +++ b/base_search_fuzzy/i18n/fr.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +# Christophe CHAUVET , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-21 06:45+0000\n" +"PO-Revision-Date: 2016-08-21 06:45+0000\n" +"Last-Translator: Christophe CHAUVET , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "Nom de l'index" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "Type d'index" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Mis à jour par" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. If the index is located in another table then a " +"number is added at the end of the index name." +msgstr "" +"Le nom de l'index est généré automatiquement comme fieldname_indextype_idx." +" Si l'index existe déjà et l'index se trouve dans la même table, alors cet " +"index est réutilisé. Si l'index est situé dans une autre table, alors un " +"nombre est ajouté à la fin du nom d'index." + +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#, 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 +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +msgstr "Index Trigram" + +#. 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 +msgid "Trigram Index" +msgstr "Index Trigram" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "Vous puvez choisir chaque champ de type \"text\" ou \"char\"." diff --git a/base_search_fuzzy/i18n/fr_CH.po b/base_search_fuzzy/i18n/fr_CH.po new file mode 100644 index 00000000000..5fcb2b188a2 --- /dev/null +++ b/base_search_fuzzy/i18n/fr_CH.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +# leemannd , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-30 14:52+0000\n" +"PO-Revision-Date: 2016-11-30 14:52+0000\n" +"Last-Translator: leemannd , 2016\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/gl.po b/base_search_fuzzy/i18n/gl.po new file mode 100644 index 00000000000..e825f810342 --- /dev/null +++ b/base_search_fuzzy/i18n/gl.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/gl_ES.po b/base_search_fuzzy/i18n/gl_ES.po new file mode 100644 index 00000000000..375cd69e540 --- /dev/null +++ b/base_search_fuzzy/i18n/gl_ES.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/he.po b/base_search_fuzzy/i18n/he.po new file mode 100644 index 00000000000..50ce030af36 --- /dev/null +++ b/base_search_fuzzy/i18n/he.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/hr.po b/base_search_fuzzy/i18n/hr.po new file mode 100644 index 00000000000..08e99402cc5 --- /dev/null +++ b/base_search_fuzzy/i18n/hr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-21 00:47+0000\n" +"PO-Revision-Date: 2016-09-21 00:47+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Naziv " + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/hr_HR.po b/base_search_fuzzy/i18n/hr_HR.po new file mode 100644 index 00000000000..061df24cd75 --- /dev/null +++ b/base_search_fuzzy/i18n/hr_HR.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-21 00:47+0000\n" +"PO-Revision-Date: 2016-09-21 00:47+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/hu.po b/base_search_fuzzy/i18n/hu.po new file mode 100644 index 00000000000..efba7e657df --- /dev/null +++ b/base_search_fuzzy/i18n/hu.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/id.po b/base_search_fuzzy/i18n/id.po new file mode 100644 index 00000000000..3bd6f571ce0 --- /dev/null +++ b/base_search_fuzzy/i18n/id.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/it.po b/base_search_fuzzy/i18n/it.po new file mode 100644 index 00000000000..4281b601367 --- /dev/null +++ b/base_search_fuzzy/i18n/it.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +# Paolo Valier , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-11 02:42+0000\n" +"PO-Revision-Date: 2016-08-11 02:42+0000\n" +"Last-Translator: Paolo Valier , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/ja.po b/base_search_fuzzy/i18n/ja.po new file mode 100644 index 00000000000..707f94c2a2e --- /dev/null +++ b/base_search_fuzzy/i18n/ja.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/ko.po b/base_search_fuzzy/i18n/ko.po new file mode 100644 index 00000000000..3030cd2d735 --- /dev/null +++ b/base_search_fuzzy/i18n/ko.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/lt.po b/base_search_fuzzy/i18n/lt.po new file mode 100644 index 00000000000..4ed7f1a0192 --- /dev/null +++ b/base_search_fuzzy/i18n/lt.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/lv.po b/base_search_fuzzy/i18n/lv.po new file mode 100644 index 00000000000..876882a92be --- /dev/null +++ b/base_search_fuzzy/i18n/lv.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/mk.po b/base_search_fuzzy/i18n/mk.po new file mode 100644 index 00000000000..ee87a6b8d3d --- /dev/null +++ b/base_search_fuzzy/i18n/mk.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/mn.po b/base_search_fuzzy/i18n/mn.po new file mode 100644 index 00000000000..c80f256a9bf --- /dev/null +++ b/base_search_fuzzy/i18n/mn.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/nb.po b/base_search_fuzzy/i18n/nb.po new file mode 100644 index 00000000000..0d86ad97ae1 --- /dev/null +++ b/base_search_fuzzy/i18n/nb.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/nl.po b/base_search_fuzzy/i18n/nl.po new file mode 100644 index 00000000000..df0596b1e83 --- /dev/null +++ b/base_search_fuzzy/i18n/nl.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/nl_BE.po b/base_search_fuzzy/i18n/nl_BE.po new file mode 100644 index 00000000000..5f67bf8f33b --- /dev/null +++ b/base_search_fuzzy/i18n/nl_BE.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/pl.po b/base_search_fuzzy/i18n/pl.po new file mode 100644 index 00000000000..0e092b513fe --- /dev/null +++ b/base_search_fuzzy/i18n/pl.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/pt.po b/base_search_fuzzy/i18n/pt.po new file mode 100644 index 00000000000..68649f312e1 --- /dev/null +++ b/base_search_fuzzy/i18n/pt.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# Pedro Castro Silva , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-04 01:04+0000\n" +"PO-Revision-Date: 2016-09-04 01:04+0000\n" +"Last-Translator: Pedro Castro Silva , 2016\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nome" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última Modificação Por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/pt_BR.po b/base_search_fuzzy/i18n/pt_BR.po new file mode 100644 index 00000000000..ba7d4fc2de0 --- /dev/null +++ b/base_search_fuzzy/i18n/pt_BR.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# Armando Vulcano Junior , 2016 +# Paulo Ricardo , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-11 02:42+0000\n" +"PO-Revision-Date: 2016-08-11 02:42+0000\n" +"Last-Translator: Paulo Ricardo , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/pt_PT.po b/base_search_fuzzy/i18n/pt_PT.po new file mode 100644 index 00000000000..5467faa9aac --- /dev/null +++ b/base_search_fuzzy/i18n/pt_PT.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# Pedro Castro Silva , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-16 09:29+0000\n" +"PO-Revision-Date: 2016-09-16 09:29+0000\n" +"Last-Translator: Pedro Castro Silva , 2016\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Última Atualização Por" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/ru.po b/base_search_fuzzy/i18n/ru.po new file mode 100644 index 00000000000..621c518979a --- /dev/null +++ b/base_search_fuzzy/i18n/ru.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-11 02:42+0000\n" +"PO-Revision-Date: 2016-08-11 02:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/sk.po b/base_search_fuzzy/i18n/sk.po new file mode 100644 index 00000000000..ebf4aed164b --- /dev/null +++ b/base_search_fuzzy/i18n/sk.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/sl.po b/base_search_fuzzy/i18n/sl.po new file mode 100644 index 00000000000..20454acb5d9 --- /dev/null +++ b/base_search_fuzzy/i18n/sl.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-11 02:42+0000\n" +"PO-Revision-Date: 2016-08-11 02:42+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "Naziv indeksa" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "Tip indeksa" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. If the index is located in another table then a " +"number is added at the end of the index name." +msgstr "" +"Naziv indeksa samodejno nastane kot fieldname_indextype_idx. Če indeks že " +"obstaja in se nahaja v isti tabeli, se ponovno uporabi isti indeks. Če se " +"indeks nahaja v drugi tabeli, se ob koncu naziva indeksa doda številka." + +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#, 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 +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +msgstr "Trigram indeks" + +#. 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 +msgid "Trigram Index" +msgstr "Trigram indeks" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "Izberete lahko polje tipa \"text\" ali \"char\"." diff --git a/base_search_fuzzy/i18n/sr.po b/base_search_fuzzy/i18n/sr.po new file mode 100644 index 00000000000..3a9eb3d2cad --- /dev/null +++ b/base_search_fuzzy/i18n/sr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\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 +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/sr@latin.po b/base_search_fuzzy/i18n/sr@latin.po new file mode 100644 index 00000000000..dcc267254ea --- /dev/null +++ b/base_search_fuzzy/i18n/sr@latin.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/sv.po b/base_search_fuzzy/i18n/sv.po new file mode 100644 index 00000000000..7d60474f84a --- /dev/null +++ b/base_search_fuzzy/i18n/sv.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/th.po b/base_search_fuzzy/i18n/th.po new file mode 100644 index 00000000000..b0986ad6bdd --- /dev/null +++ b/base_search_fuzzy/i18n/th.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/tr.po b/base_search_fuzzy/i18n/tr.po new file mode 100644 index 00000000000..7d5a83f7038 --- /dev/null +++ b/base_search_fuzzy/i18n/tr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-11 02:42+0000\n" +"PO-Revision-Date: 2016-08-11 02:42+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/uk.po b/base_search_fuzzy/i18n/uk.po new file mode 100644 index 00000000000..a27d5e05705 --- /dev/null +++ b/base_search_fuzzy/i18n/uk.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=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 +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/vi.po b/base_search_fuzzy/i18n/vi.po new file mode 100644 index 00000000000..88dad6a9ba3 --- /dev/null +++ b/base_search_fuzzy/i18n/vi.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/zh_CN.po b/base_search_fuzzy/i18n/zh_CN.po new file mode 100644 index 00000000000..1021cfa5dd7 --- /dev/null +++ b/base_search_fuzzy/i18n/zh_CN.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "ID" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" diff --git a/base_search_fuzzy/i18n/zh_TW.po b/base_search_fuzzy/i18n/zh_TW.po new file mode 100644 index 00000000000..9b75126b7e6 --- /dev/null +++ b/base_search_fuzzy/i18n/zh_TW.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-28 21:28+0000\n" +"PO-Revision-Date: 2016-11-28 21:28+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_fuzzy +#: help:trgm.index,index_type:0 +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 +#: field:trgm.index,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: base_search_fuzzy +#: field:trgm.index,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: base_search_fuzzy +#: field:trgm.index,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_search_fuzzy +#: field:trgm.index,field_id:0 +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 +#: field:trgm.index,id:0 +msgid "ID" +msgstr "編號" + +#. module: base_search_fuzzy +#: field:trgm.index,index_name:0 +msgid "Index Name" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,index_type:0 +msgid "Index Type" +msgstr "" + +#. module: base_search_fuzzy +#: field:trgm.index,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: base_search_fuzzy +#: field:trgm.index,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: base_search_fuzzy +#: field:trgm.index,write_date:0 +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 +#: help:trgm.index,index_name:0 +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 resused. 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:122 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: view:trgm.index:base_search_fuzzy.trgm_index_view_form +#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +msgid "Trigam Index" +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 +msgid "Trigram Index" +msgstr "" + +#. module: base_search_fuzzy +#: help:trgm.index,field_id:0 +msgid "You can either select a field of type \"text\" or \"char\"." +msgstr "" From e8b75f5970bdefb30aab5d999a4a6f3de04973ee Mon Sep 17 00:00:00 2001 From: darshan-serpent Date: Mon, 26 Dec 2016 16:28:26 +0530 Subject: [PATCH 04/53] Migrated base_search_fuzzy to v9 --- base_search_fuzzy/README.rst | 2 ++ base_search_fuzzy/__init__.py | 2 ++ base_search_fuzzy/__openerp__.py | 10 ++++++---- base_search_fuzzy/models/__init__.py | 2 ++ base_search_fuzzy/models/ir_model.py | 11 +++++++---- base_search_fuzzy/models/trgm_index.py | 2 ++ base_search_fuzzy/tests/__init__.py | 2 ++ base_search_fuzzy/tests/test_query_generation.py | 2 ++ 8 files changed, 25 insertions(+), 8 deletions(-) diff --git a/base_search_fuzzy/README.rst b/base_search_fuzzy/README.rst index 1ee718a49af..03a90789dc1 100644 --- a/base_search_fuzzy/README.rst +++ b/base_search_fuzzy/README.rst @@ -87,6 +87,8 @@ Contributors ------------ * Christoph Giesel +* Jordi Ballester +* Serpent Consulting Services Pvt. Ltd. Maintainer ---------- diff --git a/base_search_fuzzy/__init__.py b/base_search_fuzzy/__init__.py index 66efa2ce721..4704284dfef 100644 --- a/base_search_fuzzy/__init__.py +++ b/base_search_fuzzy/__init__.py @@ -1,3 +1,5 @@ # -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# © 2016 Serpent Consulting Services Pvt. Ltd. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import models diff --git a/base_search_fuzzy/__openerp__.py b/base_search_fuzzy/__openerp__.py index e3ef3d02497..fbfdfa3c59e 100644 --- a/base_search_fuzzy/__openerp__.py +++ b/base_search_fuzzy/__openerp__.py @@ -1,17 +1,19 @@ # -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# © 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': '8.0.1.0.0', + 'version': '9.0.1.0.0', 'website': 'https://odoo-community.org/', 'author': 'bloopark systems GmbH & Co. KG, ' + 'Eficent, ' + 'Serpent CS, ' 'Odoo Community Association (OCA)', 'license': 'AGPL-3', - 'depends': [ - 'base', - ], + 'depends': ['base'], 'data': [ 'views/trgm_index.xml', 'security/ir.model.access.csv', diff --git a/base_search_fuzzy/models/__init__.py b/base_search_fuzzy/models/__init__.py index e06aa43611c..c64b6641d8c 100644 --- a/base_search_fuzzy/models/__init__.py +++ b/base_search_fuzzy/models/__init__.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# © 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 diff --git a/base_search_fuzzy/models/ir_model.py b/base_search_fuzzy/models/ir_model.py index 8be90b8e381..a56cb32ea49 100644 --- a/base_search_fuzzy/models/ir_model.py +++ b/base_search_fuzzy/models/ir_model.py @@ -1,8 +1,10 @@ # -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# © 2016 Serpent Consulting Services Pvt. Ltd. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import logging -from openerp import models +from openerp import models, api from openerp.osv import expression @@ -21,9 +23,9 @@ def decorate_leaf_to_sql(self, eleaf): params = [] if left in model._columns: - format = model._columns[left]._symbol_set[0] + formats = model._columns[left]._symbol_set[0] column = '%s.%s' % (table_alias, expression._quote(left)) - query = '(%s %s %s)' % (column, sql_operator, format) + query = '(%s %s %s)' % (column, sql_operator, formats) elif left in expression.MAGIC_COLUMNS: query = "(%s.\"%s\" %s %%s)" % ( table_alias, left, sql_operator) @@ -49,6 +51,8 @@ def decorate_leaf_to_sql(self, eleaf): 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 @@ -78,5 +82,4 @@ def _register_hook(self, cr, ids=None): '__decorated__'): models.BaseModel._generate_order_by = patch_generate_order_by( models.BaseModel._generate_order_by) - return super(IrModel, self)._register_hook(cr) diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py index d4ecc102555..4c99c165622 100644 --- a/base_search_fuzzy/models/trgm_index.py +++ b/base_search_fuzzy/models/trgm_index.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# © 2016 Serpent Consulting Services Pvt. Ltd. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import logging diff --git a/base_search_fuzzy/tests/__init__.py b/base_search_fuzzy/tests/__init__.py index b45665e4216..3363cb44c77 100644 --- a/base_search_fuzzy/tests/__init__.py +++ b/base_search_fuzzy/tests/__init__.py @@ -1,3 +1,5 @@ # -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# © 2016 Serpent Consulting Services Pvt. Ltd. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import test_query_generation diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py index 34c7e30b325..a385348284c 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +# © 2016 Eficent Business and IT Consulting Services S.L. +# © 2016 Serpent Consulting Services Pvt. Ltd. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp.osv import expression from openerp.tests.common import TransactionCase, at_install, post_install From 4449eca50bea62b9152e6bccdb01307b04aa15af Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 14 Jan 2017 02:42:35 -0500 Subject: [PATCH 05/53] OCA Transbot updated translations from Transifex --- base_search_fuzzy/i18n/am.po | 47 ++++++----- base_search_fuzzy/i18n/ar.po | 50 ++++++----- base_search_fuzzy/i18n/bg.po | 47 ++++++----- base_search_fuzzy/i18n/bs.po | 47 ++++++----- base_search_fuzzy/i18n/ca.po | 54 ++++++------ base_search_fuzzy/i18n/cs.po | 47 ++++++----- base_search_fuzzy/i18n/da.po | 47 ++++++----- base_search_fuzzy/i18n/de.po | 47 ++++++----- base_search_fuzzy/i18n/el_GR.po | 47 ++++++----- base_search_fuzzy/i18n/en_GB.po | 47 ++++++----- base_search_fuzzy/i18n/es.po | 48 ++++++----- base_search_fuzzy/i18n/es_AR.po | 47 ++++++----- base_search_fuzzy/i18n/es_CL.po | 47 ++++++----- base_search_fuzzy/i18n/es_CO.po | 47 ++++++----- base_search_fuzzy/i18n/es_CR.po | 53 ++++++------ base_search_fuzzy/i18n/es_DO.po | 47 ++++++----- base_search_fuzzy/i18n/es_EC.po | 47 ++++++----- base_search_fuzzy/i18n/es_ES.po | 47 ++++++----- base_search_fuzzy/i18n/es_MX.po | 47 ++++++----- base_search_fuzzy/i18n/es_PE.po | 47 ++++++----- base_search_fuzzy/i18n/es_PY.po | 47 ++++++----- base_search_fuzzy/i18n/es_VE.po | 47 ++++++----- base_search_fuzzy/i18n/et.po | 47 ++++++----- base_search_fuzzy/i18n/eu.po | 129 ++++++++++++++++++++++++++++ base_search_fuzzy/i18n/fa.po | 47 ++++++----- base_search_fuzzy/i18n/fi.po | 51 ++++++----- base_search_fuzzy/i18n/fr.po | 48 ++++++----- base_search_fuzzy/i18n/fr_CA.po | 129 ++++++++++++++++++++++++++++ base_search_fuzzy/i18n/fr_CH.po | 48 ++++++----- base_search_fuzzy/i18n/gl.po | 47 ++++++----- base_search_fuzzy/i18n/gl_ES.po | 47 ++++++----- base_search_fuzzy/i18n/he.po | 47 ++++++----- base_search_fuzzy/i18n/hr.po | 47 ++++++----- base_search_fuzzy/i18n/hr_HR.po | 47 ++++++----- base_search_fuzzy/i18n/hu.po | 47 ++++++----- base_search_fuzzy/i18n/id.po | 47 ++++++----- base_search_fuzzy/i18n/it.po | 48 ++++++----- base_search_fuzzy/i18n/ja.po | 47 ++++++----- base_search_fuzzy/i18n/ko.po | 47 ++++++----- base_search_fuzzy/i18n/lt.po | 47 ++++++----- base_search_fuzzy/i18n/lt_LT.po | 129 ++++++++++++++++++++++++++++ base_search_fuzzy/i18n/lv.po | 47 ++++++----- base_search_fuzzy/i18n/mk.po | 47 ++++++----- base_search_fuzzy/i18n/mn.po | 47 ++++++----- base_search_fuzzy/i18n/nb.po | 47 ++++++----- base_search_fuzzy/i18n/nb_NO.po | 130 +++++++++++++++++++++++++++++ base_search_fuzzy/i18n/nl.po | 49 ++++++----- base_search_fuzzy/i18n/nl_BE.po | 47 ++++++----- base_search_fuzzy/i18n/pl.po | 47 ++++++----- base_search_fuzzy/i18n/pt.po | 47 ++++++----- base_search_fuzzy/i18n/pt_BR.po | 48 ++++++----- base_search_fuzzy/i18n/pt_PT.po | 47 ++++++----- base_search_fuzzy/i18n/ro.po | 129 ++++++++++++++++++++++++++++ base_search_fuzzy/i18n/ru.po | 57 +++++++------ base_search_fuzzy/i18n/sk.po | 47 ++++++----- base_search_fuzzy/i18n/sl.po | 48 ++++++----- base_search_fuzzy/i18n/sr.po | 47 ++++++----- base_search_fuzzy/i18n/sr@latin.po | 47 ++++++----- base_search_fuzzy/i18n/sv.po | 47 ++++++----- base_search_fuzzy/i18n/th.po | 47 ++++++----- base_search_fuzzy/i18n/tr.po | 51 ++++++----- base_search_fuzzy/i18n/tr_TR.po | 130 +++++++++++++++++++++++++++++ base_search_fuzzy/i18n/uk.po | 47 ++++++----- base_search_fuzzy/i18n/vi.po | 47 ++++++----- base_search_fuzzy/i18n/vi_VN.po | 129 ++++++++++++++++++++++++++++ base_search_fuzzy/i18n/zh_CN.po | 50 ++++++----- base_search_fuzzy/i18n/zh_TW.po | 47 ++++++----- 67 files changed, 2486 insertions(+), 1284 deletions(-) create mode 100644 base_search_fuzzy/i18n/eu.po create mode 100644 base_search_fuzzy/i18n/fr_CA.po create mode 100644 base_search_fuzzy/i18n/lt_LT.po create mode 100644 base_search_fuzzy/i18n/nb_NO.po create mode 100644 base_search_fuzzy/i18n/ro.po create mode 100644 base_search_fuzzy/i18n/tr_TR.po create mode 100644 base_search_fuzzy/i18n/vi_VN.po diff --git a/base_search_fuzzy/i18n/am.po b/base_search_fuzzy/i18n/am.po index 1cb40c7066a..82c2b6a4812 100644 --- a/base_search_fuzzy/i18n/am.po +++ b/base_search_fuzzy/i18n/am.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-16 09:29+0000\n" -"PO-Revision-Date: 2016-09-16 09:29+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ar.po b/base_search_fuzzy/i18n/ar.po index b361c20f476..8196def4b0c 100644 --- a/base_search_fuzzy/i18n/ar.po +++ b/base_search_fuzzy/i18n/ar.po @@ -3,14 +3,15 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 +# SaFi J. , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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. , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,24 +28,24 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "أنشئ بواسطة" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "أنشئ في" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "اسم العرض" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" -msgstr "" +msgstr "الحقل" #. module: base_search_fuzzy #: selection:trgm.index,index_type:0 @@ -57,32 +58,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "المعرف" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "آخر تعديل في" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "آخر تحديث بواسطة" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "آخر تحديث في" @@ -92,7 +93,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +102,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +120,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/bg.po b/base_search_fuzzy/i18n/bg.po index a65b7a7735d..539cc8f35df 100644 --- a/base_search_fuzzy/i18n/bg.po +++ b/base_search_fuzzy/i18n/bg.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-24 04:14+0000\n" -"PO-Revision-Date: 2016-12-24 04:14+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Създадено от" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Създадено на" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Име за Показване" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "Последно обновено на" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "Последно обновено от" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Последно обновено на" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/bs.po b/base_search_fuzzy/i18n/bs.po index acc21e9d681..17895634e76 100644 --- a/base_search_fuzzy/i18n/bs.po +++ b/base_search_fuzzy/i18n/bs.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Kreirao" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Kreirano" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ca.po b/base_search_fuzzy/i18n/ca.po index e583b35c7c4..693ded24aef 100644 --- a/base_search_fuzzy/i18n/ca.po +++ b/base_search_fuzzy/i18n/ca.po @@ -3,14 +3,15 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 +# Carles Antoli , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-16 09:29+0000\n" -"PO-Revision-Date: 2016-09-16 09:29+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,24 +28,24 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creat per" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creat el" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" -msgstr "" +msgstr "Veure el nom" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" -msgstr "" +msgstr "Camp" #. module: base_search_fuzzy #: selection:trgm.index,index_type:0 @@ -57,32 +58,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" -msgstr "" +msgstr "Darrera modificació el" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Darrera Actualització el" @@ -92,7 +93,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +102,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +120,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/cs.po b/base_search_fuzzy/i18n/cs.po index 85f6512dc05..bdea0b03f33 100644 --- a/base_search_fuzzy/i18n/cs.po +++ b/base_search_fuzzy/i18n/cs.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: 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 -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Vytvořeno" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Naposled upraveno" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/da.po b/base_search_fuzzy/i18n/da.po index 26fbd1125b4..f8756cf1761 100644 --- a/base_search_fuzzy/i18n/da.po +++ b/base_search_fuzzy/i18n/da.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Oprettet af" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Oprettet den" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Vist navn" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "Id" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Sidst opdateret den" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/de.po b/base_search_fuzzy/i18n/de.po index f4b0fb5a124..ce4d87ff138 100644 --- a/base_search_fuzzy/i18n/de.po +++ b/base_search_fuzzy/i18n/de.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -31,22 +31,22 @@ msgstr "" "GiST für oft aktualisierte Daten.\"" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Erstellt durch" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Erstellt am" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Anzeigename" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "Feld" @@ -61,32 +61,32 @@ msgid "GiST" msgstr "GiST" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "Index Name" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "Index Typ" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "Zuletzt aktualisiert durch" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" @@ -96,7 +96,7 @@ msgid "Models" msgstr "Datenmodelle" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -110,15 +110,15 @@ msgstr "" "angefügt." #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, 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 -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -129,6 +129,11 @@ msgid "Trigram Index" msgstr "Trigram Index" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/el_GR.po b/base_search_fuzzy/i18n/el_GR.po index 2a69a293864..2afc635a402 100644 --- a/base_search_fuzzy/i18n/el_GR.po +++ b/base_search_fuzzy/i18n/el_GR.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-16 09:29+0000\n" -"PO-Revision-Date: 2016-09-16 09:29+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Δημιουργήθηκε από " #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "Κωδικός" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "Τελευταία ενημέρωση από" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Τελευταία ενημέρωση στις" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/en_GB.po b/base_search_fuzzy/i18n/en_GB.po index 898c392fc5d..48309f0996c 100644 --- a/base_search_fuzzy/i18n/en_GB.po +++ b/base_search_fuzzy/i18n/en_GB.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Created by" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Created on" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Display Name" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Last Updated on" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es.po b/base_search_fuzzy/i18n/es.po index a50a5431187..fc5f0b1fdee 100644 --- a/base_search_fuzzy/i18n/es.po +++ b/base_search_fuzzy/i18n/es.po @@ -3,15 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 -# Carles Antoli , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-11 02:42+0000\n" -"PO-Revision-Date: 2016-08-11 02:42+0000\n" -"Last-Translator: Carles Antoli , 2016\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 , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -28,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado el" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "Campo" @@ -58,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última actualización el" @@ -93,7 +92,7 @@ msgid "Models" msgstr "Modelos" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -102,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -120,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_AR.po b/base_search_fuzzy/i18n/es_AR.po index 98f91e827f9..207244fdfd2 100644 --- a/base_search_fuzzy/i18n/es_AR.po +++ b/base_search_fuzzy/i18n/es_AR.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Mostrar Nombre" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última actualización el" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_CL.po b/base_search_fuzzy/i18n/es_CL.po index a32f4c629ba..a7b92317dbf 100644 --- a/base_search_fuzzy/i18n/es_CL.po +++ b/base_search_fuzzy/i18n/es_CL.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID (identificación)" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_CO.po b/base_search_fuzzy/i18n/es_CO.po index b63f6bfb7b5..b13c89e6df6 100644 --- a/base_search_fuzzy/i18n/es_CO.po +++ b/base_search_fuzzy/i18n/es_CO.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Actualizado" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_CR.po b/base_search_fuzzy/i18n/es_CR.po index b116b7d72d6..e3c18aa1f49 100644 --- a/base_search_fuzzy/i18n/es_CR.po +++ b/base_search_fuzzy/i18n/es_CR.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,34 +57,34 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualización por" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualización en" #. module: base_search_fuzzy #: model:ir.model,name:base_search_fuzzy.model_ir_model @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_DO.po b/base_search_fuzzy/i18n/es_DO.po index 998ed3363a7..877f27e12ec 100644 --- a/base_search_fuzzy/i18n/es_DO.po +++ b/base_search_fuzzy/i18n/es_DO.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_EC.po b/base_search_fuzzy/i18n/es_EC.po index 1c1254af905..412d9805d31 100644 --- a/base_search_fuzzy/i18n/es_EC.po +++ b/base_search_fuzzy/i18n/es_EC.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nombre mostrado" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID (identificación)" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_ES.po b/base_search_fuzzy/i18n/es_ES.po index 254d04162c5..e7d2efd4382 100644 --- a/base_search_fuzzy/i18n/es_ES.po +++ b/base_search_fuzzy/i18n/es_ES.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-16 09:29+0000\n" -"PO-Revision-Date: 2016-09-16 09:29+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_MX.po b/base_search_fuzzy/i18n/es_MX.po index bcf652d443d..c298b5d53a9 100644 --- a/base_search_fuzzy/i18n/es_MX.po +++ b/base_search_fuzzy/i18n/es_MX.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nombre desplegado" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Ultima actualización realizada" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_PE.po b/base_search_fuzzy/i18n/es_PE.po index 3f0d1805225..fb99d384e30 100644 --- a/base_search_fuzzy/i18n/es_PE.po +++ b/base_search_fuzzy/i18n/es_PE.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Ultima Actualización" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_PY.po b/base_search_fuzzy/i18n/es_PY.po index c2e3b69e5d6..cde99d5488f 100644 --- a/base_search_fuzzy/i18n/es_PY.po +++ b/base_search_fuzzy/i18n/es_PY.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Ultima actualización en" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_VE.po b/base_search_fuzzy/i18n/es_VE.po index 54e30447beb..85df9e5b205 100644 --- a/base_search_fuzzy/i18n/es_VE.po +++ b/base_search_fuzzy/i18n/es_VE.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Mostrar nombre" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Ultima actualizacion en" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/et.po b/base_search_fuzzy/i18n/et.po index af2dd61d202..b6eba35177d 100644 --- a/base_search_fuzzy/i18n/et.po +++ b/base_search_fuzzy/i18n/et.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Loonud" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Loodud" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Viimati uuendatud" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/eu.po b/base_search_fuzzy/i18n/eu.po new file mode 100644 index 00000000000..52d1d25cc6e --- /dev/null +++ b/base_search_fuzzy/i18n/eu.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.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 , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_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 +#: 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 resused. 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:124 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: 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 "Trigam Index" +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 +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 "" diff --git a/base_search_fuzzy/i18n/fa.po b/base_search_fuzzy/i18n/fa.po index f98a0126b92..df2af295773 100644 --- a/base_search_fuzzy/i18n/fa.po +++ b/base_search_fuzzy/i18n/fa.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "ایجاد شده توسط" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "ایجاد شده در" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "نام نمایشی" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "شناسه" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "تاریخ آخرین به‌روزرسانی" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "آخرین به روز رسانی توسط" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "آخرین به روز رسانی در" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/fi.po b/base_search_fuzzy/i18n/fi.po index 786eeb824dc..9394a3aba39 100644 --- a/base_search_fuzzy/i18n/fi.po +++ b/base_search_fuzzy/i18n/fi.po @@ -3,15 +3,15 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 -# Jarmo Kortetjärvi , 2016 +# OCA Transbot , 2017 +# Jarmo Kortetjärvi , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-21 00:47+0000\n" -"PO-Revision-Date: 2016-09-21 00:47+0000\n" -"Last-Translator: Jarmo Kortetjärvi , 2016\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 , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -28,24 +28,24 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Luonut" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Luotu" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nimi" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" -msgstr "" +msgstr "Kenttä" #. module: base_search_fuzzy #: selection:trgm.index,index_type:0 @@ -58,32 +58,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Viimeksi päivitetty" @@ -93,7 +93,7 @@ msgid "Models" msgstr "Mallit" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -102,14 +102,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -120,6 +120,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/fr.po b/base_search_fuzzy/i18n/fr.po index 177fb5fcd35..9ff071199a6 100644 --- a/base_search_fuzzy/i18n/fr.po +++ b/base_search_fuzzy/i18n/fr.po @@ -3,15 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 -# Christophe CHAUVET , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-21 06:45+0000\n" -"PO-Revision-Date: 2016-08-21 06:45+0000\n" -"Last-Translator: Christophe CHAUVET , 2016\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 , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -32,22 +31,22 @@ msgstr "" " GiST pour des données souvent mises à jour.\"" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Créé par" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Créé le" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nom affiché" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "Champ" @@ -62,32 +61,32 @@ msgid "GiST" msgstr "GiST" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: 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 -#: field:trgm.index,index_type:0 +#: 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 -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Mis à jour le" @@ -97,7 +96,7 @@ msgid "Models" msgstr "Modèles" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -110,14 +109,14 @@ msgstr "" "nombre est ajouté à la fin du nom d'index." #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, 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 -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "Index Trigram" @@ -128,6 +127,11 @@ msgid "Trigram Index" msgstr "Index Trigram" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/fr_CA.po b/base_search_fuzzy/i18n/fr_CA.po new file mode 100644 index 00000000000..75a765290ca --- /dev/null +++ b/base_search_fuzzy/i18n/fr_CA.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.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 , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_search_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 +#: 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 resused. 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:124 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: 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 "Trigam Index" +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 +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 "" diff --git a/base_search_fuzzy/i18n/fr_CH.po b/base_search_fuzzy/i18n/fr_CH.po index 5fcb2b188a2..f16165767f7 100644 --- a/base_search_fuzzy/i18n/fr_CH.po +++ b/base_search_fuzzy/i18n/fr_CH.po @@ -3,15 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 -# leemannd , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-30 14:52+0000\n" -"PO-Revision-Date: 2016-11-30 14:52+0000\n" -"Last-Translator: leemannd , 2016\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 , 2017\n" "Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -28,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Créé par" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Créé le" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nom affiché" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -58,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Modifié le" @@ -93,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -102,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -120,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/gl.po b/base_search_fuzzy/i18n/gl.po index e825f810342..a31c99a7c67 100644 --- a/base_search_fuzzy/i18n/gl.po +++ b/base_search_fuzzy/i18n/gl.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Creado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Creado en" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/gl_ES.po b/base_search_fuzzy/i18n/gl_ES.po index 375cd69e540..a6a84155d6b 100644 --- a/base_search_fuzzy/i18n/gl_ES.po +++ b/base_search_fuzzy/i18n/gl_ES.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/he.po b/base_search_fuzzy/i18n/he.po index 50ce030af36..fe97ef92f6d 100644 --- a/base_search_fuzzy/i18n/he.po +++ b/base_search_fuzzy/i18n/he.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "נוצר על ידי" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "נוצר ב-" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "השם המוצג" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "מזהה" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "תאריך שינוי אחרון" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "עודכן לאחרונה על ידי" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "עודכן לאחרונה על" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/hr.po b/base_search_fuzzy/i18n/hr.po index 08e99402cc5..3524a057a38 100644 --- a/base_search_fuzzy/i18n/hr.po +++ b/base_search_fuzzy/i18n/hr.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# Bole , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-21 00:47+0000\n" -"PO-Revision-Date: 2016-09-21 00:47+0000\n" -"Last-Translator: Bole , 2016\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 , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Kreirao" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Kreirano" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Naziv " #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Zadnje ažuriranje" @@ -92,7 +92,7 @@ msgid "Models" msgstr "Modeli" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/hr_HR.po b/base_search_fuzzy/i18n/hr_HR.po index 061df24cd75..ed1b9c21a1f 100644 --- a/base_search_fuzzy/i18n/hr_HR.po +++ b/base_search_fuzzy/i18n/hr_HR.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# Bole , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-21 00:47+0000\n" -"PO-Revision-Date: 2016-09-21 00:47+0000\n" -"Last-Translator: Bole , 2016\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 , 2017\n" "Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Kreirao" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Kreirano" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Naziv" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" @@ -92,7 +92,7 @@ msgid "Models" msgstr "Modeli" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/hu.po b/base_search_fuzzy/i18n/hu.po index efba7e657df..3cc0b0320fb 100644 --- a/base_search_fuzzy/i18n/hu.po +++ b/base_search_fuzzy/i18n/hu.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: 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 -#: field:trgm.index,create_date:0 +#: 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 -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Utoljára frissítve " @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/id.po b/base_search_fuzzy/i18n/id.po index 3bd6f571ce0..b15d2238a90 100644 --- a/base_search_fuzzy/i18n/id.po +++ b/base_search_fuzzy/i18n/id.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Dibuat oleh" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Dibuat pada" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nama Tampilan" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Diperbaharui pada" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/it.po b/base_search_fuzzy/i18n/it.po index 4281b601367..1843c5044a7 100644 --- a/base_search_fuzzy/i18n/it.po +++ b/base_search_fuzzy/i18n/it.po @@ -3,15 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 -# Paolo Valier , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-11 02:42+0000\n" -"PO-Revision-Date: 2016-08-11 02:42+0000\n" -"Last-Translator: Paolo Valier , 2016\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 , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -28,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Created by" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Created on" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "Campo" @@ -58,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Last Updated on" @@ -93,7 +92,7 @@ msgid "Models" msgstr "Modelli" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -102,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -120,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ja.po b/base_search_fuzzy/i18n/ja.po index 707f94c2a2e..11e81788d49 100644 --- a/base_search_fuzzy/i18n/ja.po +++ b/base_search_fuzzy/i18n/ja.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "作成者" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "作成日" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "表示名" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "最終更新日" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "最終更新者" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "最終更新日" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ko.po b/base_search_fuzzy/i18n/ko.po index 3030cd2d735..7816808d0b6 100644 --- a/base_search_fuzzy/i18n/ko.po +++ b/base_search_fuzzy/i18n/ko.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "작성자" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "작성일" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "표시 이름" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "최근 수정" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "최근 갱신한 사람" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "최근 갱신 날짜" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/lt.po b/base_search_fuzzy/i18n/lt.po index 4ed7f1a0192..3d716d8aa6a 100644 --- a/base_search_fuzzy/i18n/lt.po +++ b/base_search_fuzzy/i18n/lt.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Sukūrė" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Sukurta" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Vaizduojamas pavadinimas" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/lt_LT.po b/base_search_fuzzy/i18n/lt_LT.po new file mode 100644 index 00000000000..15ade1cf856 --- /dev/null +++ b/base_search_fuzzy/i18n/lt_LT.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.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 , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_search_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 +#: 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 resused. 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:124 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: 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 "Trigam Index" +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 +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 "" diff --git a/base_search_fuzzy/i18n/lv.po b/base_search_fuzzy/i18n/lv.po index 876882a92be..d72bb579a91 100644 --- a/base_search_fuzzy/i18n/lv.po +++ b/base_search_fuzzy/i18n/lv.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Izveidoja" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Izveidots" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: 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" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/mk.po b/base_search_fuzzy/i18n/mk.po index ee87a6b8d3d..b68053aa354 100644 --- a/base_search_fuzzy/i18n/mk.po +++ b/base_search_fuzzy/i18n/mk.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Креирано од" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Креирано на" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Прикажи име" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "Последна промена на" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "Последно ажурирање од" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Последно ажурирање на" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/mn.po b/base_search_fuzzy/i18n/mn.po index c80f256a9bf..c6e09b4599d 100644 --- a/base_search_fuzzy/i18n/mn.po +++ b/base_search_fuzzy/i18n/mn.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Үүсгэгч" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Үүсгэсэн" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Дэлгэцийн Нэр" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "Сүүлийн засвар хийсэн огноо" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "Сүүлийн засвар хийсэн" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Сүүлийн засвар хийсэн огноо" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/nb.po b/base_search_fuzzy/i18n/nb.po index 0d86ad97ae1..7697421db58 100644 --- a/base_search_fuzzy/i18n/nb.po +++ b/base_search_fuzzy/i18n/nb.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Opprettet av" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Opprettet den" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Visnings navn" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Sist oppdatert" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/nb_NO.po b/base_search_fuzzy/i18n/nb_NO.po new file mode 100644 index 00000000000..7bbe79e9e56 --- /dev/null +++ b/base_search_fuzzy/i18n/nb_NO.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2017 +# Imre Kristoffer Eilertsen , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.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 , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_search_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 +#: 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 resused. 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:124 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: 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 "Trigam Index" +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 +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 "" diff --git a/base_search_fuzzy/i18n/nl.po b/base_search_fuzzy/i18n/nl.po index df0596b1e83..8a9b0756eeb 100644 --- a/base_search_fuzzy/i18n/nl.po +++ b/base_search_fuzzy/i18n/nl.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,24 +27,24 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Aangemaakt door" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Aangemaakt op" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" -msgstr "" +msgstr "Veld" #. module: base_search_fuzzy #: selection:trgm.index,index_type:0 @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/nl_BE.po b/base_search_fuzzy/i18n/nl_BE.po index 5f67bf8f33b..ad24888c500 100644 --- a/base_search_fuzzy/i18n/nl_BE.po +++ b/base_search_fuzzy/i18n/nl_BE.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Gemaakt door" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Gemaakt op" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Schermnaam" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/pl.po b/base_search_fuzzy/i18n/pl.po index 0e092b513fe..18f53fbe999 100644 --- a/base_search_fuzzy/i18n/pl.po +++ b/base_search_fuzzy/i18n/pl.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Utworzone przez" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Utworzono" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Ostatnia zmiana" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/pt.po b/base_search_fuzzy/i18n/pt.po index 68649f312e1..2ee1e575b80 100644 --- a/base_search_fuzzy/i18n/pt.po +++ b/base_search_fuzzy/i18n/pt.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# Pedro Castro Silva , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-04 01:04+0000\n" -"PO-Revision-Date: 2016-09-04 01:04+0000\n" -"Last-Translator: Pedro Castro Silva , 2016\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 , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Criado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Criado em" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Nome" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última Atualização Em" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/pt_BR.po b/base_search_fuzzy/i18n/pt_BR.po index ba7d4fc2de0..7259450bcff 100644 --- a/base_search_fuzzy/i18n/pt_BR.po +++ b/base_search_fuzzy/i18n/pt_BR.po @@ -3,15 +3,14 @@ # * base_search_fuzzy # # Translators: -# Armando Vulcano Junior , 2016 -# Paulo Ricardo , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-11 02:42+0000\n" -"PO-Revision-Date: 2016-08-11 02:42+0000\n" -"Last-Translator: Paulo Ricardo , 2016\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 , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -28,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Criado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Criado em" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "Campo" @@ -58,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "Identificação" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última atualização em" @@ -93,7 +92,7 @@ msgid "Models" msgstr "Modelos" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -102,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -120,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/pt_PT.po b/base_search_fuzzy/i18n/pt_PT.po index 5467faa9aac..f55aa729641 100644 --- a/base_search_fuzzy/i18n/pt_PT.po +++ b/base_search_fuzzy/i18n/pt_PT.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# Pedro Castro Silva , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-16 09:29+0000\n" -"PO-Revision-Date: 2016-09-16 09:29+0000\n" -"Last-Translator: Pedro Castro Silva , 2016\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 , 2017\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Criado por" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Criado em" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Última Atualização Em" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ro.po b/base_search_fuzzy/i18n/ro.po new file mode 100644 index 00000000000..34154a34795 --- /dev/null +++ b/base_search_fuzzy/i18n/ro.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.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 , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: base_search_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 "" + +#. 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 +#: 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 resused. 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:124 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: 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 "Trigam Index" +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 +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 "" diff --git a/base_search_fuzzy/i18n/ru.po b/base_search_fuzzy/i18n/ru.po index 621c518979a..fabc72f1468 100644 --- a/base_search_fuzzy/i18n/ru.po +++ b/base_search_fuzzy/i18n/ru.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-11 02:42+0000\n" -"PO-Revision-Date: 2016-08-11 02:42+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" -msgstr "" +msgstr "Создано" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" -msgstr "" +msgstr "Создан" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "Поле" @@ -57,34 +57,34 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" -msgstr "" +msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Последний раз обновлено" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" -msgstr "" +msgstr "Последний раз обновлено" #. module: base_search_fuzzy #: model:ir.model,name:base_search_fuzzy.model_ir_model @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sk.po b/base_search_fuzzy/i18n/sk.po index ebf4aed164b..62826a29e66 100644 --- a/base_search_fuzzy/i18n/sk.po +++ b/base_search_fuzzy/i18n/sk.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Vytvoril" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Vytvorené" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Zobraziť meno" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Naposledy upravované" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sl.po b/base_search_fuzzy/i18n/sl.po index 20454acb5d9..89ff31b3d12 100644 --- a/base_search_fuzzy/i18n/sl.po +++ b/base_search_fuzzy/i18n/sl.po @@ -3,15 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 -# Matjaž Mozetič , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-11 02:42+0000\n" -"PO-Revision-Date: 2016-08-11 02:42+0000\n" -"Last-Translator: Matjaž Mozetič , 2016\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 , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -32,22 +31,22 @@ msgstr "" "posodabljajo.\"" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Ustvaril" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Ustvarjeno" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Prikazni naziv" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "Polje" @@ -62,32 +61,32 @@ msgid "GiST" msgstr "GiST" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "Naziv indeksa" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "Tip indeksa" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" @@ -97,7 +96,7 @@ msgid "Models" msgstr "Modeli" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -109,14 +108,14 @@ msgstr "" "indeks nahaja v drugi tabeli, se ob koncu naziva indeksa doda številka." #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, 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 -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "Trigram indeks" @@ -127,6 +126,11 @@ msgid "Trigram Index" msgstr "Trigram indeks" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sr.po b/base_search_fuzzy/i18n/sr.po index 3a9eb3d2cad..30d63da2a15 100644 --- a/base_search_fuzzy/i18n/sr.po +++ b/base_search_fuzzy/i18n/sr.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Kreiran" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sr@latin.po b/base_search_fuzzy/i18n/sr@latin.po index dcc267254ea..17795088aaa 100644 --- a/base_search_fuzzy/i18n/sr@latin.po +++ b/base_search_fuzzy/i18n/sr@latin.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Kreirao" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Kreiran" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Zadnja izmjena" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sv.po b/base_search_fuzzy/i18n/sv.po index 7d60474f84a..568657cc39d 100644 --- a/base_search_fuzzy/i18n/sv.po +++ b/base_search_fuzzy/i18n/sv.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Skapad av" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Skapad den" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Visa namn" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Senast uppdaterad" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/th.po b/base_search_fuzzy/i18n/th.po index b0986ad6bdd..beec1f293d5 100644 --- a/base_search_fuzzy/i18n/th.po +++ b/base_search_fuzzy/i18n/th.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "สร้างโดย" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "สร้างเมื่อ" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "ชื่อที่ใช้แสดง" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "รหัส" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "แก้ไขครั้งสุดท้ายเมื่อ" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "อัพเดทครั้งสุดท้ายโดย" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "อัพเดทครั้งสุดท้ายเมื่อ" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/tr.po b/base_search_fuzzy/i18n/tr.po index 7d5a83f7038..112ddd0b43e 100644 --- a/base_search_fuzzy/i18n/tr.po +++ b/base_search_fuzzy/i18n/tr.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# Ahmet Altinisik , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-11 02:42+0000\n" -"PO-Revision-Date: 2016-08-11 02:42+0000\n" -"Last-Translator: Ahmet Altinisik , 2016\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 , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Oluşturan" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Oluşturuldu" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" -msgstr "" +msgstr "Görünen İsim" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "Alan" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" -msgstr "" +msgstr "Son değişiklik" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Son güncellenme" @@ -92,7 +92,7 @@ msgid "Models" msgstr "Modeller" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/tr_TR.po b/base_search_fuzzy/i18n/tr_TR.po new file mode 100644 index 00000000000..108f2b1f7e6 --- /dev/null +++ b/base_search_fuzzy/i18n/tr_TR.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2017 +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.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 , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_search_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 +#: 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 resused. 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:124 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: 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 "Trigam Index" +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 +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 "" diff --git a/base_search_fuzzy/i18n/uk.po b/base_search_fuzzy/i18n/uk.po index a27d5e05705..78121f7904f 100644 --- a/base_search_fuzzy/i18n/uk.po +++ b/base_search_fuzzy/i18n/uk.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "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 -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "Створив" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "Дата створення" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Назва для відображення" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "Остання модифікація" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "Востаннє оновив" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "Останнє оновлення" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/vi.po b/base_search_fuzzy/i18n/vi.po index 88dad6a9ba3..d5fa51b63cc 100644 --- a/base_search_fuzzy/i18n/vi.po +++ b/base_search_fuzzy/i18n/vi.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: 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 -#: field:trgm.index,create_date:0 +#: 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 -#: field:trgm.index,display_name:0 +#: 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 -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: 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 -#: field:trgm.index,write_date:0 +#: 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" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/vi_VN.po b/base_search_fuzzy/i18n/vi_VN.po new file mode 100644 index 00000000000..206d2acf968 --- /dev/null +++ b/base_search_fuzzy/i18n/vi_VN.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.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 , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\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 +#: 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 resused. 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:124 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: 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 "Trigam Index" +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 +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 "" diff --git a/base_search_fuzzy/i18n/zh_CN.po b/base_search_fuzzy/i18n/zh_CN.po index 1021cfa5dd7..6f69936f8ac 100644 --- a/base_search_fuzzy/i18n/zh_CN.po +++ b/base_search_fuzzy/i18n/zh_CN.po @@ -3,14 +3,15 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 +# Jeffery CHEN , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-01-14 04:21+0000\n" +"PO-Revision-Date: 2017-01-14 04:21+0000\n" +"Last-Translator: Jeffery CHEN , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "创建者" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "创建时间" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "Display Name" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,42 +58,42 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "ID" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: 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 -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "最后更新者" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: 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 "" +msgstr "模型" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +102,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +120,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" diff --git a/base_search_fuzzy/i18n/zh_TW.po b/base_search_fuzzy/i18n/zh_TW.po index 9b75126b7e6..012a06ee695 100644 --- a/base_search_fuzzy/i18n/zh_TW.po +++ b/base_search_fuzzy/i18n/zh_TW.po @@ -3,14 +3,14 @@ # * base_search_fuzzy # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-28 21:28+0000\n" -"PO-Revision-Date: 2016-11-28 21:28+0000\n" -"Last-Translator: OCA Transbot , 2016\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 , 2017\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: help:trgm.index,index_type:0 +#: 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" @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,create_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" msgstr "建立者" #. module: base_search_fuzzy -#: field:trgm.index,create_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_date msgid "Created on" msgstr "建立於" #. module: base_search_fuzzy -#: field:trgm.index,display_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" msgstr "顯示名稱" #. module: base_search_fuzzy -#: field:trgm.index,field_id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" msgstr "" @@ -57,32 +57,32 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,id:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id msgid "ID" msgstr "編號" #. module: base_search_fuzzy -#: field:trgm.index,index_name:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_name msgid "Index Name" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,index_type:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_index_type msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: field:trgm.index,__last_update:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index___last_update msgid "Last Modified on" msgstr "最後修改:" #. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid msgid "Last Updated by" msgstr "最後更新:" #. module: base_search_fuzzy -#: field:trgm.index,write_date:0 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date msgid "Last Updated on" msgstr "最後更新於" @@ -92,7 +92,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,index_name:0 +#: 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 " @@ -101,14 +101,14 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:122 +#: code:addons/base_search_fuzzy/models/trgm_index.py:124 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" #. module: base_search_fuzzy -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree +#: 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 "Trigam Index" msgstr "" @@ -119,6 +119,11 @@ msgid "Trigram Index" msgstr "" #. module: base_search_fuzzy -#: help:trgm.index,field_id:0 +#: 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 "" From f2931870141c07aa1e6118e801d6ab07aeb691a8 Mon Sep 17 00:00:00 2001 From: Dave Lasley Date: Wed, 1 Feb 2017 08:57:13 -0800 Subject: [PATCH 06/53] base_search_fuzzy: Upgrade to v10 * Rename manifest * Update openerp references to odoo * Bump version * Upgrade api usages --- base_search_fuzzy/README.rst | 3 +- .../{__openerp__.py => __manifest__.py} | 2 +- base_search_fuzzy/i18n/am.po | 2 +- base_search_fuzzy/i18n/ar.po | 2 +- base_search_fuzzy/i18n/base_search_fuzzy.pot | 2 +- base_search_fuzzy/i18n/bg.po | 2 +- base_search_fuzzy/i18n/bs.po | 2 +- base_search_fuzzy/i18n/ca.po | 2 +- base_search_fuzzy/i18n/cs.po | 2 +- base_search_fuzzy/i18n/da.po | 2 +- base_search_fuzzy/i18n/de.po | 2 +- base_search_fuzzy/i18n/el_GR.po | 2 +- base_search_fuzzy/i18n/en_GB.po | 2 +- base_search_fuzzy/i18n/es.po | 2 +- base_search_fuzzy/i18n/es_AR.po | 2 +- base_search_fuzzy/i18n/es_CL.po | 2 +- base_search_fuzzy/i18n/es_CO.po | 2 +- base_search_fuzzy/i18n/es_CR.po | 2 +- base_search_fuzzy/i18n/es_DO.po | 2 +- base_search_fuzzy/i18n/es_EC.po | 2 +- base_search_fuzzy/i18n/es_ES.po | 2 +- base_search_fuzzy/i18n/es_MX.po | 2 +- base_search_fuzzy/i18n/es_PE.po | 2 +- base_search_fuzzy/i18n/es_PY.po | 2 +- base_search_fuzzy/i18n/es_VE.po | 2 +- base_search_fuzzy/i18n/et.po | 2 +- base_search_fuzzy/i18n/eu.po | 2 +- base_search_fuzzy/i18n/fa.po | 2 +- base_search_fuzzy/i18n/fi.po | 2 +- base_search_fuzzy/i18n/fr.po | 2 +- base_search_fuzzy/i18n/fr_CA.po | 2 +- base_search_fuzzy/i18n/fr_CH.po | 2 +- base_search_fuzzy/i18n/gl.po | 2 +- base_search_fuzzy/i18n/gl_ES.po | 2 +- base_search_fuzzy/i18n/he.po | 2 +- base_search_fuzzy/i18n/hr.po | 2 +- base_search_fuzzy/i18n/hr_HR.po | 2 +- base_search_fuzzy/i18n/hu.po | 2 +- base_search_fuzzy/i18n/id.po | 2 +- base_search_fuzzy/i18n/it.po | 2 +- base_search_fuzzy/i18n/ja.po | 2 +- base_search_fuzzy/i18n/ko.po | 2 +- base_search_fuzzy/i18n/lt.po | 2 +- base_search_fuzzy/i18n/lt_LT.po | 2 +- base_search_fuzzy/i18n/lv.po | 2 +- base_search_fuzzy/i18n/mk.po | 2 +- base_search_fuzzy/i18n/mn.po | 2 +- base_search_fuzzy/i18n/nb.po | 2 +- base_search_fuzzy/i18n/nb_NO.po | 2 +- base_search_fuzzy/i18n/nl.po | 2 +- base_search_fuzzy/i18n/nl_BE.po | 2 +- base_search_fuzzy/i18n/pl.po | 2 +- base_search_fuzzy/i18n/pt.po | 2 +- base_search_fuzzy/i18n/pt_BR.po | 2 +- base_search_fuzzy/i18n/pt_PT.po | 2 +- base_search_fuzzy/i18n/ro.po | 2 +- base_search_fuzzy/i18n/ru.po | 2 +- base_search_fuzzy/i18n/sk.po | 2 +- base_search_fuzzy/i18n/sl.po | 2 +- base_search_fuzzy/i18n/sr.po | 2 +- base_search_fuzzy/i18n/sr@latin.po | 2 +- base_search_fuzzy/i18n/sv.po | 2 +- base_search_fuzzy/i18n/th.po | 2 +- base_search_fuzzy/i18n/tr.po | 2 +- base_search_fuzzy/i18n/tr_TR.po | 2 +- base_search_fuzzy/i18n/uk.po | 2 +- base_search_fuzzy/i18n/vi.po | 2 +- base_search_fuzzy/i18n/vi_VN.po | 2 +- base_search_fuzzy/i18n/zh_CN.po | 2 +- base_search_fuzzy/i18n/zh_TW.po | 2 +- base_search_fuzzy/models/ir_model.py | 31 ++++++++++++------- base_search_fuzzy/models/trgm_index.py | 18 ++++++----- .../tests/test_query_generation.py | 4 +-- base_search_fuzzy/views/trgm_index.xml | 4 +-- 74 files changed, 104 insertions(+), 94 deletions(-) rename base_search_fuzzy/{__openerp__.py => __manifest__.py} (96%) diff --git a/base_search_fuzzy/README.rst b/base_search_fuzzy/README.rst index 03a90789dc1..baebdf45c61 100644 --- a/base_search_fuzzy/README.rst +++ b/base_search_fuzzy/README.rst @@ -73,7 +73,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, -help us smashing it by providing a detailed and welcomed feedback. +help us smash it by providing detailed and welcomed feedback. Credits ======= @@ -89,6 +89,7 @@ Contributors * Christoph Giesel * Jordi Ballester * Serpent Consulting Services Pvt. Ltd. +* Dave Lasley Maintainer ---------- diff --git a/base_search_fuzzy/__openerp__.py b/base_search_fuzzy/__manifest__.py similarity index 96% rename from base_search_fuzzy/__openerp__.py rename to base_search_fuzzy/__manifest__.py index fbfdfa3c59e..b4dfddc2306 100644 --- a/base_search_fuzzy/__openerp__.py +++ b/base_search_fuzzy/__manifest__.py @@ -6,7 +6,7 @@ 'name': "Fuzzy Search", 'summary': "Fuzzy search with the PostgreSQL trigram extension", 'category': 'Uncategorized', - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'website': 'https://odoo-community.org/', 'author': 'bloopark systems GmbH & Co. KG, ' 'Eficent, ' diff --git a/base_search_fuzzy/i18n/am.po b/base_search_fuzzy/i18n/am.po index 82c2b6a4812..384547e69ae 100644 --- a/base_search_fuzzy/i18n/am.po +++ b/base_search_fuzzy/i18n/am.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/ar.po b/base_search_fuzzy/i18n/ar.po index 8196def4b0c..da024db6f95 100644 --- a/base_search_fuzzy/i18n/ar.po +++ b/base_search_fuzzy/i18n/ar.po @@ -7,7 +7,7 @@ # SaFi J. , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/base_search_fuzzy.pot b/base_search_fuzzy/i18n/base_search_fuzzy.pot index deaf7d891e4..9c8e3ad8a64 100644 --- a/base_search_fuzzy/i18n/base_search_fuzzy.pot +++ b/base_search_fuzzy/i18n/base_search_fuzzy.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0alpha1\n" +"Project-Id-Version: Odoo Server 10.0alpha1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-06-24 08:47+0000\n" "PO-Revision-Date: 2016-06-24 08:47+0000\n" diff --git a/base_search_fuzzy/i18n/bg.po b/base_search_fuzzy/i18n/bg.po index 539cc8f35df..1c7376bb461 100644 --- a/base_search_fuzzy/i18n/bg.po +++ b/base_search_fuzzy/i18n/bg.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/bs.po b/base_search_fuzzy/i18n/bs.po index 17895634e76..4cbc335cd50 100644 --- a/base_search_fuzzy/i18n/bs.po +++ b/base_search_fuzzy/i18n/bs.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/ca.po b/base_search_fuzzy/i18n/ca.po index 693ded24aef..d7149aaead8 100644 --- a/base_search_fuzzy/i18n/ca.po +++ b/base_search_fuzzy/i18n/ca.po @@ -7,7 +7,7 @@ # Carles Antoli , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/cs.po b/base_search_fuzzy/i18n/cs.po index bdea0b03f33..3f34506f4c1 100644 --- a/base_search_fuzzy/i18n/cs.po +++ b/base_search_fuzzy/i18n/cs.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/da.po b/base_search_fuzzy/i18n/da.po index f8756cf1761..64ee4ca1530 100644 --- a/base_search_fuzzy/i18n/da.po +++ b/base_search_fuzzy/i18n/da.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/de.po b/base_search_fuzzy/i18n/de.po index ce4d87ff138..3ed79ae5f01 100644 --- a/base_search_fuzzy/i18n/de.po +++ b/base_search_fuzzy/i18n/de.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/el_GR.po b/base_search_fuzzy/i18n/el_GR.po index 2afc635a402..be762f620c4 100644 --- a/base_search_fuzzy/i18n/el_GR.po +++ b/base_search_fuzzy/i18n/el_GR.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/en_GB.po b/base_search_fuzzy/i18n/en_GB.po index 48309f0996c..d34c105b342 100644 --- a/base_search_fuzzy/i18n/en_GB.po +++ b/base_search_fuzzy/i18n/en_GB.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es.po b/base_search_fuzzy/i18n/es.po index fc5f0b1fdee..14f3977704e 100644 --- a/base_search_fuzzy/i18n/es.po +++ b/base_search_fuzzy/i18n/es.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_AR.po b/base_search_fuzzy/i18n/es_AR.po index 207244fdfd2..2baf38e622e 100644 --- a/base_search_fuzzy/i18n/es_AR.po +++ b/base_search_fuzzy/i18n/es_AR.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_CL.po b/base_search_fuzzy/i18n/es_CL.po index a7b92317dbf..4b61cb55994 100644 --- a/base_search_fuzzy/i18n/es_CL.po +++ b/base_search_fuzzy/i18n/es_CL.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_CO.po b/base_search_fuzzy/i18n/es_CO.po index b13c89e6df6..126e69e1d5b 100644 --- a/base_search_fuzzy/i18n/es_CO.po +++ b/base_search_fuzzy/i18n/es_CO.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_CR.po b/base_search_fuzzy/i18n/es_CR.po index e3c18aa1f49..ec629c032c6 100644 --- a/base_search_fuzzy/i18n/es_CR.po +++ b/base_search_fuzzy/i18n/es_CR.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_DO.po b/base_search_fuzzy/i18n/es_DO.po index 877f27e12ec..5347a074ee1 100644 --- a/base_search_fuzzy/i18n/es_DO.po +++ b/base_search_fuzzy/i18n/es_DO.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_EC.po b/base_search_fuzzy/i18n/es_EC.po index 412d9805d31..1d6e156624f 100644 --- a/base_search_fuzzy/i18n/es_EC.po +++ b/base_search_fuzzy/i18n/es_EC.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_ES.po b/base_search_fuzzy/i18n/es_ES.po index e7d2efd4382..4790d67846c 100644 --- a/base_search_fuzzy/i18n/es_ES.po +++ b/base_search_fuzzy/i18n/es_ES.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_MX.po b/base_search_fuzzy/i18n/es_MX.po index c298b5d53a9..1e69a64f89d 100644 --- a/base_search_fuzzy/i18n/es_MX.po +++ b/base_search_fuzzy/i18n/es_MX.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_PE.po b/base_search_fuzzy/i18n/es_PE.po index fb99d384e30..7fd24a2b66f 100644 --- a/base_search_fuzzy/i18n/es_PE.po +++ b/base_search_fuzzy/i18n/es_PE.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_PY.po b/base_search_fuzzy/i18n/es_PY.po index cde99d5488f..c503c61016f 100644 --- a/base_search_fuzzy/i18n/es_PY.po +++ b/base_search_fuzzy/i18n/es_PY.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/es_VE.po b/base_search_fuzzy/i18n/es_VE.po index 85df9e5b205..bccaf68d0f9 100644 --- a/base_search_fuzzy/i18n/es_VE.po +++ b/base_search_fuzzy/i18n/es_VE.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/et.po b/base_search_fuzzy/i18n/et.po index b6eba35177d..e5a66f1a496 100644 --- a/base_search_fuzzy/i18n/et.po +++ b/base_search_fuzzy/i18n/et.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/eu.po b/base_search_fuzzy/i18n/eu.po index 52d1d25cc6e..d4cd7e93ae4 100644 --- a/base_search_fuzzy/i18n/eu.po +++ b/base_search_fuzzy/i18n/eu.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/fa.po b/base_search_fuzzy/i18n/fa.po index df2af295773..c9d1dd60abc 100644 --- a/base_search_fuzzy/i18n/fa.po +++ b/base_search_fuzzy/i18n/fa.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/fi.po b/base_search_fuzzy/i18n/fi.po index 9394a3aba39..c6e20a8747d 100644 --- a/base_search_fuzzy/i18n/fi.po +++ b/base_search_fuzzy/i18n/fi.po @@ -7,7 +7,7 @@ # Jarmo Kortetjärvi , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/fr.po b/base_search_fuzzy/i18n/fr.po index 9ff071199a6..3928955ddd7 100644 --- a/base_search_fuzzy/i18n/fr.po +++ b/base_search_fuzzy/i18n/fr.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/fr_CA.po b/base_search_fuzzy/i18n/fr_CA.po index 75a765290ca..8b91afbdb81 100644 --- a/base_search_fuzzy/i18n/fr_CA.po +++ b/base_search_fuzzy/i18n/fr_CA.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/fr_CH.po b/base_search_fuzzy/i18n/fr_CH.po index f16165767f7..7069386fa4c 100644 --- a/base_search_fuzzy/i18n/fr_CH.po +++ b/base_search_fuzzy/i18n/fr_CH.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/gl.po b/base_search_fuzzy/i18n/gl.po index a31c99a7c67..39ba8ac2198 100644 --- a/base_search_fuzzy/i18n/gl.po +++ b/base_search_fuzzy/i18n/gl.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/gl_ES.po b/base_search_fuzzy/i18n/gl_ES.po index a6a84155d6b..1c199a9d903 100644 --- a/base_search_fuzzy/i18n/gl_ES.po +++ b/base_search_fuzzy/i18n/gl_ES.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/he.po b/base_search_fuzzy/i18n/he.po index fe97ef92f6d..4f5780a2a8f 100644 --- a/base_search_fuzzy/i18n/he.po +++ b/base_search_fuzzy/i18n/he.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/hr.po b/base_search_fuzzy/i18n/hr.po index 3524a057a38..dc8627d1a92 100644 --- a/base_search_fuzzy/i18n/hr.po +++ b/base_search_fuzzy/i18n/hr.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/hr_HR.po b/base_search_fuzzy/i18n/hr_HR.po index ed1b9c21a1f..aef7d4b0c29 100644 --- a/base_search_fuzzy/i18n/hr_HR.po +++ b/base_search_fuzzy/i18n/hr_HR.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/hu.po b/base_search_fuzzy/i18n/hu.po index 3cc0b0320fb..1cf5c7a81a0 100644 --- a/base_search_fuzzy/i18n/hu.po +++ b/base_search_fuzzy/i18n/hu.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/id.po b/base_search_fuzzy/i18n/id.po index b15d2238a90..b49665b4e28 100644 --- a/base_search_fuzzy/i18n/id.po +++ b/base_search_fuzzy/i18n/id.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/it.po b/base_search_fuzzy/i18n/it.po index 1843c5044a7..f77e7a53620 100644 --- a/base_search_fuzzy/i18n/it.po +++ b/base_search_fuzzy/i18n/it.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/ja.po b/base_search_fuzzy/i18n/ja.po index 11e81788d49..1466030ef92 100644 --- a/base_search_fuzzy/i18n/ja.po +++ b/base_search_fuzzy/i18n/ja.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/ko.po b/base_search_fuzzy/i18n/ko.po index 7816808d0b6..e36301c8424 100644 --- a/base_search_fuzzy/i18n/ko.po +++ b/base_search_fuzzy/i18n/ko.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/lt.po b/base_search_fuzzy/i18n/lt.po index 3d716d8aa6a..9ca907f4047 100644 --- a/base_search_fuzzy/i18n/lt.po +++ b/base_search_fuzzy/i18n/lt.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/lt_LT.po b/base_search_fuzzy/i18n/lt_LT.po index 15ade1cf856..002570db5ee 100644 --- a/base_search_fuzzy/i18n/lt_LT.po +++ b/base_search_fuzzy/i18n/lt_LT.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/lv.po b/base_search_fuzzy/i18n/lv.po index d72bb579a91..c128584fc23 100644 --- a/base_search_fuzzy/i18n/lv.po +++ b/base_search_fuzzy/i18n/lv.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/mk.po b/base_search_fuzzy/i18n/mk.po index b68053aa354..456140c3c13 100644 --- a/base_search_fuzzy/i18n/mk.po +++ b/base_search_fuzzy/i18n/mk.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/mn.po b/base_search_fuzzy/i18n/mn.po index c6e09b4599d..ea5d546301d 100644 --- a/base_search_fuzzy/i18n/mn.po +++ b/base_search_fuzzy/i18n/mn.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/nb.po b/base_search_fuzzy/i18n/nb.po index 7697421db58..5dff7475bbe 100644 --- a/base_search_fuzzy/i18n/nb.po +++ b/base_search_fuzzy/i18n/nb.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/nb_NO.po b/base_search_fuzzy/i18n/nb_NO.po index 7bbe79e9e56..aa0da0707a1 100644 --- a/base_search_fuzzy/i18n/nb_NO.po +++ b/base_search_fuzzy/i18n/nb_NO.po @@ -7,7 +7,7 @@ # Imre Kristoffer Eilertsen , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/nl.po b/base_search_fuzzy/i18n/nl.po index 8a9b0756eeb..a19306105a0 100644 --- a/base_search_fuzzy/i18n/nl.po +++ b/base_search_fuzzy/i18n/nl.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/nl_BE.po b/base_search_fuzzy/i18n/nl_BE.po index ad24888c500..d6e95152944 100644 --- a/base_search_fuzzy/i18n/nl_BE.po +++ b/base_search_fuzzy/i18n/nl_BE.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/pl.po b/base_search_fuzzy/i18n/pl.po index 18f53fbe999..e19f6bd6e4f 100644 --- a/base_search_fuzzy/i18n/pl.po +++ b/base_search_fuzzy/i18n/pl.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/pt.po b/base_search_fuzzy/i18n/pt.po index 2ee1e575b80..0d59e3d4859 100644 --- a/base_search_fuzzy/i18n/pt.po +++ b/base_search_fuzzy/i18n/pt.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/pt_BR.po b/base_search_fuzzy/i18n/pt_BR.po index 7259450bcff..62cfe2168cb 100644 --- a/base_search_fuzzy/i18n/pt_BR.po +++ b/base_search_fuzzy/i18n/pt_BR.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/pt_PT.po b/base_search_fuzzy/i18n/pt_PT.po index f55aa729641..3a5b4928644 100644 --- a/base_search_fuzzy/i18n/pt_PT.po +++ b/base_search_fuzzy/i18n/pt_PT.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/ro.po b/base_search_fuzzy/i18n/ro.po index 34154a34795..44823dfac3a 100644 --- a/base_search_fuzzy/i18n/ro.po +++ b/base_search_fuzzy/i18n/ro.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/ru.po b/base_search_fuzzy/i18n/ru.po index fabc72f1468..063fc7c21f0 100644 --- a/base_search_fuzzy/i18n/ru.po +++ b/base_search_fuzzy/i18n/ru.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/sk.po b/base_search_fuzzy/i18n/sk.po index 62826a29e66..45765ee17dc 100644 --- a/base_search_fuzzy/i18n/sk.po +++ b/base_search_fuzzy/i18n/sk.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/sl.po b/base_search_fuzzy/i18n/sl.po index 89ff31b3d12..540aac5a580 100644 --- a/base_search_fuzzy/i18n/sl.po +++ b/base_search_fuzzy/i18n/sl.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/sr.po b/base_search_fuzzy/i18n/sr.po index 30d63da2a15..447be321392 100644 --- a/base_search_fuzzy/i18n/sr.po +++ b/base_search_fuzzy/i18n/sr.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/sr@latin.po b/base_search_fuzzy/i18n/sr@latin.po index 17795088aaa..bad26ee29dd 100644 --- a/base_search_fuzzy/i18n/sr@latin.po +++ b/base_search_fuzzy/i18n/sr@latin.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/sv.po b/base_search_fuzzy/i18n/sv.po index 568657cc39d..9811ebf0312 100644 --- a/base_search_fuzzy/i18n/sv.po +++ b/base_search_fuzzy/i18n/sv.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/th.po b/base_search_fuzzy/i18n/th.po index beec1f293d5..43dbb827989 100644 --- a/base_search_fuzzy/i18n/th.po +++ b/base_search_fuzzy/i18n/th.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/tr.po b/base_search_fuzzy/i18n/tr.po index 112ddd0b43e..a3a289d715d 100644 --- a/base_search_fuzzy/i18n/tr.po +++ b/base_search_fuzzy/i18n/tr.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/tr_TR.po b/base_search_fuzzy/i18n/tr_TR.po index 108f2b1f7e6..e39c4642c30 100644 --- a/base_search_fuzzy/i18n/tr_TR.po +++ b/base_search_fuzzy/i18n/tr_TR.po @@ -7,7 +7,7 @@ # Ozge Altinisik , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/uk.po b/base_search_fuzzy/i18n/uk.po index 78121f7904f..7cf3936508a 100644 --- a/base_search_fuzzy/i18n/uk.po +++ b/base_search_fuzzy/i18n/uk.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/vi.po b/base_search_fuzzy/i18n/vi.po index d5fa51b63cc..52e07345822 100644 --- a/base_search_fuzzy/i18n/vi.po +++ b/base_search_fuzzy/i18n/vi.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/vi_VN.po b/base_search_fuzzy/i18n/vi_VN.po index 206d2acf968..64ce2fe7a3b 100644 --- a/base_search_fuzzy/i18n/vi_VN.po +++ b/base_search_fuzzy/i18n/vi_VN.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/zh_CN.po b/base_search_fuzzy/i18n/zh_CN.po index 6f69936f8ac..c05d9fc4ec4 100644 --- a/base_search_fuzzy/i18n/zh_CN.po +++ b/base_search_fuzzy/i18n/zh_CN.po @@ -7,7 +7,7 @@ # Jeffery CHEN , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/i18n/zh_TW.po b/base_search_fuzzy/i18n/zh_TW.po index 012a06ee695..f4f54e5230e 100644 --- a/base_search_fuzzy/i18n/zh_TW.po +++ b/base_search_fuzzy/i18n/zh_TW.po @@ -6,7 +6,7 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"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" diff --git a/base_search_fuzzy/models/ir_model.py b/base_search_fuzzy/models/ir_model.py index a56cb32ea49..19091d19fcb 100644 --- a/base_search_fuzzy/models/ir_model.py +++ b/base_search_fuzzy/models/ir_model.py @@ -1,11 +1,12 @@ # -*- coding: utf-8 -*- # © 2016 Eficent Business and IT Consulting Services S.L. # © 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 openerp import models, api -from openerp.osv import expression +from odoo import _, api, models +from odoo.osv import expression _logger = logging.getLogger(__name__) @@ -19,23 +20,28 @@ def decorate_leaf_to_sql(self, eleaf): table_alias = '"%s"' % (eleaf.generate_alias()) if operator == '%': + sql_operator = '%%' params = [] - if left in model._columns: - formats = model._columns[left]._symbol_set[0] + if left in model._fields: column = '%s.%s' % (table_alias, expression._quote(left)) - query = '(%s %s %s)' % (column, sql_operator, formats) - elif left in expression.MAGIC_COLUMNS: + 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)) + raise ValueError(_( + "Invalid field %r in domain term %r" % (left, leaf) + )) - if left in model._columns: - params = model._columns[left]._symbol_set[1](right) + if left in model._fields: + params = str(right) if isinstance(params, basestring): params = [params] @@ -67,7 +73,8 @@ class IrModel(models.Model): _inherit = 'ir.model' - def _register_hook(self, cr, ids=None): + @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, @@ -82,4 +89,4 @@ def _register_hook(self, cr, ids=None): '__decorated__'): models.BaseModel._generate_order_by = patch_generate_order_by( models.BaseModel._generate_order_by) - return super(IrModel, self)._register_hook(cr) + return super(IrModel, self)._register_hook() diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py index 4c99c165622..56731d1ac88 100644 --- a/base_search_fuzzy/models/trgm_index.py +++ b/base_search_fuzzy/models/trgm_index.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- # © 2016 Eficent Business and IT Consulting Services S.L. # © 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 openerp import SUPERUSER_ID, _, api, exceptions, fields, models +from odoo import _, api, exceptions, fields, models from psycopg2.extensions import AsIs @@ -46,7 +47,7 @@ class TrgmIndex(models.Model): 'GiST for often-updated data."' ) - @api.model + @api.model_cr def _trgm_extension_exists(self): self.env.cr.execute(""" SELECT name, installed_version @@ -64,13 +65,13 @@ def _trgm_extension_exists(self): return 'installed' - @api.model + @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 + @api.model_cr def _install_trgm_extension(self): extension = self._trgm_extension_exists() if extension == 'missing': @@ -88,14 +89,15 @@ def _install_trgm_extension(self): return True return False - def _auto_init(self, cr, context=None): - res = super(TrgmIndex, self)._auto_init(cr, context) - if self._install_trgm_extension(cr, SUPERUSER_ID, context=context): + @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 + @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) diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py index a385348284c..06b809cf272 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -2,8 +2,8 @@ # © 2016 Eficent Business and IT Consulting Services S.L. # © 2016 Serpent Consulting Services Pvt. Ltd. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp.osv import expression -from openerp.tests.common import TransactionCase, at_install, post_install +from odoo.osv import expression +from odoo.tests.common import TransactionCase, at_install, post_install @at_install(False) diff --git a/base_search_fuzzy/views/trgm_index.xml b/base_search_fuzzy/views/trgm_index.xml index 36fb6efcb1b..87fa8f297c6 100644 --- a/base_search_fuzzy/views/trgm_index.xml +++ b/base_search_fuzzy/views/trgm_index.xml @@ -1,5 +1,5 @@ - + @@ -44,4 +44,4 @@ groups="base.group_no_one"/> - + From 55d08a3d5d60aa9f5c4521d67f71d5f6091805cd Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Tue, 2 May 2017 01:01:15 +0200 Subject: [PATCH 07/53] OCA Transbot updated translations from Transifex --- base_search_fuzzy/i18n/de.po | 14 +++- base_search_fuzzy/i18n/es_ES.po | 18 +++-- base_search_fuzzy/i18n/fr.po | 14 +++- base_search_fuzzy/i18n/hr.po | 19 +++-- base_search_fuzzy/i18n/nl_NL.po | 135 ++++++++++++++++++++++++++++++++ base_search_fuzzy/i18n/ro.po | 19 +++-- base_search_fuzzy/i18n/sl.po | 14 +++- 7 files changed, 203 insertions(+), 30 deletions(-) create mode 100644 base_search_fuzzy/i18n/nl_NL.po diff --git a/base_search_fuzzy/i18n/de.po b/base_search_fuzzy/i18n/de.po index 3ed79ae5f01..7f6d244008c 100644 --- a/base_search_fuzzy/i18n/de.po +++ b/base_search_fuzzy/i18n/de.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" @@ -75,6 +75,12 @@ msgstr "Index Name" msgid "Index Type" msgstr "Index Typ" +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#, 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" @@ -110,7 +116,7 @@ msgstr "" "angefügt." #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:124 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" diff --git a/base_search_fuzzy/i18n/es_ES.po b/base_search_fuzzy/i18n/es_ES.po index 4790d67846c..ffef8d34198 100644 --- a/base_search_fuzzy/i18n/es_ES.po +++ b/base_search_fuzzy/i18n/es_ES.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ 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 "" +msgstr "Nombre para mostrar" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id @@ -71,10 +71,16 @@ msgstr "" msgid "Index Type" msgstr "" +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#, 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 "" +msgstr "Última modificación en" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid @@ -101,7 +107,7 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:124 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" diff --git a/base_search_fuzzy/i18n/fr.po b/base_search_fuzzy/i18n/fr.po index 3928955ddd7..6ce0fe21d40 100644 --- a/base_search_fuzzy/i18n/fr.po +++ b/base_search_fuzzy/i18n/fr.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" @@ -75,6 +75,12 @@ msgstr "Nom de l'index" msgid "Index Type" msgstr "Type d'index" +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#, 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" @@ -109,7 +115,7 @@ msgstr "" "nombre est ajouté à la fin du nom d'index." #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:124 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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." diff --git a/base_search_fuzzy/i18n/hr.po b/base_search_fuzzy/i18n/hr.po index dc8627d1a92..e29d0f31526 100644 --- a/base_search_fuzzy/i18n/hr.po +++ b/base_search_fuzzy/i18n/hr.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2017 +# Bole , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0c\n" +"Project-Id-Version: Odoo Server 10.0\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 , 2017\n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: Bole , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +45,7 @@ msgstr "Naziv " #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id msgid "Field" -msgstr "" +msgstr "Polje" #. module: base_search_fuzzy #: selection:trgm.index,index_type:0 @@ -71,6 +72,12 @@ msgstr "" msgid "Index Type" msgstr "" +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#, 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" @@ -101,7 +108,7 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:124 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" diff --git a/base_search_fuzzy/i18n/nl_NL.po b/base_search_fuzzy/i18n/nl_NL.po new file mode 100644 index 00000000000..553c899906b --- /dev/null +++ b/base_search_fuzzy/i18n/nl_NL.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_fuzzy +# +# Translators: +# Peter Hageman , 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 , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\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:40 +#, 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 resused. 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:126 +#, python-format +msgid "The pg_trgm extension does not exists or cannot be installed." +msgstr "" + +#. module: base_search_fuzzy +#: 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 "Trigam Index" +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 +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 "" diff --git a/base_search_fuzzy/i18n/ro.po b/base_search_fuzzy/i18n/ro.po index 44823dfac3a..9baf86e35ae 100644 --- a/base_search_fuzzy/i18n/ro.po +++ b/base_search_fuzzy/i18n/ro.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2017 +# Daniel Schweiger , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0c\n" +"Project-Id-Version: Odoo Server 10.0\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 , 2017\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 , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +45,7 @@ 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 "" +msgstr "Columna" #. module: base_search_fuzzy #: selection:trgm.index,index_type:0 @@ -71,6 +72,12 @@ msgstr "" msgid "Index Type" msgstr "" +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#, 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" @@ -101,7 +108,7 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:124 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" diff --git a/base_search_fuzzy/i18n/sl.po b/base_search_fuzzy/i18n/sl.po index 540aac5a580..0d0d88739e4 100644 --- a/base_search_fuzzy/i18n/sl.po +++ b/base_search_fuzzy/i18n/sl.po @@ -6,10 +6,10 @@ # OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0c\n" +"Project-Id-Version: Odoo Server 10.0\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" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" @@ -75,6 +75,12 @@ msgstr "Naziv indeksa" msgid "Index Type" msgstr "Tip indeksa" +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#, 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" @@ -108,7 +114,7 @@ msgstr "" "indeks nahaja v drugi tabeli, se ob koncu naziva indeksa doda številka." #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:124 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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." From 526ea0683c450b6e4b624f4cfb3890fb88996a60 Mon Sep 17 00:00:00 2001 From: Graeme Gellatly Date: Tue, 12 Sep 2017 11:17:27 +1200 Subject: [PATCH 08/53] Typos --- base_search_fuzzy/__manifest__.py | 2 +- base_search_fuzzy/models/trgm_index.py | 2 +- base_search_fuzzy/views/trgm_index.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base_search_fuzzy/__manifest__.py b/base_search_fuzzy/__manifest__.py index b4dfddc2306..10c47bdc1f5 100644 --- a/base_search_fuzzy/__manifest__.py +++ b/base_search_fuzzy/__manifest__.py @@ -6,7 +6,7 @@ 'name': "Fuzzy Search", 'summary': "Fuzzy search with the PostgreSQL trigram extension", 'category': 'Uncategorized', - 'version': '10.0.1.0.0', + 'version': '10.0.1.1.0', 'website': 'https://odoo-community.org/', 'author': 'bloopark systems GmbH & Co. KG, ' 'Eficent, ' diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py index 56731d1ac88..6feee6de748 100644 --- a/base_search_fuzzy/models/trgm_index.py +++ b/base_search_fuzzy/models/trgm_index.py @@ -31,7 +31,7 @@ class TrgmIndex(models.Model): 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 resused. ' + '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.' ) diff --git a/base_search_fuzzy/views/trgm_index.xml b/base_search_fuzzy/views/trgm_index.xml index 87fa8f297c6..9f4fd2d30d5 100644 --- a/base_search_fuzzy/views/trgm_index.xml +++ b/base_search_fuzzy/views/trgm_index.xml @@ -6,7 +6,7 @@ trgm.index.view.form trgm.index -
+ @@ -22,7 +22,7 @@ trgm.index.view.tree trgm.index - + From 04a296a64d9ec1dd9685e9bb709f6838e21b160d Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 2 Dec 2017 12:26:41 +0100 Subject: [PATCH 09/53] OCA Transbot updated translations from Transifex --- base_search_fuzzy/i18n/de.po | 27 +++++++++------------------ base_search_fuzzy/i18n/fr.po | 20 ++++++-------------- base_search_fuzzy/i18n/it.po | 33 ++++++++++++++++++--------------- base_search_fuzzy/i18n/sl.po | 19 ++++++------------- base_search_fuzzy/i18n/zh_CN.po | 33 +++++++++++++++++---------------- 5 files changed, 56 insertions(+), 76 deletions(-) diff --git a/base_search_fuzzy/i18n/de.po b/base_search_fuzzy/i18n/de.po index 7f6d244008c..2293c12a1a3 100644 --- a/base_search_fuzzy/i18n/de.po +++ b/base_search_fuzzy/i18n/de.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2017-12-01 02:10+0000\n" +"PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" @@ -33,12 +33,12 @@ msgstr "" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid msgid "Created by" -msgstr "Erstellt durch" +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" +msgstr "Erstellt am:" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name @@ -89,7 +89,7 @@ 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 durch" +msgstr "Zuletzt aktualisiert von" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_date @@ -106,14 +106,9 @@ msgstr "Datenmodelle" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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 "" -"Der Index Name wird automatisch im Format feldname_indextyp_idx generiert. " -"Falls der Index bereits existiert und der Index sich in der selben Tabelle " -"befindet, dann wird dieser Index wiederverwendet. Falls der Index in einer " -"anderen Tabelle existiert, dann wird eine Zahl an das Ende des Index Namens " -"angefügt." #. module: base_search_fuzzy #: code:addons/base_search_fuzzy/models/trgm_index.py:126 @@ -122,15 +117,11 @@ 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.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 "Trigam Index" -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 "Trigram Index" diff --git a/base_search_fuzzy/i18n/fr.po b/base_search_fuzzy/i18n/fr.po index 6ce0fe21d40..350a2123ce2 100644 --- a/base_search_fuzzy/i18n/fr.po +++ b/base_search_fuzzy/i18n/fr.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2017-12-01 02:10+0000\n" +"PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" @@ -106,13 +106,9 @@ msgstr "Modèles" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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 "" -"Le nom de l'index est généré automatiquement comme fieldname_indextype_idx." -" Si l'index existe déjà et l'index se trouve dans la même table, alors cet " -"index est réutilisé. Si l'index est situé dans une autre table, alors un " -"nombre est ajouté à la fin du nom d'index." #. module: base_search_fuzzy #: code:addons/base_search_fuzzy/models/trgm_index.py:126 @@ -120,15 +116,11 @@ msgstr "" 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.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 "Trigam Index" -msgstr "Index Trigram" - #. 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" diff --git a/base_search_fuzzy/i18n/it.po b/base_search_fuzzy/i18n/it.po index f77e7a53620..7a295a94d3b 100644 --- a/base_search_fuzzy/i18n/it.po +++ b/base_search_fuzzy/i18n/it.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2017 +# Paolo Valier , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0c\n" +"Project-Id-Version: Odoo Server 10.0\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 , 2017\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 , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +30,12 @@ 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" +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 "Created on" +msgstr "Creato il" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name @@ -71,6 +72,12 @@ msgstr "" msgid "Index Type" msgstr "" +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#, 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" @@ -96,25 +103,21 @@ msgstr "Modelli" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" -#. module: base_search_fuzzy -#: 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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/sl.po b/base_search_fuzzy/i18n/sl.po index 0d0d88739e4..ef51ad480a2 100644 --- a/base_search_fuzzy/i18n/sl.po +++ b/base_search_fuzzy/i18n/sl.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2017-12-01 02:10+0000\n" +"PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" @@ -106,12 +106,9 @@ msgstr "Modeli" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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 "" -"Naziv indeksa samodejno nastane kot fieldname_indextype_idx. Če indeks že " -"obstaja in se nahaja v isti tabeli, se ponovno uporabi isti indeks. Če se " -"indeks nahaja v drugi tabeli, se ob koncu naziva indeksa doda številka." #. module: base_search_fuzzy #: code:addons/base_search_fuzzy/models/trgm_index.py:126 @@ -119,15 +116,11 @@ msgstr "" 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.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 "Trigam Index" -msgstr "Trigram indeks" - #. 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" diff --git a/base_search_fuzzy/i18n/zh_CN.po b/base_search_fuzzy/i18n/zh_CN.po index c05d9fc4ec4..bc1db2ec791 100644 --- a/base_search_fuzzy/i18n/zh_CN.po +++ b/base_search_fuzzy/i18n/zh_CN.po @@ -4,14 +4,13 @@ # # Translators: # OCA Transbot , 2017 -# Jeffery CHEN , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 10.0c\n" +"Project-Id-Version: Odoo Server 10.0\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: Jeffery CHEN , 2017\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 , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +39,7 @@ msgstr "创建时间" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_display_name msgid "Display Name" -msgstr "Display Name" +msgstr "显示名称" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_field_id @@ -72,10 +71,16 @@ msgstr "" msgid "Index Type" msgstr "" +#. module: base_search_fuzzy +#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#, 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" +msgstr "最后修改时间" #. module: base_search_fuzzy #: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_write_uid @@ -97,25 +102,21 @@ msgstr "模型" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" -#. module: base_search_fuzzy -#: 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 "Trigam Index" -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 "" From 6859ffa93b3ca98666d08c4e8c84424172a53dd6 Mon Sep 17 00:00:00 2001 From: cubells Date: Mon, 11 Jun 2018 17:26:25 +0200 Subject: [PATCH 10/53] base_search_fuzzy: Migration to 11.0 --- base_search_fuzzy/README.rst | 83 ++- base_search_fuzzy/__init__.py | 5 +- base_search_fuzzy/__manifest__.py | 7 +- base_search_fuzzy/i18n/base_search_fuzzy.pot | 100 ---- base_search_fuzzy/models/__init__.py | 5 +- base_search_fuzzy/models/ir_model.py | 7 +- base_search_fuzzy/models/trgm_index.py | 5 +- base_search_fuzzy/readme/CONFIGURE.rst | 5 + base_search_fuzzy/readme/CONTRIBUTORS.rst | 5 + base_search_fuzzy/readme/DESCRIPTION.rst | 4 + base_search_fuzzy/readme/INSTALL.rst | 5 + base_search_fuzzy/readme/ROADMAP.rst | 2 + base_search_fuzzy/readme/USAGE.rst | 24 + .../static/description/index.html | 485 ++++++++++++++++++ base_search_fuzzy/tests/__init__.py | 5 +- .../tests/test_query_generation.py | 11 +- base_search_fuzzy/views/trgm_index.xml | 56 +- 17 files changed, 631 insertions(+), 183 deletions(-) delete mode 100644 base_search_fuzzy/i18n/base_search_fuzzy.pot create mode 100644 base_search_fuzzy/readme/CONFIGURE.rst create mode 100644 base_search_fuzzy/readme/CONTRIBUTORS.rst create mode 100644 base_search_fuzzy/readme/DESCRIPTION.rst create mode 100644 base_search_fuzzy/readme/INSTALL.rst create mode 100644 base_search_fuzzy/readme/ROADMAP.rst create mode 100644 base_search_fuzzy/readme/USAGE.rst create mode 100644 base_search_fuzzy/static/description/index.html diff --git a/base_search_fuzzy/README.rst b/base_search_fuzzy/README.rst index baebdf45c61..bcc1a17e6da 100644 --- a/base_search_fuzzy/README.rst +++ b/base_search_fuzzy/README.rst @@ -1,16 +1,39 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 +============ +Fuzzy Search +============ -========================= -PostgreSQL Trigram 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/11.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-11-0/server-tools-11-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/11.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 possibilty to perfrom the fuzzy search for external addons. +**Table of contents** + +.. contents:: + :local: Installation ============ @@ -21,7 +44,6 @@ Installation user the ``SUPERUSER`` right (this allows the odoo module to install the extension to the database). - Configuration ============= @@ -31,7 +53,6 @@ If the odoo module is installed: `Settings -> Database Structure -> Trigram Index`. The index name will automatically created for new entries. - Usage ===== @@ -40,12 +61,12 @@ Usage ``self.env['res.partner'].search([('name', '%', 'Jon Miller)])`` -#. In this example the function will return positive result for `John Miller` or - `John Mill`. +#. 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 statment: +#. 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 statment: ``self.env.cr.execute("SELECT set_limit(0.2);")`` @@ -64,44 +85,50 @@ Known issues / Roadmap ====================== * Modify the general search parts (e.g. in tree view or many2one fields) -* add better `order by` handling - +* Add better `order by` handling Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smash it by providing detailed and welcomed feedback. +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* bloopark systems GmbH & Co. KG +* Eficent +* Serpent CS Contributors ------------- +~~~~~~~~~~~~ * Christoph Giesel * Jordi Ballester * Serpent Consulting Services Pvt. Ltd. * Dave Lasley +* Vicent Cubells + +Maintainers +~~~~~~~~~~~ -Maintainer ----------- +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org -This module is maintained by the OCA. - OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -To contribute to this module, please visit https://odoo-community.org. +This module is part of the `OCA/server-tools `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/base_search_fuzzy/__init__.py b/base_search_fuzzy/__init__.py index 4704284dfef..26efcff52a8 100644 --- a/base_search_fuzzy/__init__.py +++ b/base_search_fuzzy/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- -# © 2016 Eficent Business and IT Consulting Services S.L. -# © 2016 Serpent Consulting Services Pvt. Ltd. +# 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 diff --git a/base_search_fuzzy/__manifest__.py b/base_search_fuzzy/__manifest__.py index 10c47bdc1f5..0c935541db7 100644 --- a/base_search_fuzzy/__manifest__.py +++ b/base_search_fuzzy/__manifest__.py @@ -1,12 +1,11 @@ -# -*- coding: utf-8 -*- -# © 2016 Eficent Business and IT Consulting Services S.L. -# © 2016 Serpent Consulting Services Pvt. Ltd. +# 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': '10.0.1.1.0', + 'version': '11.0.1.0.0', 'website': 'https://odoo-community.org/', 'author': 'bloopark systems GmbH & Co. KG, ' 'Eficent, ' diff --git a/base_search_fuzzy/i18n/base_search_fuzzy.pot b/base_search_fuzzy/i18n/base_search_fuzzy.pot deleted file mode 100644 index 9c8e3ad8a64..00000000000 --- a/base_search_fuzzy/i18n/base_search_fuzzy.pot +++ /dev/null @@ -1,100 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * base_search_fuzzy -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0alpha1\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-24 08:47+0000\n" -"PO-Revision-Date: 2016-06-24 08:47+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: base_search_fuzzy -#: help:trgm.index,index_type:0 -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 -#: field:trgm.index,create_uid:0 -msgid "Created by" -msgstr "" - -#. module: base_search_fuzzy -#: field:trgm.index,create_date:0 -msgid "Created on" -msgstr "" - -#. module: base_search_fuzzy -#: field:trgm.index,field_id:0 -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 -#: field:trgm.index,id:0 -msgid "ID" -msgstr "" - -#. module: base_search_fuzzy -#: field:trgm.index,index_name:0 -msgid "Index Name" -msgstr "" - -#. module: base_search_fuzzy -#: field:trgm.index,index_type:0 -msgid "Index Type" -msgstr "" - -#. module: base_search_fuzzy -#: field:trgm.index,write_uid:0 -msgid "Last Updated by" -msgstr "" - -#. module: base_search_fuzzy -#: field:trgm.index,write_date:0 -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 -#: help:trgm.index,index_name:0 -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 resused. 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 -#: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action -#: model:ir.ui.menu,name:base_search_fuzzy.trgm_index_menu -#: view:trgm.index:base_search_fuzzy.trgm_index_view_form -#: view:trgm.index:base_search_fuzzy.trgm_index_view_tree -msgid "Trigram Index" -msgstr "" - -#. module: base_search_fuzzy -#: help:trgm.index,field_id:0 -msgid "You can either select a field of type \"text\" or \"char\"." -msgstr "" - -#. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:123 -#, python-format -msgid "The pg_trgm extension does not exists or cannot be installed." -msgstr "" diff --git a/base_search_fuzzy/models/__init__.py b/base_search_fuzzy/models/__init__.py index c64b6641d8c..1b706c12bac 100644 --- a/base_search_fuzzy/models/__init__.py +++ b/base_search_fuzzy/models/__init__.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- -# © 2016 Eficent Business and IT Consulting Services S.L. -# © 2016 Serpent Consulting Services Pvt. Ltd. +# 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 diff --git a/base_search_fuzzy/models/ir_model.py b/base_search_fuzzy/models/ir_model.py index 19091d19fcb..c8995828419 100644 --- a/base_search_fuzzy/models/ir_model.py +++ b/base_search_fuzzy/models/ir_model.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- -# © 2016 Eficent Business and IT Consulting Services S.L. -# © 2016 Serpent Consulting Services Pvt. Ltd. +# 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 @@ -43,7 +42,7 @@ def decorate_leaf_to_sql(self, eleaf): if left in model._fields: params = str(right) - if isinstance(params, basestring): + if isinstance(params, str): params = [params] return query, params elif operator == 'inselect': diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py index 6feee6de748..cb31a3dc5cb 100644 --- a/base_search_fuzzy/models/trgm_index.py +++ b/base_search_fuzzy/models/trgm_index.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- -# © 2016 Eficent Business and IT Consulting Services S.L. -# © 2016 Serpent Consulting Services Pvt. Ltd. +# 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 diff --git a/base_search_fuzzy/readme/CONFIGURE.rst b/base_search_fuzzy/readme/CONFIGURE.rst new file mode 100644 index 00000000000..7429b3637dd --- /dev/null +++ b/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. diff --git a/base_search_fuzzy/readme/CONTRIBUTORS.rst b/base_search_fuzzy/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..1a545b521ee --- /dev/null +++ b/base_search_fuzzy/readme/CONTRIBUTORS.rst @@ -0,0 +1,5 @@ +* Christoph Giesel +* Jordi Ballester +* Serpent Consulting Services Pvt. Ltd. +* Dave Lasley +* Vicent Cubells diff --git a/base_search_fuzzy/readme/DESCRIPTION.rst b/base_search_fuzzy/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..c5fa740b1b7 --- /dev/null +++ b/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 possibilty to perfrom the fuzzy search for external addons. diff --git a/base_search_fuzzy/readme/INSTALL.rst b/base_search_fuzzy/readme/INSTALL.rst new file mode 100644 index 00000000000..f7e37120fbd --- /dev/null +++ b/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). diff --git a/base_search_fuzzy/readme/ROADMAP.rst b/base_search_fuzzy/readme/ROADMAP.rst new file mode 100644 index 00000000000..7955fa57b1e --- /dev/null +++ b/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 diff --git a/base_search_fuzzy/readme/USAGE.rst b/base_search_fuzzy/readme/USAGE.rst new file mode 100644 index 00000000000..9844367a8d9 --- /dev/null +++ b/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 statment: + + ``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 `_ module. diff --git a/base_search_fuzzy/static/description/index.html b/base_search_fuzzy/static/description/index.html new file mode 100644 index 00000000000..040afc26ad2 --- /dev/null +++ b/base_search_fuzzy/static/description/index.html @@ -0,0 +1,485 @@ + + + + + + +Fuzzy Search + + + + + + diff --git a/base_search_fuzzy/tests/__init__.py b/base_search_fuzzy/tests/__init__.py index 3363cb44c77..839582041b0 100644 --- a/base_search_fuzzy/tests/__init__.py +++ b/base_search_fuzzy/tests/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- -# © 2016 Eficent Business and IT Consulting Services S.L. -# © 2016 Serpent Consulting Services Pvt. Ltd. +# 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 diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py index 06b809cf272..024ce165381 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- -# © 2016 Eficent Business and IT Consulting Services S.L. -# © 2016 Serpent Consulting Services Pvt. Ltd. +# 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 @@ -37,8 +36,8 @@ def test_fuzzy_where_generation(self): where_clause_params) self.assertEqual( complete_where, - 'SELECT FROM "res_partner" WHERE ' - '("res_partner"."name" % \'test\')') + 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.""" @@ -58,7 +57,7 @@ def test_fuzzy_where_generation_translatable(self): where_clause_params) self.assertIn( - """SELECT id FROM temp_irt_current WHERE name % 'Goschaeftlic'""", + b"""SELECT id FROM temp_irt_current WHERE name % 'Goschaeftlic'""", complete_where) def test_fuzzy_order_generation(self): diff --git a/base_search_fuzzy/views/trgm_index.xml b/base_search_fuzzy/views/trgm_index.xml index 9f4fd2d30d5..e7efa51eb3e 100644 --- a/base_search_fuzzy/views/trgm_index.xml +++ b/base_search_fuzzy/views/trgm_index.xml @@ -1,41 +1,40 @@ - - trgm.index.view.form - trgm.index - - - - - - - - - - - + trgm.index.view.form + trgm.index + +
+ + + + + + + +
+
- trgm.index.view.tree - trgm.index - - - - - - - + trgm.index.view.tree + trgm.index + + + + + + + - Trigram Index - trgm.index - form - tree,form - ir.actions.act_window + Trigram Index + trgm.index + form + tree,form + ir.actions.act_window -
From e22486bb5385352dc8d4e48be91c69b220ea5805 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sun, 17 Jun 2018 20:50:47 +0000 Subject: [PATCH 11/53] Update base_search_fuzzy.pot --- base_search_fuzzy/i18n/am.po | 28 +++-- base_search_fuzzy/i18n/ar.po | 31 ++--- base_search_fuzzy/i18n/base_search_fuzzy.pot | 120 +++++++++++++++++++ base_search_fuzzy/i18n/bg.po | 28 +++-- base_search_fuzzy/i18n/bs.po | 31 ++--- base_search_fuzzy/i18n/ca.po | 28 +++-- base_search_fuzzy/i18n/cs.po | 28 +++-- base_search_fuzzy/i18n/da.po | 28 +++-- base_search_fuzzy/i18n/de.po | 16 +-- base_search_fuzzy/i18n/el_GR.po | 31 ++--- base_search_fuzzy/i18n/en_GB.po | 31 ++--- base_search_fuzzy/i18n/es.po | 28 +++-- base_search_fuzzy/i18n/es_AR.po | 31 ++--- base_search_fuzzy/i18n/es_CL.po | 31 ++--- base_search_fuzzy/i18n/es_CO.po | 31 ++--- base_search_fuzzy/i18n/es_CR.po | 31 ++--- base_search_fuzzy/i18n/es_DO.po | 31 ++--- base_search_fuzzy/i18n/es_EC.po | 31 ++--- base_search_fuzzy/i18n/es_ES.po | 27 ++--- base_search_fuzzy/i18n/es_MX.po | 31 ++--- base_search_fuzzy/i18n/es_PE.po | 31 ++--- base_search_fuzzy/i18n/es_PY.po | 31 ++--- base_search_fuzzy/i18n/es_VE.po | 31 ++--- base_search_fuzzy/i18n/et.po | 28 +++-- base_search_fuzzy/i18n/eu.po | 28 +++-- base_search_fuzzy/i18n/fa.po | 28 +++-- base_search_fuzzy/i18n/fi.po | 28 +++-- base_search_fuzzy/i18n/fr.po | 24 ++-- base_search_fuzzy/i18n/fr_CA.po | 31 ++--- base_search_fuzzy/i18n/fr_CH.po | 31 ++--- base_search_fuzzy/i18n/gl.po | 28 +++-- base_search_fuzzy/i18n/gl_ES.po | 31 ++--- base_search_fuzzy/i18n/he.po | 28 +++-- base_search_fuzzy/i18n/hr.po | 27 ++--- base_search_fuzzy/i18n/hr_HR.po | 34 +++--- base_search_fuzzy/i18n/hu.po | 28 +++-- base_search_fuzzy/i18n/id.po | 28 +++-- base_search_fuzzy/i18n/it.po | 16 +-- base_search_fuzzy/i18n/ja.po | 28 +++-- base_search_fuzzy/i18n/ko.po | 28 +++-- base_search_fuzzy/i18n/lt.po | 31 ++--- base_search_fuzzy/i18n/lt_LT.po | 34 +++--- base_search_fuzzy/i18n/lv.po | 31 ++--- base_search_fuzzy/i18n/mk.po | 28 +++-- base_search_fuzzy/i18n/mn.po | 28 +++-- base_search_fuzzy/i18n/nb.po | 31 ++--- base_search_fuzzy/i18n/nb_NO.po | 31 ++--- base_search_fuzzy/i18n/nl.po | 28 +++-- base_search_fuzzy/i18n/nl_BE.po | 31 ++--- base_search_fuzzy/i18n/nl_NL.po | 27 ++--- base_search_fuzzy/i18n/pl.po | 31 ++--- base_search_fuzzy/i18n/pt.po | 28 +++-- base_search_fuzzy/i18n/pt_BR.po | 31 ++--- base_search_fuzzy/i18n/pt_PT.po | 31 ++--- base_search_fuzzy/i18n/ro.po | 27 ++--- base_search_fuzzy/i18n/ru.po | 32 ++--- base_search_fuzzy/i18n/sk.po | 28 +++-- base_search_fuzzy/i18n/sl.po | 23 ++-- base_search_fuzzy/i18n/sr.po | 31 ++--- base_search_fuzzy/i18n/sr@latin.po | 34 +++--- base_search_fuzzy/i18n/sv.po | 28 +++-- base_search_fuzzy/i18n/th.po | 28 +++-- base_search_fuzzy/i18n/tr.po | 28 +++-- base_search_fuzzy/i18n/tr_TR.po | 31 ++--- base_search_fuzzy/i18n/uk.po | 31 ++--- base_search_fuzzy/i18n/vi.po | 28 +++-- base_search_fuzzy/i18n/vi_VN.po | 31 ++--- base_search_fuzzy/i18n/zh_CN.po | 19 +-- base_search_fuzzy/i18n/zh_TW.po | 31 ++--- 69 files changed, 1178 insertions(+), 912 deletions(-) create mode 100644 base_search_fuzzy/i18n/base_search_fuzzy.pot diff --git a/base_search_fuzzy/i18n/am.po b/base_search_fuzzy/i18n/am.po index 384547e69ae..9798a39c416 100644 --- a/base_search_fuzzy/i18n/am.po +++ b/base_search_fuzzy/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: am\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/ar.po b/base_search_fuzzy/i18n/ar.po index da024db6f95..132a5087a25 100644 --- a/base_search_fuzzy/i18n/ar.po +++ b/base_search_fuzzy/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 # SaFi J. , 2017 @@ -13,18 +13,19 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: SaFi J. , 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" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"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.\"" +"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 @@ -72,6 +73,12 @@ msgstr "" 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" @@ -97,25 +104,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/base_search_fuzzy.pot b/base_search_fuzzy/i18n/base_search_fuzzy.pot new file mode 100644 index 00000000000..cd0d3bdca99 --- /dev/null +++ b/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 "" + diff --git a/base_search_fuzzy/i18n/bg.po b/base_search_fuzzy/i18n/bg.po index 1c7376bb461..da7acf3b445 100644 --- a/base_search_fuzzy/i18n/bg.po +++ b/base_search_fuzzy/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: bg\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/bs.po b/base_search_fuzzy/i18n/bs.po index 4cbc335cd50..b2ff9032cfa 100644 --- a/base_search_fuzzy/i18n/bs.po +++ b/base_search_fuzzy/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,19 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/ca.po b/base_search_fuzzy/i18n/ca.po index d7149aaead8..f50f4853cb2 100644 --- a/base_search_fuzzy/i18n/ca.po +++ b/base_search_fuzzy/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 # Carles Antoli , 2017 @@ -13,18 +13,18 @@ msgstr "" "PO-Revision-Date: 2017-01-17 13:11+0000\n" "Last-Translator: Carles Antoli , 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" -"Language: ca\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.\"" +"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 @@ -72,6 +72,12 @@ msgstr "" 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" @@ -97,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/cs.po b/base_search_fuzzy/i18n/cs.po index 3f34506f4c1..4b9ce864c8d 100644 --- a/base_search_fuzzy/i18n/cs.po +++ b/base_search_fuzzy/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: cs\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/da.po b/base_search_fuzzy/i18n/da.po index 64ee4ca1530..a7b00dec56a 100644 --- a/base_search_fuzzy/i18n/da.po +++ b/base_search_fuzzy/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: da\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/de.po b/base_search_fuzzy/i18n/de.po index 2293c12a1a3..c205d5fac30 100644 --- a/base_search_fuzzy/i18n/de.po +++ b/base_search_fuzzy/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: de\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.\"" +"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 " @@ -76,7 +76,7 @@ msgid "Index Type" msgstr "Index Typ" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -106,12 +106,12 @@ msgstr "Datenmodelle" 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." +"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:126 +#: 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 "" diff --git a/base_search_fuzzy/i18n/el_GR.po b/base_search_fuzzy/i18n/el_GR.po index be762f620c4..bab7127349f 100644 --- a/base_search_fuzzy/i18n/el_GR.po +++ b/base_search_fuzzy/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\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" -"Language: el_GR\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/en_GB.po b/base_search_fuzzy/i18n/en_GB.po index d34c105b342..4cca714050c 100644 --- a/base_search_fuzzy/i18n/en_GB.po +++ b/base_search_fuzzy/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\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" -"Language: en_GB\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es.po b/base_search_fuzzy/i18n/es.po index 14f3977704e..bf7db506a43 100644 --- a/base_search_fuzzy/i18n/es.po +++ b/base_search_fuzzy/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: es\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "Modelos" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_AR.po b/base_search_fuzzy/i18n/es_AR.po index 2baf38e622e..bfa0d7a7713 100644 --- a/base_search_fuzzy/i18n/es_AR.po +++ b/base_search_fuzzy/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\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" -"Language: es_AR\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_CL.po b/base_search_fuzzy/i18n/es_CL.po index 4b61cb55994..8816911d866 100644 --- a/base_search_fuzzy/i18n/es_CL.po +++ b/base_search_fuzzy/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\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" -"Language: es_CL\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_CO.po b/base_search_fuzzy/i18n/es_CO.po index 126e69e1d5b..038f847a81d 100644 --- a/base_search_fuzzy/i18n/es_CO.po +++ b/base_search_fuzzy/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\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" -"Language: es_CO\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_CR.po b/base_search_fuzzy/i18n/es_CR.po index ec629c032c6..a5ea2fdba6c 100644 --- a/base_search_fuzzy/i18n/es_CR.po +++ b/base_search_fuzzy/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\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" -"Language: es_CR\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_DO.po b/base_search_fuzzy/i18n/es_DO.po index 5347a074ee1..3d0648f85b8 100644 --- a/base_search_fuzzy/i18n/es_DO.po +++ b/base_search_fuzzy/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\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" -"Language: es_DO\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_EC.po b/base_search_fuzzy/i18n/es_EC.po index 1d6e156624f..f67fd2d2370 100644 --- a/base_search_fuzzy/i18n/es_EC.po +++ b/base_search_fuzzy/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\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" -"Language: es_EC\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_ES.po b/base_search_fuzzy/i18n/es_ES.po index ffef8d34198..95d621b6568 100644 --- a/base_search_fuzzy/i18n/es_ES.po +++ b/base_search_fuzzy/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-05-01 10:38+0000\n" "PO-Revision-Date: 2017-05-01 10:38+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\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" -"Language: es_ES\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.\"" +"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 @@ -72,7 +73,7 @@ msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -102,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:126 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_MX.po b/base_search_fuzzy/i18n/es_MX.po index 1e69a64f89d..a981d8413a7 100644 --- a/base_search_fuzzy/i18n/es_MX.po +++ b/base_search_fuzzy/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\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" -"Language: es_MX\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_PE.po b/base_search_fuzzy/i18n/es_PE.po index 7fd24a2b66f..82223d51995 100644 --- a/base_search_fuzzy/i18n/es_PE.po +++ b/base_search_fuzzy/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\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" -"Language: es_PE\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_PY.po b/base_search_fuzzy/i18n/es_PY.po index c503c61016f..737e0812a3c 100644 --- a/base_search_fuzzy/i18n/es_PY.po +++ b/base_search_fuzzy/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\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" -"Language: es_PY\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/es_VE.po b/base_search_fuzzy/i18n/es_VE.po index bccaf68d0f9..fe2efe69916 100644 --- a/base_search_fuzzy/i18n/es_VE.po +++ b/base_search_fuzzy/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\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" -"Language: es_VE\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/et.po b/base_search_fuzzy/i18n/et.po index e5a66f1a496..7e6d381213f 100644 --- a/base_search_fuzzy/i18n/et.po +++ b/base_search_fuzzy/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: et\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/eu.po b/base_search_fuzzy/i18n/eu.po index d4cd7e93ae4..d840af5ec77 100644 --- a/base_search_fuzzy/i18n/eu.po +++ b/base_search_fuzzy/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: eu\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/fa.po b/base_search_fuzzy/i18n/fa.po index c9d1dd60abc..29e4de860d0 100644 --- a/base_search_fuzzy/i18n/fa.po +++ b/base_search_fuzzy/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: fa\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/fi.po b/base_search_fuzzy/i18n/fi.po index c6e20a8747d..a39e490a868 100644 --- a/base_search_fuzzy/i18n/fi.po +++ b/base_search_fuzzy/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 # Jarmo Kortetjärvi , 2017 @@ -13,18 +13,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: Jarmo Kortetjärvi , 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" -"Language: fi\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.\"" +"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 @@ -72,6 +72,12 @@ msgstr "" 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" @@ -97,25 +103,21 @@ msgstr "Mallit" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/fr.po b/base_search_fuzzy/i18n/fr.po index 350a2123ce2..1ba4b8ae3a6 100644 --- a/base_search_fuzzy/i18n/fr.po +++ b/base_search_fuzzy/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,23 +12,23 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: fr\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.\"" +"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.\"" +"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 @@ -76,7 +76,7 @@ msgid "Index Type" msgstr "Type d'index" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -106,12 +106,12 @@ msgstr "Modèles" 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." +"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:126 +#: 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." diff --git a/base_search_fuzzy/i18n/fr_CA.po b/base_search_fuzzy/i18n/fr_CA.po index 8b91afbdb81..673035a2003 100644 --- a/base_search_fuzzy/i18n/fr_CA.po +++ b/base_search_fuzzy/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\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" -"Language: fr_CA\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/fr_CH.po b/base_search_fuzzy/i18n/fr_CH.po index 7069386fa4c..62c826dc44a 100644 --- a/base_search_fuzzy/i18n/fr_CH.po +++ b/base_search_fuzzy/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\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" -"Language: fr_CH\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/gl.po b/base_search_fuzzy/i18n/gl.po index 39ba8ac2198..cbeec3f1cdf 100644 --- a/base_search_fuzzy/i18n/gl.po +++ b/base_search_fuzzy/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: gl\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/gl_ES.po b/base_search_fuzzy/i18n/gl_ES.po index 1c199a9d903..b60854beef8 100644 --- a/base_search_fuzzy/i18n/gl_ES.po +++ b/base_search_fuzzy/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\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" -"Language: gl_ES\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/he.po b/base_search_fuzzy/i18n/he.po index 4f5780a2a8f..3cc300cb93b 100644 --- a/base_search_fuzzy/i18n/he.po +++ b/base_search_fuzzy/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: he\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/hr.po b/base_search_fuzzy/i18n/hr.po index e29d0f31526..1cef50c39e1 100644 --- a/base_search_fuzzy/i18n/hr.po +++ b/base_search_fuzzy/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 # Bole , 2017 @@ -13,18 +13,19 @@ msgstr "" "PO-Revision-Date: 2017-05-01 10:38+0000\n" "Last-Translator: Bole , 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" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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.\"" +"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 @@ -73,7 +74,7 @@ msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -103,25 +104,21 @@ msgstr "Modeli" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:126 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/hr_HR.po b/base_search_fuzzy/i18n/hr_HR.po index aef7d4b0c29..73ce3bd378f 100644 --- a/base_search_fuzzy/i18n/hr_HR.po +++ b/base_search_fuzzy/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,21 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\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" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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.\"" +"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 @@ -71,6 +73,12 @@ msgstr "" 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" @@ -96,25 +104,21 @@ msgstr "Modeli" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/hu.po b/base_search_fuzzy/i18n/hu.po index 1cf5c7a81a0..929042e5a92 100644 --- a/base_search_fuzzy/i18n/hu.po +++ b/base_search_fuzzy/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: hu\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/id.po b/base_search_fuzzy/i18n/id.po index b49665b4e28..35f428b6f58 100644 --- a/base_search_fuzzy/i18n/id.po +++ b/base_search_fuzzy/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: id\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/it.po b/base_search_fuzzy/i18n/it.po index 7a295a94d3b..70d26e02f40 100644 --- a/base_search_fuzzy/i18n/it.po +++ b/base_search_fuzzy/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 # Paolo Valier , 2017 @@ -13,18 +13,18 @@ msgstr "" "PO-Revision-Date: 2018-01-06 02:24+0000\n" "Last-Translator: Paolo Valier , 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" -"Language: it\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.\"" +"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 @@ -73,7 +73,7 @@ msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -103,12 +103,12 @@ msgstr "Modelli" 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." +"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:126 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ja.po b/base_search_fuzzy/i18n/ja.po index 1466030ef92..ba398c242f2 100644 --- a/base_search_fuzzy/i18n/ja.po +++ b/base_search_fuzzy/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: ja\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/ko.po b/base_search_fuzzy/i18n/ko.po index e36301c8424..622a7b9361b 100644 --- a/base_search_fuzzy/i18n/ko.po +++ b/base_search_fuzzy/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: ko\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/lt.po b/base_search_fuzzy/i18n/lt.po index 9ca907f4047..f52361e7686 100644 --- a/base_search_fuzzy/i18n/lt.po +++ b/base_search_fuzzy/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,19 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/lt_LT.po b/base_search_fuzzy/i18n/lt_LT.po index 002570db5ee..02a03934290 100644 --- a/base_search_fuzzy/i18n/lt_LT.po +++ b/base_search_fuzzy/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,21 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\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" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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.\"" +"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 @@ -71,6 +73,12 @@ msgstr "" 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" @@ -96,25 +104,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/lv.po b/base_search_fuzzy/i18n/lv.po index c128584fc23..163fc12ed74 100644 --- a/base_search_fuzzy/i18n/lv.po +++ b/base_search_fuzzy/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,19 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/mk.po b/base_search_fuzzy/i18n/mk.po index 456140c3c13..bc3432b1665 100644 --- a/base_search_fuzzy/i18n/mk.po +++ b/base_search_fuzzy/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: mk\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/mn.po b/base_search_fuzzy/i18n/mn.po index ea5d546301d..b603d3907df 100644 --- a/base_search_fuzzy/i18n/mn.po +++ b/base_search_fuzzy/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: mn\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/nb.po b/base_search_fuzzy/i18n/nb.po index 5dff7475bbe..e45d08bac46 100644 --- a/base_search_fuzzy/i18n/nb.po +++ b/base_search_fuzzy/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\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" -"Language: nb\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/nb_NO.po b/base_search_fuzzy/i18n/nb_NO.po index aa0da0707a1..6061a41f0a1 100644 --- a/base_search_fuzzy/i18n/nb_NO.po +++ b/base_search_fuzzy/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 # Imre Kristoffer Eilertsen , 2017 @@ -12,19 +12,20 @@ msgstr "" "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 , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\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" -"Language: nb_NO\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.\"" +"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 @@ -72,6 +73,12 @@ msgstr "" 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" @@ -97,25 +104,21 @@ msgstr "Modeller" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/nl.po b/base_search_fuzzy/i18n/nl.po index a19306105a0..389f9d0095b 100644 --- a/base_search_fuzzy/i18n/nl.po +++ b/base_search_fuzzy/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: nl\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/nl_BE.po b/base_search_fuzzy/i18n/nl_BE.po index d6e95152944..b3b5650edf8 100644 --- a/base_search_fuzzy/i18n/nl_BE.po +++ b/base_search_fuzzy/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\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" -"Language: nl_BE\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/nl_NL.po b/base_search_fuzzy/i18n/nl_NL.po index 553c899906b..2e0b711e155 100644 --- a/base_search_fuzzy/i18n/nl_NL.po +++ b/base_search_fuzzy/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-06-30 12:21+0000\n" "PO-Revision-Date: 2017-06-30 12:21+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\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" -"Language: nl_NL\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.\"" +"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 @@ -72,7 +73,7 @@ msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -102,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:126 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/pl.po b/base_search_fuzzy/i18n/pl.po index e19f6bd6e4f..0b0992ac065 100644 --- a/base_search_fuzzy/i18n/pl.po +++ b/base_search_fuzzy/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,19 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/pt.po b/base_search_fuzzy/i18n/pt.po index 0d59e3d4859..8d5d9ab0294 100644 --- a/base_search_fuzzy/i18n/pt.po +++ b/base_search_fuzzy/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: pt\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/pt_BR.po b/base_search_fuzzy/i18n/pt_BR.po index 62cfe2168cb..f92f58dea41 100644 --- a/base_search_fuzzy/i18n/pt_BR.po +++ b/base_search_fuzzy/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\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" -"Language: pt_BR\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "Modelos" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/pt_PT.po b/base_search_fuzzy/i18n/pt_PT.po index 3a5b4928644..05347160780 100644 --- a/base_search_fuzzy/i18n/pt_PT.po +++ b/base_search_fuzzy/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\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" -"Language: pt_PT\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/ro.po b/base_search_fuzzy/i18n/ro.po index 9baf86e35ae..1461d93017b 100644 --- a/base_search_fuzzy/i18n/ro.po +++ b/base_search_fuzzy/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 # Daniel Schweiger , 2017 @@ -13,18 +13,19 @@ msgstr "" "PO-Revision-Date: 2017-06-22 01:11+0000\n" "Last-Translator: Daniel Schweiger , 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" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\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.\"" +"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 @@ -73,7 +74,7 @@ msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -103,25 +104,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:126 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/ru.po b/base_search_fuzzy/i18n/ru.po index 063fc7c21f0..9cb06dca66a 100644 --- a/base_search_fuzzy/i18n/ru.po +++ b/base_search_fuzzy/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,20 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"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.\"" +"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 @@ -71,6 +73,12 @@ msgstr "" 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" @@ -96,25 +104,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/sk.po b/base_search_fuzzy/i18n/sk.po index 45765ee17dc..ab2c9d110ce 100644 --- a/base_search_fuzzy/i18n/sk.po +++ b/base_search_fuzzy/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: sk\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/sl.po b/base_search_fuzzy/i18n/sl.po index ef51ad480a2..243fc7f9950 100644 --- a/base_search_fuzzy/i18n/sl.po +++ b/base_search_fuzzy/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,22 +12,23 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"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.\"" +"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 " +"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 @@ -76,7 +77,7 @@ msgid "Index Type" msgstr "Tip indeksa" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -106,12 +107,12 @@ msgstr "Modeli" 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." +"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:126 +#: 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." diff --git a/base_search_fuzzy/i18n/sr.po b/base_search_fuzzy/i18n/sr.po index 447be321392..1d5419e07ac 100644 --- a/base_search_fuzzy/i18n/sr.po +++ b/base_search_fuzzy/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,19 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: sr\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" +"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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/sr@latin.po b/base_search_fuzzy/i18n/sr@latin.po index bad26ee29dd..6c03d375c9e 100644 --- a/base_search_fuzzy/i18n/sr@latin.po +++ b/base_search_fuzzy/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,21 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\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" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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.\"" +"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 @@ -71,6 +73,12 @@ msgstr "" 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" @@ -96,25 +104,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/sv.po b/base_search_fuzzy/i18n/sv.po index 9811ebf0312..0b107733984 100644 --- a/base_search_fuzzy/i18n/sv.po +++ b/base_search_fuzzy/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: sv\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/th.po b/base_search_fuzzy/i18n/th.po index 43dbb827989..d4ee0e9542e 100644 --- a/base_search_fuzzy/i18n/th.po +++ b/base_search_fuzzy/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: th\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/tr.po b/base_search_fuzzy/i18n/tr.po index a3a289d715d..9433b44a9f8 100644 --- a/base_search_fuzzy/i18n/tr.po +++ b/base_search_fuzzy/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: tr\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "Modeller" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/tr_TR.po b/base_search_fuzzy/i18n/tr_TR.po index e39c4642c30..878efc59959 100644 --- a/base_search_fuzzy/i18n/tr_TR.po +++ b/base_search_fuzzy/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 # Ozge Altinisik , 2017 @@ -12,19 +12,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: Ozge Altinisik , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\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" -"Language: tr_TR\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.\"" +"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 @@ -72,6 +73,12 @@ msgstr "" 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" @@ -97,25 +104,21 @@ msgstr "Tipler" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/uk.po b/base_search_fuzzy/i18n/uk.po index 7cf3936508a..351baa1687c 100644 --- a/base_search_fuzzy/i18n/uk.po +++ b/base_search_fuzzy/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,19 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: uk\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" +"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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/vi.po b/base_search_fuzzy/i18n/vi.po index 52e07345822..9cefbdc57e9 100644 --- a/base_search_fuzzy/i18n/vi.po +++ b/base_search_fuzzy/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: vi\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.\"" +"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 @@ -71,6 +71,12 @@ msgstr "" 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" @@ -96,25 +102,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/vi_VN.po b/base_search_fuzzy/i18n/vi_VN.po index 64ce2fe7a3b..5694f0dbd98 100644 --- a/base_search_fuzzy/i18n/vi_VN.po +++ b/base_search_fuzzy/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\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" -"Language: vi_VN\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" diff --git a/base_search_fuzzy/i18n/zh_CN.po b/base_search_fuzzy/i18n/zh_CN.po index bc1db2ec791..5fc90620a42 100644 --- a/base_search_fuzzy/i18n/zh_CN.po +++ b/base_search_fuzzy/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:10+0000\n" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\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" -"Language: zh_CN\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.\"" +"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 @@ -72,7 +73,7 @@ msgid "Index Type" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/ir_model.py:40 +#: code:addons/base_search_fuzzy/models/ir_model.py:39 #, python-format msgid "Invalid field %r in domain term %r" msgstr "" @@ -102,12 +103,12 @@ msgstr "模型" 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." +"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:126 +#: 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 "" diff --git a/base_search_fuzzy/i18n/zh_TW.po b/base_search_fuzzy/i18n/zh_TW.po index f4f54e5230e..3fa13fbcb37 100644 --- a/base_search_fuzzy/i18n/zh_TW.po +++ b/base_search_fuzzy/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_fuzzy -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,19 +11,20 @@ msgstr "" "POT-Creation-Date: 2017-01-14 04:21+0000\n" "PO-Revision-Date: 2017-01-14 04:21+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\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" -"Language: zh_TW\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.\"" +"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 @@ -71,6 +72,12 @@ msgstr "" 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" @@ -96,25 +103,21 @@ msgstr "" 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 resused. If the index is located in another table then a " -"number is added at the end of the index name." +"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:124 +#: 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.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 "Trigam Index" -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 "" From b725b70911b0c40a6ef48c30dc17d6d7a0320703 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 10 Jan 2019 03:03:53 -0500 Subject: [PATCH 12/53] base_search_fuzzy: Migration to 12.0 --- base_search_fuzzy/README.rst | 20 +++++++++++-------- base_search_fuzzy/__manifest__.py | 4 ++-- base_search_fuzzy/models/trgm_index.py | 1 + base_search_fuzzy/readme/CONTRIBUTORS.rst | 6 +++++- base_search_fuzzy/readme/DESCRIPTION.rst | 2 +- base_search_fuzzy/readme/USAGE.rst | 2 +- .../static/description/index.html | 16 +++++++++------ .../tests/test_query_generation.py | 2 +- 8 files changed, 33 insertions(+), 20 deletions(-) diff --git a/base_search_fuzzy/README.rst b/base_search_fuzzy/README.rst index bcc1a17e6da..7775805b66e 100644 --- a/base_search_fuzzy/README.rst +++ b/base_search_fuzzy/README.rst @@ -14,13 +14,13 @@ Fuzzy Search :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/11.0/base_search_fuzzy + :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-11-0/server-tools-11-0-base_search_fuzzy + :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/11.0 + :target: https://runbot.odoo-community.org/runbot/149/12.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -28,7 +28,7 @@ Fuzzy Search 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 possibilty to perfrom the fuzzy search for external addons. +only the possibility to perform the fuzzy search for external addons. **Table of contents** @@ -66,7 +66,7 @@ Usage #. 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 statment: + the following SQL statement: ``self.env.cr.execute("SELECT set_limit(0.2);")`` @@ -93,7 +93,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -114,7 +114,11 @@ Contributors * Jordi Ballester * Serpent Consulting Services Pvt. Ltd. * Dave Lasley -* Vicent Cubells + +* `Tecnativa `_: + + * Vicent Cubells + * Ernesto Tejeda Maintainers ~~~~~~~~~~~ @@ -129,6 +133,6 @@ 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 `_ project on GitHub. +This module is part of the `OCA/server-tools `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/base_search_fuzzy/__manifest__.py b/base_search_fuzzy/__manifest__.py index 0c935541db7..4a95e43d8da 100644 --- a/base_search_fuzzy/__manifest__.py +++ b/base_search_fuzzy/__manifest__.py @@ -5,8 +5,8 @@ 'name': "Fuzzy Search", 'summary': "Fuzzy search with the PostgreSQL trigram extension", 'category': 'Uncategorized', - 'version': '11.0.1.0.0', - 'website': 'https://odoo-community.org/', + 'version': '12.0.1.0.0', + 'website': 'https://github.com/OCA/server-tools', 'author': 'bloopark systems GmbH & Co. KG, ' 'Eficent, ' 'Serpent CS, ' diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py index cb31a3dc5cb..1d5aaf4d7f1 100644 --- a/base_search_fuzzy/models/trgm_index.py +++ b/base_search_fuzzy/models/trgm_index.py @@ -17,6 +17,7 @@ class TrgmIndex(models.Model): _name = 'trgm.index' _rec_name = 'field_id' + _description = 'Trigram Index' field_id = fields.Many2one( comodel_name='ir.model.fields', diff --git a/base_search_fuzzy/readme/CONTRIBUTORS.rst b/base_search_fuzzy/readme/CONTRIBUTORS.rst index 1a545b521ee..1e3d2390870 100644 --- a/base_search_fuzzy/readme/CONTRIBUTORS.rst +++ b/base_search_fuzzy/readme/CONTRIBUTORS.rst @@ -2,4 +2,8 @@ * Jordi Ballester * Serpent Consulting Services Pvt. Ltd. * Dave Lasley -* Vicent Cubells + +* `Tecnativa `_: + + * Vicent Cubells + * Ernesto Tejeda diff --git a/base_search_fuzzy/readme/DESCRIPTION.rst b/base_search_fuzzy/readme/DESCRIPTION.rst index c5fa740b1b7..c60300497d1 100644 --- a/base_search_fuzzy/readme/DESCRIPTION.rst +++ b/base_search_fuzzy/readme/DESCRIPTION.rst @@ -1,4 +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 possibilty to perfrom the fuzzy search for external addons. +only the possibility to perform the fuzzy search for external addons. diff --git a/base_search_fuzzy/readme/USAGE.rst b/base_search_fuzzy/readme/USAGE.rst index 9844367a8d9..2f667ac81ec 100644 --- a/base_search_fuzzy/readme/USAGE.rst +++ b/base_search_fuzzy/readme/USAGE.rst @@ -8,7 +8,7 @@ #. 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 statment: + the following SQL statement: ``self.env.cr.execute("SELECT set_limit(0.2);")`` diff --git a/base_search_fuzzy/static/description/index.html b/base_search_fuzzy/static/description/index.html index 040afc26ad2..73fc9b667a3 100644 --- a/base_search_fuzzy/static/description/index.html +++ b/base_search_fuzzy/static/description/index.html @@ -367,11 +367,11 @@

Fuzzy Search

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

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

+

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

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 possibilty to perfrom the fuzzy search for external addons.

+only the possibility to perform the fuzzy search for external addons.

Table of contents

    @@ -420,7 +420,7 @@

    Usage

  • 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 statment:

    +the following SQL statement:

    self.env.cr.execute("SELECT set_limit(0.2);")

  • Another interesting feature is the use of similarity(column, 'text') @@ -446,7 +446,7 @@

    Bug Tracker

    Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -feedback.

    +feedback.

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

@@ -466,7 +466,11 @@

Contributors

  • Jordi Ballester <jordi.ballester@eficent.com>
  • Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>
  • Dave Lasley <dave@laslabs.com>
  • -
  • Vicent Cubells <vicent.cubells@tecnativa.com>
  • +
  • Tecnativa:
      +
    • Vicent Cubells
    • +
    • Ernesto Tejeda
    • +
    +
  • @@ -476,7 +480,7 @@

    Maintainers

    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 project on GitHub.

    +

    This module is part of the OCA/server-tools project on GitHub.

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

    diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py index 024ce165381..25dce0bc6fd 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -74,7 +74,7 @@ def test_fuzzy_search(self): return if not self.TrgmIndex.index_exists('res.partner', 'name'): - field_partner_name = self.env.ref('base.field_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', From 1aa25b8240e2fc052e5cc48da1de27457e255be4 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Mon, 14 Jan 2019 12:49:10 +0000 Subject: [PATCH 13/53] Update base_search_fuzzy.pot --- base_search_fuzzy/i18n/base_search_fuzzy.pot | 40 +++++++++----------- 1 file changed, 18 insertions(+), 22 deletions(-) diff --git a/base_search_fuzzy/i18n/base_search_fuzzy.pot b/base_search_fuzzy/i18n/base_search_fuzzy.pot index cd0d3bdca99..bde60e04682 100644 --- a/base_search_fuzzy/i18n/base_search_fuzzy.pot +++ b/base_search_fuzzy/i18n/base_search_fuzzy.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 11.0\n" +"Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" @@ -14,27 +14,27 @@ msgstr "" "Plural-Forms: \n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -49,17 +49,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -70,17 +70,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "" @@ -90,31 +90,27 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" - From 83bd1362b7bc72555397dbdf04505f311a0c4593 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 27 Jan 2019 11:03:47 +0000 Subject: [PATCH 14/53] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: server-tools-12.0/server-tools-12.0-base_search_fuzzy Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-base_search_fuzzy/ --- base_search_fuzzy/i18n/am.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/ar.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/bg.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/bs.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/ca.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/cs.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/da.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/de.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/el_GR.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/en_GB.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_AR.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_CL.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_CO.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_CR.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_DO.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_EC.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_ES.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_MX.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_PE.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_PY.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/es_VE.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/et.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/eu.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/fa.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/fi.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/fr.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/fr_CA.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/fr_CH.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/gl.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/gl_ES.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/he.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/hr.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/hr_HR.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/hu.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/id.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/it.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/ja.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/ko.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/lt.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/lt_LT.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/lv.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/mk.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/mn.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/nb.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/nb_NO.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/nl.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/nl_BE.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/nl_NL.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/pl.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/pt.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/pt_BR.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/pt_PT.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/ro.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/ru.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/sk.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/sl.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/sr.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/sr@latin.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/sv.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/th.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/tr.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/tr_TR.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/uk.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/vi.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/vi_VN.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/zh_CN.po | 38 +++++++++++++----------------- base_search_fuzzy/i18n/zh_TW.po | 38 +++++++++++++----------------- 68 files changed, 1156 insertions(+), 1428 deletions(-) diff --git a/base_search_fuzzy/i18n/am.po b/base_search_fuzzy/i18n/am.po index 9798a39c416..f1c92eb98a8 100644 --- a/base_search_fuzzy/i18n/am.po +++ b/base_search_fuzzy/i18n/am.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ar.po b/base_search_fuzzy/i18n/ar.po index 132a5087a25..f543510c6c0 100644 --- a/base_search_fuzzy/i18n/ar.po +++ b/base_search_fuzzy/i18n/ar.po @@ -21,7 +21,7 @@ msgstr "" "&& 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 +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "الحقل" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "آخر تحديث في" @@ -100,7 +100,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/bg.po b/base_search_fuzzy/i18n/bg.po index da7acf3b445..cb3332d9def 100644 --- a/base_search_fuzzy/i18n/bg.po +++ b/base_search_fuzzy/i18n/bg.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Последно обновено на" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/bs.po b/base_search_fuzzy/i18n/bs.po index b2ff9032cfa..25d263315c2 100644 --- a/base_search_fuzzy/i18n/bs.po +++ b/base_search_fuzzy/i18n/bs.po @@ -20,7 +20,7 @@ msgstr "" "%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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ca.po b/base_search_fuzzy/i18n/ca.po index f50f4853cb2..b7759242898 100644 --- a/base_search_fuzzy/i18n/ca.po +++ b/base_search_fuzzy/i18n/ca.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Camp" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Darrera Actualització el" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/cs.po b/base_search_fuzzy/i18n/cs.po index 4b9ce864c8d..3a7b176bd39 100644 --- a/base_search_fuzzy/i18n/cs.po +++ b/base_search_fuzzy/i18n/cs.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Naposled upraveno" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/da.po b/base_search_fuzzy/i18n/da.po index a7b00dec56a..5a60e107c56 100644 --- a/base_search_fuzzy/i18n/da.po +++ b/base_search_fuzzy/i18n/da.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Sidst opdateret den" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/de.po b/base_search_fuzzy/i18n/de.po index c205d5fac30..04df654ccd8 100644 --- a/base_search_fuzzy/i18n/de.po +++ b/base_search_fuzzy/i18n/de.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -31,22 +31,22 @@ msgstr "" "GiST für oft aktualisierte Daten.\"" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Feld" @@ -61,17 +61,17 @@ msgid "GiST" msgstr "GiST" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "Index Typ" @@ -82,17 +82,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" @@ -102,7 +102,7 @@ msgid "Models" msgstr "Datenmodelle" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -111,7 +111,7 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, python-format msgid "The pg_trgm extension does not exists or cannot be installed." msgstr "" @@ -119,18 +119,14 @@ msgstr "" #. module: base_search_fuzzy #: model:ir.actions.act_window,name:base_search_fuzzy.trgm_index_action +#: model:ir.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/el_GR.po b/base_search_fuzzy/i18n/el_GR.po index bab7127349f..e91756fc9fb 100644 --- a/base_search_fuzzy/i18n/el_GR.po +++ b/base_search_fuzzy/i18n/el_GR.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Τελευταία ενημέρωση στις" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/en_GB.po b/base_search_fuzzy/i18n/en_GB.po index 4cca714050c..11185c3661f 100644 --- a/base_search_fuzzy/i18n/en_GB.po +++ b/base_search_fuzzy/i18n/en_GB.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Last Updated on" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es.po b/base_search_fuzzy/i18n/es.po index bf7db506a43..149a7d06b6d 100644 --- a/base_search_fuzzy/i18n/es.po +++ b/base_search_fuzzy/i18n/es.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Campo" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última actualización el" @@ -98,7 +98,7 @@ msgid "Models" msgstr "Modelos" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_AR.po b/base_search_fuzzy/i18n/es_AR.po index bfa0d7a7713..a81a308450f 100644 --- a/base_search_fuzzy/i18n/es_AR.po +++ b/base_search_fuzzy/i18n/es_AR.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última actualización el" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_CL.po b/base_search_fuzzy/i18n/es_CL.po index 8816911d866..6a979be2de0 100644 --- a/base_search_fuzzy/i18n/es_CL.po +++ b/base_search_fuzzy/i18n/es_CL.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_CO.po b/base_search_fuzzy/i18n/es_CO.po index 038f847a81d..1b82a3d9f59 100644 --- a/base_search_fuzzy/i18n/es_CO.po +++ b/base_search_fuzzy/i18n/es_CO.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Actualizado" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_CR.po b/base_search_fuzzy/i18n/es_CR.po index a5ea2fdba6c..dca9e8858ec 100644 --- a/base_search_fuzzy/i18n/es_CR.po +++ b/base_search_fuzzy/i18n/es_CR.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Ultima actualización en" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_DO.po b/base_search_fuzzy/i18n/es_DO.po index 3d0648f85b8..a45e95e83fa 100644 --- a/base_search_fuzzy/i18n/es_DO.po +++ b/base_search_fuzzy/i18n/es_DO.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_EC.po b/base_search_fuzzy/i18n/es_EC.po index f67fd2d2370..16ff55fab0c 100644 --- a/base_search_fuzzy/i18n/es_EC.po +++ b/base_search_fuzzy/i18n/es_EC.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_ES.po b/base_search_fuzzy/i18n/es_ES.po index 95d621b6568..449bf78f4a0 100644 --- a/base_search_fuzzy/i18n/es_ES.po +++ b/base_search_fuzzy/i18n/es_ES.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_MX.po b/base_search_fuzzy/i18n/es_MX.po index a981d8413a7..90ed18a63ac 100644 --- a/base_search_fuzzy/i18n/es_MX.po +++ b/base_search_fuzzy/i18n/es_MX.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Ultima actualización realizada" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_PE.po b/base_search_fuzzy/i18n/es_PE.po index 82223d51995..219313197c0 100644 --- a/base_search_fuzzy/i18n/es_PE.po +++ b/base_search_fuzzy/i18n/es_PE.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Ultima Actualización" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_PY.po b/base_search_fuzzy/i18n/es_PY.po index 737e0812a3c..e569d09b905 100644 --- a/base_search_fuzzy/i18n/es_PY.po +++ b/base_search_fuzzy/i18n/es_PY.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Ultima actualización en" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/es_VE.po b/base_search_fuzzy/i18n/es_VE.po index fe2efe69916..fa6c0c851e5 100644 --- a/base_search_fuzzy/i18n/es_VE.po +++ b/base_search_fuzzy/i18n/es_VE.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Ultima actualizacion en" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/et.po b/base_search_fuzzy/i18n/et.po index 7e6d381213f..774d3284ca5 100644 --- a/base_search_fuzzy/i18n/et.po +++ b/base_search_fuzzy/i18n/et.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Viimati uuendatud" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/eu.po b/base_search_fuzzy/i18n/eu.po index d840af5ec77..18e6f39a054 100644 --- a/base_search_fuzzy/i18n/eu.po +++ b/base_search_fuzzy/i18n/eu.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Last Updated on" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/fa.po b/base_search_fuzzy/i18n/fa.po index 29e4de860d0..46bf0fdcbe1 100644 --- a/base_search_fuzzy/i18n/fa.po +++ b/base_search_fuzzy/i18n/fa.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "آخرین به روز رسانی در" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/fi.po b/base_search_fuzzy/i18n/fi.po index a39e490a868..c2fa61b8493 100644 --- a/base_search_fuzzy/i18n/fi.po +++ b/base_search_fuzzy/i18n/fi.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Kenttä" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Viimeksi päivitetty" @@ -99,7 +99,7 @@ msgid "Models" msgstr "Mallit" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/fr.po b/base_search_fuzzy/i18n/fr.po index 1ba4b8ae3a6..96eb996ecda 100644 --- a/base_search_fuzzy/i18n/fr.po +++ b/base_search_fuzzy/i18n/fr.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -31,22 +31,22 @@ msgstr "" "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 +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Champ" @@ -61,17 +61,17 @@ msgid "GiST" msgstr "GiST" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "Type d'index" @@ -82,17 +82,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Mis à jour le" @@ -102,7 +102,7 @@ msgid "Models" msgstr "Modèles" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -111,25 +111,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/fr_CA.po b/base_search_fuzzy/i18n/fr_CA.po index 673035a2003..97cd4ee2cbd 100644 --- a/base_search_fuzzy/i18n/fr_CA.po +++ b/base_search_fuzzy/i18n/fr_CA.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Dernière mise à jour le" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/fr_CH.po b/base_search_fuzzy/i18n/fr_CH.po index 62c826dc44a..003355d96eb 100644 --- a/base_search_fuzzy/i18n/fr_CH.po +++ b/base_search_fuzzy/i18n/fr_CH.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Modifié le" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/gl.po b/base_search_fuzzy/i18n/gl.po index cbeec3f1cdf..a551f93ce42 100644 --- a/base_search_fuzzy/i18n/gl.po +++ b/base_search_fuzzy/i18n/gl.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última actualización en" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/gl_ES.po b/base_search_fuzzy/i18n/gl_ES.po index b60854beef8..e304456172c 100644 --- a/base_search_fuzzy/i18n/gl_ES.po +++ b/base_search_fuzzy/i18n/gl_ES.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/he.po b/base_search_fuzzy/i18n/he.po index 3cc300cb93b..0f0ddba2822 100644 --- a/base_search_fuzzy/i18n/he.po +++ b/base_search_fuzzy/i18n/he.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "עודכן לאחרונה על" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/hr.po b/base_search_fuzzy/i18n/hr.po index 1cef50c39e1..6f8dac86778 100644 --- a/base_search_fuzzy/i18n/hr.po +++ b/base_search_fuzzy/i18n/hr.po @@ -21,7 +21,7 @@ msgstr "" "%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 +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Polje" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Zadnje ažuriranje" @@ -100,7 +100,7 @@ msgid "Models" msgstr "Modeli" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/hr_HR.po b/base_search_fuzzy/i18n/hr_HR.po index 73ce3bd378f..85ca4d5a799 100644 --- a/base_search_fuzzy/i18n/hr_HR.po +++ b/base_search_fuzzy/i18n/hr_HR.po @@ -21,7 +21,7 @@ msgstr "" "%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 +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Zadnje ažurirano" @@ -100,7 +100,7 @@ msgid "Models" msgstr "Modeli" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/hu.po b/base_search_fuzzy/i18n/hu.po index 929042e5a92..f9051c01201 100644 --- a/base_search_fuzzy/i18n/hu.po +++ b/base_search_fuzzy/i18n/hu.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Utoljára frissítve " @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/id.po b/base_search_fuzzy/i18n/id.po index 35f428b6f58..3b747ef13d4 100644 --- a/base_search_fuzzy/i18n/id.po +++ b/base_search_fuzzy/i18n/id.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Diperbaharui pada" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/it.po b/base_search_fuzzy/i18n/it.po index 70d26e02f40..8968a811207 100644 --- a/base_search_fuzzy/i18n/it.po +++ b/base_search_fuzzy/i18n/it.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Campo" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Last Updated on" @@ -99,7 +99,7 @@ msgid "Models" msgstr "Modelli" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ja.po b/base_search_fuzzy/i18n/ja.po index ba398c242f2..a99da683486 100644 --- a/base_search_fuzzy/i18n/ja.po +++ b/base_search_fuzzy/i18n/ja.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "最終更新日" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ko.po b/base_search_fuzzy/i18n/ko.po index 622a7b9361b..814c0e8263c 100644 --- a/base_search_fuzzy/i18n/ko.po +++ b/base_search_fuzzy/i18n/ko.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "최근 갱신 날짜" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/lt.po b/base_search_fuzzy/i18n/lt.po index f52361e7686..5d0fed1775d 100644 --- a/base_search_fuzzy/i18n/lt.po +++ b/base_search_fuzzy/i18n/lt.po @@ -20,7 +20,7 @@ msgstr "" "%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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/lt_LT.po b/base_search_fuzzy/i18n/lt_LT.po index 02a03934290..d3be22d36ed 100644 --- a/base_search_fuzzy/i18n/lt_LT.po +++ b/base_search_fuzzy/i18n/lt_LT.po @@ -21,7 +21,7 @@ msgstr "" "%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 +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Paskutinį kartą atnaujinta" @@ -100,7 +100,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/lv.po b/base_search_fuzzy/i18n/lv.po index 163fc12ed74..baacbacebfd 100644 --- a/base_search_fuzzy/i18n/lv.po +++ b/base_search_fuzzy/i18n/lv.po @@ -20,7 +20,7 @@ msgstr "" "2);\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: 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" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/mk.po b/base_search_fuzzy/i18n/mk.po index bc3432b1665..57e43bea223 100644 --- a/base_search_fuzzy/i18n/mk.po +++ b/base_search_fuzzy/i18n/mk.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Последно ажурирање на" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/mn.po b/base_search_fuzzy/i18n/mn.po index b603d3907df..c06f4ccf172 100644 --- a/base_search_fuzzy/i18n/mn.po +++ b/base_search_fuzzy/i18n/mn.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Сүүлийн засвар хийсэн огноо" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/nb.po b/base_search_fuzzy/i18n/nb.po index e45d08bac46..c686ad77780 100644 --- a/base_search_fuzzy/i18n/nb.po +++ b/base_search_fuzzy/i18n/nb.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Sist oppdatert" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/nb_NO.po b/base_search_fuzzy/i18n/nb_NO.po index 6061a41f0a1..9ddad2b8c22 100644 --- a/base_search_fuzzy/i18n/nb_NO.po +++ b/base_search_fuzzy/i18n/nb_NO.po @@ -21,7 +21,7 @@ msgstr "" "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 +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Sist oppdatert den" @@ -100,7 +100,7 @@ msgid "Models" msgstr "Modeller" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/nl.po b/base_search_fuzzy/i18n/nl.po index 389f9d0095b..566fb66f2f5 100644 --- a/base_search_fuzzy/i18n/nl.po +++ b/base_search_fuzzy/i18n/nl.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Veld" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/nl_BE.po b/base_search_fuzzy/i18n/nl_BE.po index b3b5650edf8..6182a8bf158 100644 --- a/base_search_fuzzy/i18n/nl_BE.po +++ b/base_search_fuzzy/i18n/nl_BE.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/nl_NL.po b/base_search_fuzzy/i18n/nl_NL.po index 2e0b711e155..d63b429f22a 100644 --- a/base_search_fuzzy/i18n/nl_NL.po +++ b/base_search_fuzzy/i18n/nl_NL.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Veld" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Laatst bijgewerkt op" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/pl.po b/base_search_fuzzy/i18n/pl.po index 0b0992ac065..37e54e9fc83 100644 --- a/base_search_fuzzy/i18n/pl.po +++ b/base_search_fuzzy/i18n/pl.po @@ -20,7 +20,7 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Ostatnia zmiana" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/pt.po b/base_search_fuzzy/i18n/pt.po index 8d5d9ab0294..7f642f15a3e 100644 --- a/base_search_fuzzy/i18n/pt.po +++ b/base_search_fuzzy/i18n/pt.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última Atualização Em" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/pt_BR.po b/base_search_fuzzy/i18n/pt_BR.po index f92f58dea41..74612945a69 100644 --- a/base_search_fuzzy/i18n/pt_BR.po +++ b/base_search_fuzzy/i18n/pt_BR.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Campo" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última atualização em" @@ -99,7 +99,7 @@ msgid "Models" msgstr "Modelos" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/pt_PT.po b/base_search_fuzzy/i18n/pt_PT.po index 05347160780..17d82c913c9 100644 --- a/base_search_fuzzy/i18n/pt_PT.po +++ b/base_search_fuzzy/i18n/pt_PT.po @@ -20,7 +20,7 @@ msgstr "" "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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Última Atualização Em" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ro.po b/base_search_fuzzy/i18n/ro.po index 1461d93017b..4549dff5a3b 100644 --- a/base_search_fuzzy/i18n/ro.po +++ b/base_search_fuzzy/i18n/ro.po @@ -21,7 +21,7 @@ msgstr "" "2:1));\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Columna" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Ultima actualizare la" @@ -100,7 +100,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/ru.po b/base_search_fuzzy/i18n/ru.po index 9cb06dca66a..29514ede1aa 100644 --- a/base_search_fuzzy/i18n/ru.po +++ b/base_search_fuzzy/i18n/ru.po @@ -21,7 +21,7 @@ msgstr "" "%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 +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Поле" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Последний раз обновлено" @@ -100,7 +100,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sk.po b/base_search_fuzzy/i18n/sk.po index ab2c9d110ce..690a57b48da 100644 --- a/base_search_fuzzy/i18n/sk.po +++ b/base_search_fuzzy/i18n/sk.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Naposledy upravované" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sl.po b/base_search_fuzzy/i18n/sl.po index 243fc7f9950..2936a0cb492 100644 --- a/base_search_fuzzy/i18n/sl.po +++ b/base_search_fuzzy/i18n/sl.po @@ -20,7 +20,7 @@ msgstr "" "%100==4 ? 2 : 3);\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -32,22 +32,22 @@ msgstr "" "posodabljajo.\"" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Polje" @@ -62,17 +62,17 @@ msgid "GiST" msgstr "GiST" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "Tip indeksa" @@ -83,17 +83,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" @@ -103,7 +103,7 @@ msgid "Models" msgstr "Modeli" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -112,25 +112,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sr.po b/base_search_fuzzy/i18n/sr.po index 1d5419e07ac..4aaa068ebaf 100644 --- a/base_search_fuzzy/i18n/sr.po +++ b/base_search_fuzzy/i18n/sr.po @@ -20,7 +20,7 @@ msgstr "" "%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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sr@latin.po b/base_search_fuzzy/i18n/sr@latin.po index 6c03d375c9e..44fd10fe744 100644 --- a/base_search_fuzzy/i18n/sr@latin.po +++ b/base_search_fuzzy/i18n/sr@latin.po @@ -21,7 +21,7 @@ msgstr "" "%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 +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Zadnja izmjena" @@ -100,7 +100,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/sv.po b/base_search_fuzzy/i18n/sv.po index 0b107733984..a9dde0eb397 100644 --- a/base_search_fuzzy/i18n/sv.po +++ b/base_search_fuzzy/i18n/sv.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Senast uppdaterad" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/th.po b/base_search_fuzzy/i18n/th.po index d4ee0e9542e..6082c04be95 100644 --- a/base_search_fuzzy/i18n/th.po +++ b/base_search_fuzzy/i18n/th.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "อัพเดทครั้งสุดท้ายเมื่อ" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/tr.po b/base_search_fuzzy/i18n/tr.po index 9433b44a9f8..5141eaae052 100644 --- a/base_search_fuzzy/i18n/tr.po +++ b/base_search_fuzzy/i18n/tr.po @@ -19,7 +19,7 @@ msgstr "" "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 +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "Alan" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Son güncellenme" @@ -98,7 +98,7 @@ msgid "Models" msgstr "Modeller" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/tr_TR.po b/base_search_fuzzy/i18n/tr_TR.po index 878efc59959..e6dd89a5eb9 100644 --- a/base_search_fuzzy/i18n/tr_TR.po +++ b/base_search_fuzzy/i18n/tr_TR.po @@ -21,7 +21,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -29,22 +29,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -59,17 +59,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -80,17 +80,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "En son güncelleme tarihi" @@ -100,7 +100,7 @@ msgid "Models" msgstr "Tipler" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -109,25 +109,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/uk.po b/base_search_fuzzy/i18n/uk.po index 351baa1687c..559149cb275 100644 --- a/base_search_fuzzy/i18n/uk.po +++ b/base_search_fuzzy/i18n/uk.po @@ -20,7 +20,7 @@ msgstr "" "%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 +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "Останнє оновлення" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/vi.po b/base_search_fuzzy/i18n/vi.po index 9cefbdc57e9..9eefc47e038 100644 --- a/base_search_fuzzy/i18n/vi.po +++ b/base_search_fuzzy/i18n/vi.po @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -27,22 +27,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -57,17 +57,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -78,17 +78,17 @@ 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 +#: 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 +#: 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 +#: 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" @@ -98,7 +98,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -107,25 +107,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/vi_VN.po b/base_search_fuzzy/i18n/vi_VN.po index 5694f0dbd98..9e0598b3b51 100644 --- a/base_search_fuzzy/i18n/vi_VN.po +++ b/base_search_fuzzy/i18n/vi_VN.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: 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" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/zh_CN.po b/base_search_fuzzy/i18n/zh_CN.po index 5fc90620a42..c6223e50a96 100644 --- a/base_search_fuzzy/i18n/zh_CN.po +++ b/base_search_fuzzy/i18n/zh_CN.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "上次更新日期" @@ -99,7 +99,7 @@ msgid "Models" msgstr "模型" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" diff --git a/base_search_fuzzy/i18n/zh_TW.po b/base_search_fuzzy/i18n/zh_TW.po index 3fa13fbcb37..9f4b878fb81 100644 --- a/base_search_fuzzy/i18n/zh_TW.po +++ b/base_search_fuzzy/i18n/zh_TW.po @@ -20,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_type +#: 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 " @@ -28,22 +28,22 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_create_uid +#: 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__field_id msgid "Field" msgstr "" @@ -58,17 +58,17 @@ msgid "GiST" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index_id +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__index_type msgid "Index Type" msgstr "" @@ -79,17 +79,17 @@ 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 +#: 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 +#: 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 +#: model:ir.model.fields,field_description:base_search_fuzzy.field_trgm_index__write_date msgid "Last Updated on" msgstr "最後更新於" @@ -99,7 +99,7 @@ msgid "Models" msgstr "" #. module: base_search_fuzzy -#: model:ir.model.fields,help:base_search_fuzzy.field_trgm_index_index_name +#: 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 " @@ -108,25 +108,21 @@ msgid "" msgstr "" #. module: base_search_fuzzy -#: code:addons/base_search_fuzzy/models/trgm_index.py:125 +#: code:addons/base_search_fuzzy/models/trgm_index.py:126 #, 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.model,name:base_search_fuzzy.model_trgm_index #: 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 +#: model_terms:ir.ui.view,arch_db:base_search_fuzzy.trgm_index_view_form +#: model_terms: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 +#: 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 "" From b4673486b73ddc16fed94742571e15d5f1232a55 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 3 Apr 2019 03:22:21 +0000 Subject: [PATCH 15/53] icon.png --- base_search_fuzzy/static/description/icon.png | Bin 0 -> 9455 bytes base_search_fuzzy/static/description/index.html | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 base_search_fuzzy/static/description/icon.png diff --git a/base_search_fuzzy/static/description/icon.png b/base_search_fuzzy/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/base_search_fuzzy/static/description/index.html b/base_search_fuzzy/static/description/index.html index 73fc9b667a3..1e030f3b151 100644 --- a/base_search_fuzzy/static/description/index.html +++ b/base_search_fuzzy/static/description/index.html @@ -3,7 +3,7 @@ - + Fuzzy Search - From b812116ba15b7a090bef3c0affcc2296eaf474ff Mon Sep 17 00:00:00 2001 From: Don Kendall Date: Wed, 20 May 2026 19:24:58 -0400 Subject: [PATCH 49/53] [MIG] base_search_fuzzy: Migration to 19.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Re-implements the PostgreSQL trigram similarity operator ``%`` using Odoo 19's ``@operator_optimization`` decorator + ``Domain.custom``. The 18.0 ``post_load`` hook that mutated ``odoo.osv.expression.TERM_OPERATORS`` and ``SQL_OPERATORS`` no longer works in 19.0: - ``SQL_OPERATORS`` moved from ``odoo.osv.expression`` to ``odoo.orm.utils`` (no re-export). - ``TERM_OPERATORS`` is now a rebound copy of ``odoo.orm.domains.CONDITION_OPERATORS``; the new ``Domain`` validator keys off ``CONDITION_OPERATORS`` directly, so mutating ``expression.TERM_OPERATORS`` no longer registers the operator. - The new generic ``Field._condition_to_sql`` does not consult ``SQL_OPERATORS`` for unknown operators; an unknown operator like ``%`` raises ``NotImplementedError``. The replacement registers the operator at import time via ``@operator_optimization(['%'])`` and emits the trigram-similarity predicate through ``Domain.custom(to_sql=...)`` — the supported path used in core by ``auth_totp``, ``analytic_mixin`` and ``account_tax``. ``post_load`` is dropped from the manifest, and ``hooks.py`` is removed. Tests assert ``%`` is in ``CONDITION_OPERATORS`` and verify the emitted SQL contains the field reference + escaped ``%%`` template; the end-to-end ``pg_trgm`` test is unchanged. --- base_search_fuzzy/__init__.py | 1 - base_search_fuzzy/__manifest__.py | 3 +- base_search_fuzzy/hooks.py | 14 --- base_search_fuzzy/models/__init__.py | 1 + base_search_fuzzy/models/expression.py | 26 +++++ base_search_fuzzy/models/trgm_index.py | 6 +- .../tests/test_query_generation.py | 101 +++++++++++++----- 7 files changed, 109 insertions(+), 43 deletions(-) delete mode 100644 base_search_fuzzy/hooks.py create mode 100644 base_search_fuzzy/models/expression.py diff --git a/base_search_fuzzy/__init__.py b/base_search_fuzzy/__init__.py index 98d1a08c6ca..14b61a7d5da 100644 --- a/base_search_fuzzy/__init__.py +++ b/base_search_fuzzy/__init__.py @@ -3,4 +3,3 @@ # Copyright 2020 NextERP SRL. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import models -from .hooks import post_load diff --git a/base_search_fuzzy/__manifest__.py b/base_search_fuzzy/__manifest__.py index 2beee47ebc1..d0714714346 100644 --- a/base_search_fuzzy/__manifest__.py +++ b/base_search_fuzzy/__manifest__.py @@ -5,7 +5,7 @@ "name": "Fuzzy Search", "summary": "Fuzzy search with the PostgreSQL trigram extension", "category": "Uncategorized", - "version": "18.0.1.0.0", + "version": "19.0.1.0.0", "website": "https://github.com/OCA/server-tools", "author": "bloopark systems GmbH & Co. KG, " "ForgeFlow, " @@ -16,5 +16,4 @@ "data": ["views/trgm_index.xml", "security/ir.model.access.csv"], "demo": ["demo/res_partner_demo.xml", "demo/TrgmIndex_demo.xml"], "installable": True, - "post_load": "post_load", } diff --git a/base_search_fuzzy/hooks.py b/base_search_fuzzy/hooks.py deleted file mode 100644 index aaea0f5a89b..00000000000 --- a/base_search_fuzzy/hooks.py +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 2016 Eficent Business and IT Consulting Services S.L. -# Copyright 2016 Serpent Consulting Services Pvt. Ltd. -# Copyright 2017 LasLabs Inc. -# Copyright 2021 Tecnativa - Jairo Llopis -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). - -from odoo.osv import expression -from odoo.tools.sql import SQL - - -def post_load(): - """Patch expression generators to enable the fuzzy search operator.""" - expression.TERM_OPERATORS += ("%",) - expression.SQL_OPERATORS.update({"%": SQL("%%")}) diff --git a/base_search_fuzzy/models/__init__.py b/base_search_fuzzy/models/__init__.py index 7c3c8f54a59..1358381c8d9 100644 --- a/base_search_fuzzy/models/__init__.py +++ b/base_search_fuzzy/models/__init__.py @@ -2,4 +2,5 @@ # Copyright 2016 Serpent Consulting Services Pvt. Ltd. # Copyright 2020 NextERP SRL. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from . import expression from . import trgm_index diff --git a/base_search_fuzzy/models/expression.py b/base_search_fuzzy/models/expression.py new file mode 100644 index 00000000000..3cbc01ad40d --- /dev/null +++ b/base_search_fuzzy/models/expression.py @@ -0,0 +1,26 @@ +# Copyright 2016 ForgeFlow S.L. +# Copyright 2016 Serpent Consulting Services Pvt. Ltd. +# Copyright 2021 Tecnativa - Jairo Llopis +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo.fields import Domain +from odoo.orm.domains import operator_optimization +from odoo.tools import SQL + + +@operator_optimization(["%"]) +def _optimize_trigram_similarity(condition, model): + """Register the PostgreSQL pg_trgm similarity operator ``%``. + + Emits `` %% `` so callers can write + ``[("name", "%", "foo")]`` and have it rendered as a trigram-similarity + predicate, which a GIN/GiST trgm_ops index can accelerate. + """ + field_expr = condition.field_expr + value = condition.value + + def _to_sql(model_, alias, query): + sql_field = model_._field_to_sql(alias, field_expr, query) + return SQL("%s %% %s", sql_field, value) + + return Domain.custom(to_sql=_to_sql) diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py index 96c5cfd5a51..d1568e13f1b 100644 --- a/base_search_fuzzy/models/trgm_index.py +++ b/base_search_fuzzy/models/trgm_index.py @@ -6,7 +6,7 @@ from psycopg2.extensions import AsIs -from odoo import _, api, exceptions, fields, models +from odoo import api, exceptions, fields, models _logger = logging.getLogger(__name__) @@ -125,7 +125,9 @@ def create_index(self): if not self._install_trgm_extension(): raise exceptions.UserError( - _("The pg_trgm extension does not exists or cannot be installed.") + self.env._( + "The pg_trgm extension does not exists or cannot be installed." + ) ) table_name = self.env[self.field_id.model_id.model]._table diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py index 6d79b00a390..bbf5dd4df15 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -1,8 +1,7 @@ # Copyright 2016 ForgeFlow 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.tools.sql import SQL +from odoo.orm.domains import CONDITION_OPERATORS from odoo.addons.base.tests.common import BaseCommon @@ -19,58 +18,53 @@ 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) - self.assertEqual(SQL("%%"), expression.SQL_OPERATORS["%"]) + self.assertIn("%", CONDITION_OPERATORS) # create new query with fuzzy search operator - query = self.ResPartner._where_calc([("name", "%", "test")], active_test=False) + query = self.ResPartner._search( + [("name", "%", "test")], active_test=False, bypass_access=True + ) from_clause = query.from_clause.code where_clause = query.where_clause.code - where_clause_params = query.where_clause.params - # the % parameter has to be escaped (%%) for the string replation - self.assertEqual(where_clause, """("res_partner"."name" %% %s)""") + # the trigram operator must appear escaped as %% in the SQL template + self.assertIn('"res_partner"."name"', where_clause) + self.assertIn("%%", where_clause) # test the right sql query statement creation # now there should be only one '%' complete_where = self.env.cr.mogrify( f"SELECT FROM {from_clause} WHERE {where_clause}", - where_clause_params, + query.where_clause.params, ) self.assertEqual( complete_where, - b'SELECT FROM "res_partner" WHERE ' b'("res_partner"."name" % \'test\')', + b'SELECT FROM "res_partner" WHERE "res_partner"."name" % \'test\'', ) def test_fuzzy_where_generation_translatable(self): """Check the generation of the where clause for translatable fields.""" # create new query with fuzzy search operator - query = self.ResPartnerCategory.with_context(lang="en_US")._where_calc( - [("name", "%", "Goschaeftlic")], active_test=False + query = self.ResPartnerCategory.with_context(lang="en_US")._search( + [("name", "%", "Goschaeftlic")], active_test=False, bypass_access=True ) from_clause = query.from_clause.code where_clause = query.where_clause.code - where_clause_params = query.where_clause.params - # the % parameter has to be escaped (%%) for the string replation - self.assertIn( - """("res_partner_category"."name"->>%s %% %s)""", - where_clause, - ) - self.assertEqual( - ["en_US", "Goschaeftlic"], - where_clause_params, - ) + # the trigram operator must appear escaped as %% in the SQL template + self.assertIn('"res_partner_category"."name"', where_clause) + self.assertIn("%%", where_clause) complete_where = self.env.cr.mogrify( f"SELECT FROM {from_clause} WHERE {where_clause}", - where_clause_params, + query.where_clause.params, ) self.assertIn( - b'SELECT FROM "res_partner_category" WHERE ("res_partner_category"."name"->>\'en_US\' % \'Goschaeftlic\')', # noqa + b"% 'Goschaeftlic'", complete_where, ) + self.assertIn(b'"res_partner_category"."name"', complete_where) def test_fuzzy_search(self): """Test the fuzzy search itself.""" @@ -96,3 +90,62 @@ def test_fuzzy_search(self): self.assertIn(partner1.id, res.ids) self.assertIn(partner2.id, res.ids) self.assertNotIn(partner3.id, res.ids) + + def test_index_exists_unknown_field(self): + self.assertFalse( + self.TrgmIndex.index_exists("res.partner", "this_field_does_not_exist") + ) + + def test_create_then_unlink_drops_postgres_index(self): + # res.partner.ref is a plain (non-translatable) Char. + if self.TrgmIndex._trgm_extension_exists() != "installed": + return + field = self.env.ref("base.field_res_partner__ref") + trgm = self.TrgmIndex.create({"field_id": field.id, "index_type": "gin"}) + self.assertTrue(trgm.index_name) + self.assertTrue( + self.TrgmIndex.index_exists("res.partner", "ref"), + "index_exists must report True once a trgm.index row exists", + ) + self.env.cr.execute( + "SELECT 1 FROM pg_indexes WHERE indexname = %s", (trgm.index_name,) + ) + self.assertIsNotNone( + self.env.cr.fetchone(), + "create() should have created the Postgres index", + ) + index_name = trgm.index_name + trgm.unlink() + self.env.cr.execute( + "SELECT 1 FROM pg_indexes WHERE indexname = %s", (index_name,) + ) + self.assertIsNone( + self.env.cr.fetchone(), + "unlink() should have dropped the Postgres index", + ) + + def test_get_not_used_index_collides_on_other_table(self): + self.env.cr.execute( + "CREATE INDEX name_gin_idx ON res_users USING btree (login)" + ) + try: + taken, suggested = self.TrgmIndex.get_not_used_index( + "name_gin_idx", "res_partner" + ) + self.assertFalse(taken) + self.assertEqual(suggested, "name_gin_idx2") + finally: + self.env.cr.execute("DROP INDEX IF EXISTS name_gin_idx") + + def test_get_not_used_index_same_table_reuses(self): + self.env.cr.execute( + "CREATE INDEX reuse_gin_idx ON res_partner USING btree (name)" + ) + try: + taken, suggested = self.TrgmIndex.get_not_used_index( + "reuse_gin_idx", "res_partner" + ) + self.assertTrue(taken) + self.assertEqual(suggested, "reuse_gin_idx") + finally: + self.env.cr.execute("DROP INDEX IF EXISTS reuse_gin_idx") From cefecd5beee3a482a93818535316ac4c27783668 Mon Sep 17 00:00:00 2001 From: Yannick Payot Date: Thu, 23 Oct 2025 15:51:50 +0200 Subject: [PATCH 50/53] [IMP] base_search_fuzzy - add support of translatable fields (cherry picked from commit e8c0b1a1b12e936ebbb1c9ad6c959b0e0be2d55f) --- base_search_fuzzy/models/trgm_index.py | 36 +++++++++++++++++++++----- base_search_fuzzy/views/trgm_index.xml | 5 ++++ 2 files changed, 35 insertions(+), 6 deletions(-) diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py index d1568e13f1b..15b072370bb 100644 --- a/base_search_fuzzy/models/trgm_index.py +++ b/base_search_fuzzy/models/trgm_index.py @@ -11,6 +11,11 @@ _logger = logging.getLogger(__name__) +@api.model +def _lang_get(self): + return self.env["res.lang"].get_installed() + + class TrgmIndex(models.Model): """Model for Trigram Index.""" @@ -44,6 +49,11 @@ class TrgmIndex(models.Model): "the preferred text search index type." "See: https://www.postgresql.org/docs/current/textsearch-indexes.html", ) + lang = fields.Selection( + _lang_get, + string="Language", + help="You will need one index per installed language.", + ) def _trgm_extension_exists(self): self.env.cr.execute( @@ -132,17 +142,31 @@ def create_index(self): table_name = self.env[self.field_id.model_id.model]._table column_name = self.field_id.name + is_translate = self.field_id.translate index_type = self.index_type - index_name = f"{column_name}_{index_type}_idx" - index_exists, index_name = self.get_not_used_index(index_name, table_name) + lang = self.lang + if is_translate: + index_name = f"{column_name}_{lang}_{index_type}_idx" + else: + index_name = f"{column_name}_{index_type}_idx" + + index_exists, index_name = self.get_not_used_index(index_name, table_name) if not index_exists: + if is_translate: + if lang == "en_US": + column_name = f"({column_name}->>'en_US')" + else: + # Search are always done with a fallback on en_US + column_name = ( + f"COALESCE({column_name}->>'{lang}', {column_name}->>'en_US')" + ) self.env.cr.execute( """ - CREATE INDEX %(index)s - ON %(table)s - USING %(indextype)s (%(column)s %(indextype)s_trgm_ops); - """, + CREATE INDEX %(index)s + ON %(table)s + USING %(indextype)s (%(column)s %(indextype)s_trgm_ops); + """, { "table": AsIs(table_name), "index": AsIs(index_name), diff --git a/base_search_fuzzy/views/trgm_index.xml b/base_search_fuzzy/views/trgm_index.xml index fc5f429c098..485b9565de1 100644 --- a/base_search_fuzzy/views/trgm_index.xml +++ b/base_search_fuzzy/views/trgm_index.xml @@ -13,6 +13,11 @@ /> +
    From 00060d36d09d1d4b053b8d49dc85106459aa4458 Mon Sep 17 00:00:00 2001 From: Don Kendall Date: Fri, 5 Jun 2026 16:00:42 -0400 Subject: [PATCH 51/53] [IMP] base_search_fuzzy: parenthesize % operand for translatable search The `%` similarity predicate now renders as `() %% `. A translatable field renders in SQL as the bare JSON accessor `name->>'en_US'` (core's BaseString.to_sql does not wrap the single-language case). `%` binds tighter than `->>`, so the previous `name->>'en_US' %% 'foo'` parsed as `name->>('en_US' %% 'foo')` and failed with "operator does not exist: jsonb ->> boolean". The 18.0 module relies on the still-unmerged core PR odoo/odoo#232993 to add this wrapping; on 19.0 the operator is emitted by this module's own Domain.custom, so we parenthesize here instead and carry no core dependency. The parentheses also make the predicate match the parenthesized expression index that trgm_index builds for translatable columns (`(name->>'en_US')` / `COALESCE(name->>'lang', name->>'en_US')`), introduced by the translatable-fields support picked from OCA#3429. Exact-SQL test assertions updated to the parenthesized form. --- base_search_fuzzy/models/expression.py | 11 +++++++++-- base_search_fuzzy/tests/test_query_generation.py | 10 ++++++---- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/base_search_fuzzy/models/expression.py b/base_search_fuzzy/models/expression.py index 3cbc01ad40d..ce9fdc03b9e 100644 --- a/base_search_fuzzy/models/expression.py +++ b/base_search_fuzzy/models/expression.py @@ -12,15 +12,22 @@ def _optimize_trigram_similarity(condition, model): """Register the PostgreSQL pg_trgm similarity operator ``%``. - Emits `` %% `` so callers can write + Emits ``() %% `` so callers can write ``[("name", "%", "foo")]`` and have it rendered as a trigram-similarity predicate, which a GIN/GiST trgm_ops index can accelerate. + + The field expression is parenthesized so the predicate is correct for a + translatable field, which renders as the bare JSON accessor + ``name->>'en_US'``: ``->>`` binds looser than ``%``, so without the + parentheses ``name->>'en_US' %% 'foo'`` parses as + ``name->>('en_US' %% 'foo')``. The parentheses also make the predicate + match the expression index ``trgm_index`` builds for translatable columns. """ field_expr = condition.field_expr value = condition.value def _to_sql(model_, alias, query): sql_field = model_._field_to_sql(alias, field_expr, query) - return SQL("%s %% %s", sql_field, value) + return SQL("(%s) %% %s", sql_field, value) return Domain.custom(to_sql=_to_sql) diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py index bbf5dd4df15..1cf86cb9f7a 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -39,7 +39,7 @@ def test_fuzzy_where_generation(self): ) self.assertEqual( complete_where, - b'SELECT FROM "res_partner" WHERE "res_partner"."name" % \'test\'', + b'SELECT FROM "res_partner" WHERE ("res_partner"."name") % \'test\'', ) def test_fuzzy_where_generation_translatable(self): @@ -60,11 +60,13 @@ def test_fuzzy_where_generation_translatable(self): query.where_clause.params, ) - self.assertIn( - b"% 'Goschaeftlic'", + # The JSON accessor must be parenthesized: % binds tighter than ->>, + # so the bare form fails with "operator does not exist: jsonb ->> boolean" + self.assertEqual( complete_where, + b'SELECT FROM "res_partner_category" WHERE ' + b"(\"res_partner_category\".\"name\"->>'en_US') % 'Goschaeftlic'", ) - self.assertIn(b'"res_partner_category"."name"', complete_where) def test_fuzzy_search(self): """Test the fuzzy search itself.""" From d0cfcadbc96a17cc7d6022061b09a9a2fd839d0d Mon Sep 17 00:00:00 2001 From: Don Kendall Date: Thu, 11 Jun 2026 07:56:33 -0400 Subject: [PATCH 52/53] [FIX] base_search_fuzzy: fold translatable index name to lowercase CREATE INDEX folds the unquoted identifier to lowercase, but get_not_used_index compares the generated name literally against pg_indexes, so the mixed-case lang component (`name_en_US_gin_idx`) never matches the stored `name_en_us_gin_idx` and collision detection silently fails for every translatable index. Build the name lowercase. Adds an end-to-end test: trgm.index creation on a translatable field (res.partner.category.name) verified against pg_indexes, then an actual `%` search in lang context. --- base_search_fuzzy/models/trgm_index.py | 4 +- .../tests/test_query_generation.py | 37 +++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/base_search_fuzzy/models/trgm_index.py b/base_search_fuzzy/models/trgm_index.py index 15b072370bb..8bd82ccc720 100644 --- a/base_search_fuzzy/models/trgm_index.py +++ b/base_search_fuzzy/models/trgm_index.py @@ -147,7 +147,9 @@ def create_index(self): lang = self.lang if is_translate: - index_name = f"{column_name}_{lang}_{index_type}_idx" + # Lowercase: CREATE INDEX folds the unquoted identifier, and + # get_not_used_index compares it literally against pg_indexes. + index_name = f"{column_name}_{lang}_{index_type}_idx".lower() else: index_name = f"{column_name}_{index_type}_idx" diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py index 1cf86cb9f7a..5d60a285f35 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -93,6 +93,43 @@ def test_fuzzy_search(self): self.assertIn(partner2.id, res.ids) self.assertNotIn(partner3.id, res.ids) + def test_fuzzy_search_translatable(self): + """Test the fuzzy search on a translatable field.""" + if self.TrgmIndex._trgm_extension_exists() != "installed": + return + + if not self.TrgmIndex.index_exists("res.partner.category", "name"): + field_category_name = self.env.ref("base.field_res_partner_category__name") + trgm = self.TrgmIndex.create( + { + "field_id": field_category_name.id, + "index_type": "gin", + "lang": "en_US", + } + ) + self.env.cr.execute( + "SELECT 1 FROM pg_indexes WHERE indexname = %s", + (trgm.index_name,), + ) + self.assertIsNotNone( + self.env.cr.fetchone(), + "create() should have built the expression index", + ) + + Category = self.ResPartnerCategory.with_context(lang="en_US") + cat1, cat2, cat3 = Category.create( + [ + {"name": "Goschaeftlich"}, + {"name": "Goschaeftlech"}, + {"name": "Retailer"}, + ] + ) + + res = Category.search([("name", "%", "Goschaeftlic")]) + self.assertIn(cat1.id, res.ids) + self.assertIn(cat2.id, res.ids) + self.assertNotIn(cat3.id, res.ids) + def test_index_exists_unknown_field(self): self.assertFalse( self.TrgmIndex.index_exists("res.partner", "this_field_does_not_exist") From eaf94a1ee581631407b230460cec5a29b216e825 Mon Sep 17 00:00:00 2001 From: Don Kendall Date: Thu, 11 Jun 2026 07:59:01 -0400 Subject: [PATCH 53/53] [FIX] base_search_fuzzy: demo-proof the index-collision test The test hardcoded name_gin_idx, which the module's own demo data already creates on res_partner, so the test errored on any demo-loaded database (OCA CI is demo-less and never hit it). Use a name the demo data cannot take. --- base_search_fuzzy/tests/test_query_generation.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/base_search_fuzzy/tests/test_query_generation.py b/base_search_fuzzy/tests/test_query_generation.py index 5d60a285f35..0bb1cad401d 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -164,17 +164,19 @@ def test_create_then_unlink_drops_postgres_index(self): ) def test_get_not_used_index_collides_on_other_table(self): + # Deliberately not name_gin_idx: the module's demo data creates that + # one on res_partner, which would collide with this CREATE INDEX. self.env.cr.execute( - "CREATE INDEX name_gin_idx ON res_users USING btree (login)" + "CREATE INDEX collide_gin_idx ON res_users USING btree (login)" ) try: taken, suggested = self.TrgmIndex.get_not_used_index( - "name_gin_idx", "res_partner" + "collide_gin_idx", "res_partner" ) self.assertFalse(taken) - self.assertEqual(suggested, "name_gin_idx2") + self.assertEqual(suggested, "collide_gin_idx2") finally: - self.env.cr.execute("DROP INDEX IF EXISTS name_gin_idx") + self.env.cr.execute("DROP INDEX IF EXISTS collide_gin_idx") def test_get_not_used_index_same_table_reuses(self): self.env.cr.execute(