From 85acb5e9f4e97261daab4a66465e9463328c62e8 Mon Sep 17 00:00:00 2001 From: Christoph Giesel Date: Fri, 24 Jun 2016 11:13:19 +0200 Subject: [PATCH 01/13] 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 000000000..71a89e850 --- /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 000000000..66efa2ce7 --- /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 000000000..e3ef3d024 --- /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 000000000..deaf7d891 --- /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 000000000..51af7d485 --- /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 000000000..e06aa4361 --- /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 000000000..8be90b8e3 --- /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 000000000..d4ecc1025 --- /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 000000000..0d5bc6038 --- /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 000000000..b45665e42 --- /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 000000000..34c7e30b3 --- /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 000000000..36fb6efcb --- /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 741c2bebcab61ce92f4f0e1b384abbf5ef947595 Mon Sep 17 00:00:00 2001 From: Daniel Reis Date: Wed, 10 Aug 2016 10:02:12 +0100 Subject: [PATCH 02/13] 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 71a89e850..1ee718a49 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 50d49ed8e7eaec90c6f16438822687c55f5bd4a2 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 14 Aug 2016 02:11:20 -0400 Subject: [PATCH 03/13] 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 000000000..1cb40c706 --- /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 000000000..b361c20f4 --- /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 000000000..a65b7a773 --- /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 000000000..acc21e9d6 --- /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 000000000..e583b35c7 --- /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 000000000..85f6512dc --- /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 000000000..26fbd1125 --- /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 51af7d485..f4b0fb5a1 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 000000000..2a69a2938 --- /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 000000000..898c392fc --- /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 000000000..a50a54311 --- /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 000000000..98f91e827 --- /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 000000000..a32f4c629 --- /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 000000000..b63f6bfb7 --- /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 000000000..b116b7d72 --- /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 000000000..998ed3363 --- /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 000000000..1c1254af9 --- /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 000000000..254d04162 --- /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 000000000..bcf652d44 --- /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 000000000..3f0d18052 --- /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 000000000..c2e3b69e5 --- /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 000000000..54e30447b --- /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 000000000..af2dd61d2 --- /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 000000000..f98a0126b --- /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 000000000..786eeb824 --- /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 000000000..177fb5fcd --- /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 000000000..5fcb2b188 --- /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 000000000..e825f8103 --- /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 000000000..375cd69e5 --- /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 000000000..50ce030af --- /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 000000000..08e99402c --- /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 000000000..061df24cd --- /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 000000000..efba7e657 --- /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 000000000..3bd6f571c --- /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 000000000..4281b6013 --- /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 000000000..707f94c2a --- /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 000000000..3030cd2d7 --- /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 000000000..4ed7f1a01 --- /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 000000000..876882a92 --- /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 000000000..ee87a6b8d --- /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 000000000..c80f256a9 --- /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 000000000..0d86ad97a --- /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 000000000..df0596b1e --- /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 000000000..5f67bf8f3 --- /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 000000000..0e092b513 --- /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 000000000..68649f312 --- /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 000000000..ba7d4fc2d --- /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 000000000..5467faa9a --- /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 000000000..621c51897 --- /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 000000000..ebf4aed16 --- /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 000000000..20454acb5 --- /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 000000000..3a9eb3d2c --- /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 000000000..dcc267254 --- /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 000000000..7d60474f8 --- /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 000000000..b0986ad6b --- /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 000000000..7d5a83f70 --- /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 000000000..a27d5e057 --- /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 000000000..88dad6a9b --- /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 000000000..1021cfa5d --- /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 000000000..9b75126b7 --- /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 2dedfca77035e149372c84a20b0120fc7a5e94b5 Mon Sep 17 00:00:00 2001 From: darshan-serpent Date: Mon, 26 Dec 2016 16:28:26 +0530 Subject: [PATCH 04/13] 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 1ee718a49..03a90789d 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 66efa2ce7..4704284df 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 e3ef3d024..fbfdfa3c5 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 e06aa4361..c64b6641d 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 8be90b8e3..a56cb32ea 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 patch_leaf_trgm(method): 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 patch_leaf_trgm(method): 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 @@ class IrModel(models.Model): '__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 d4ecc1025..4c99c1656 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 b45665e42..3363cb44c 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 34c7e30b3..a38534828 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 d0e26fbbee345dcdceb5659e97c7dacaaa0f35d4 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 14 Jan 2017 02:42:35 -0500 Subject: [PATCH 05/13] 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 1cb40c706..82c2b6a48 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 b361c20f4..8196def4b 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 a65b7a773..539cc8f35 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 acc21e9d6..17895634e 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 e583b35c7..693ded24a 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 85f6512dc..bdea0b03f 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 26fbd1125..f8756cf17 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 f4b0fb5a1..ce4d87ff1 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 2a69a2938..2afc635a4 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 898c392fc..48309f099 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 a50a54311..fc5f0b1fd 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 98f91e827..207244fdf 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 a32f4c629..a7b92317d 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 b63f6bfb7..b13c89e6d 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 b116b7d72..e3c18aa1f 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 998ed3363..877f27e12 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 1c1254af9..412d9805d 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 254d04162..e7d2efd43 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 bcf652d44..c298b5d53 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 3f0d18052..fb99d384e 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 c2e3b69e5..cde99d548 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 54e30447b..85df9e5b2 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 af2dd61d2..b6eba3517 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 000000000..52d1d25cc --- /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 f98a0126b..df2af2957 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 786eeb824..9394a3aba 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 177fb5fcd..9ff071199 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 000000000..75a765290 --- /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 5fcb2b188..f16165767 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 e825f8103..a31c99a7c 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 375cd69e5..a6a84155d 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 50ce030af..fe97ef92f 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 08e99402c..3524a057a 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 061df24cd..ed1b9c21a 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 efba7e657..3cc0b0320 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 3bd6f571c..b15d2238a 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 4281b6013..1843c5044 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 707f94c2a..11e81788d 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 3030cd2d7..7816808d0 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 4ed7f1a01..3d716d8aa 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 000000000..15ade1cf8 --- /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 876882a92..d72bb579a 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 ee87a6b8d..b68053aa3 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 c80f256a9..c6e09b459 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 0d86ad97a..7697421db 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 000000000..7bbe79e9e --- /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 df0596b1e..8a9b0756e 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 5f67bf8f3..ad24888c5 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 0e092b513..18f53fbe9 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 68649f312..2ee1e575b 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 ba7d4fc2d..7259450bc 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 5467faa9a..f55aa7296 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 000000000..34154a347 --- /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 621c51897..fabc72f14 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 ebf4aed16..62826a29e 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 20454acb5..89ff31b3d 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 3a9eb3d2c..30d63da2a 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 dcc267254..17795088a 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 7d60474f8..568657cc3 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 b0986ad6b..beec1f293 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 7d5a83f70..112ddd0b4 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 000000000..108f2b1f7 --- /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 a27d5e057..78121f790 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 88dad6a9b..d5fa51b63 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 000000000..206d2acf9 --- /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 1021cfa5d..6f69936f8 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 9b75126b7..012a06ee6 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 e3e8717b5bf298da95e8db66e83fbfaef3d7157a Mon Sep 17 00:00:00 2001 From: Dave Lasley Date: Wed, 1 Feb 2017 08:57:13 -0800 Subject: [PATCH 06/13] [MIG] 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 03a90789d..baebdf45c 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 fbfdfa3c5..b4dfddc23 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 82c2b6a48..384547e69 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 8196def4b..da024db6f 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 deaf7d891..9c8e3ad8a 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 539cc8f35..1c7376bb4 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 17895634e..4cbc335cd 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 693ded24a..d7149aaea 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 bdea0b03f..3f34506f4 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 f8756cf17..64ee4ca15 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 ce4d87ff1..3ed79ae5f 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 2afc635a4..be762f620 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 48309f099..d34c105b3 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 fc5f0b1fd..14f397770 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 207244fdf..2baf38e62 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 a7b92317d..4b61cb559 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 b13c89e6d..126e69e1d 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 e3c18aa1f..ec629c032 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 877f27e12..5347a074e 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 412d9805d..1d6e15662 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 e7d2efd43..4790d6784 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 c298b5d53..1e69a64f8 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 fb99d384e..7fd24a2b6 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 cde99d548..c503c6101 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 85df9e5b2..bccaf68d0 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 b6eba3517..e5a66f1a4 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 52d1d25cc..d4cd7e93a 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 df2af2957..c9d1dd60a 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 9394a3aba..c6e20a874 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 9ff071199..3928955dd 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 75a765290..8b91afbdb 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 f16165767..7069386fa 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 a31c99a7c..39ba8ac21 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 a6a84155d..1c199a9d9 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 fe97ef92f..4f5780a2a 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 3524a057a..dc8627d1a 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 ed1b9c21a..aef7d4b0c 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 3cc0b0320..1cf5c7a81 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 b15d2238a..b49665b4e 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 1843c5044..f77e7a536 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 11e81788d..1466030ef 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 7816808d0..e36301c84 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 3d716d8aa..9ca907f40 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 15ade1cf8..002570db5 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 d72bb579a..c128584fc 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 b68053aa3..456140c3c 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 c6e09b459..ea5d54630 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 7697421db..5dff7475b 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 7bbe79e9e..aa0da0707 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 8a9b0756e..a19306105 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 ad24888c5..d6e951529 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 18f53fbe9..e19f6bd6e 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 2ee1e575b..0d59e3d48 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 7259450bc..62cfe2168 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 f55aa7296..3a5b49286 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 34154a347..44823dfac 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 fabc72f14..063fc7c21 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 62826a29e..45765ee17 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 89ff31b3d..540aac5a5 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 30d63da2a..447be3213 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 17795088a..bad26ee29 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 568657cc3..9811ebf03 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 beec1f293..43dbb8279 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 112ddd0b4..a3a289d71 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 108f2b1f7..e39c4642c 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 78121f790..7cf393650 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 d5fa51b63..52e073458 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 206d2acf9..64ce2fe7a 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 6f69936f8..c05d9fc4e 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 012a06ee6..f4f54e523 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 a56cb32ea..19091d19f 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 patch_leaf_trgm(method): 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 @@ class IrModel(models.Model): '__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 4c99c1656..56731d1ac 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 @@ class TrgmIndex(models.Model): 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 @@ class TrgmIndex(models.Model): 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 a38534828..06b809cf2 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 36fb6efcb..87fa8f297 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 5399d82d99b9c3f399838b5cd8b0269838d7eafe Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Tue, 2 May 2017 01:01:15 +0200 Subject: [PATCH 07/13] 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 3ed79ae5f..7f6d24400 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 4790d6784..ffef8d341 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 3928955dd..6ce0fe21d 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 dc8627d1a..e29d0f315 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 000000000..553c89990 --- /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 44823dfac..9baf86e35 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 540aac5a5..0d0d88739 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 c43c0b676436e073917f7abb3769a2bdda38356c Mon Sep 17 00:00:00 2001 From: Graeme Gellatly Date: Tue, 12 Sep 2017 11:17:27 +1200 Subject: [PATCH 08/13] [FIX] 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 b4dfddc23..10c47bdc1 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 56731d1ac..6feee6de7 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 87fa8f297..9f4fd2d30 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 43b3f813ef6d1ebfa8fd799f5f8224b4eee980e7 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 2 Dec 2017 12:26:41 +0100 Subject: [PATCH 09/13] 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 7f6d24400..2293c12a1 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 6ce0fe21d..350a2123c 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 f77e7a536..7a295a94d 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 0d0d88739..ef51ad480 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 c05d9fc4e..bc1db2ec7 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 1163574e2b0a66afcb4c3ed16402cf92a69707ba Mon Sep 17 00:00:00 2001 From: cubells Date: Mon, 11 Jun 2018 17:26:25 +0200 Subject: [PATCH 10/13] [MIG] base_search_fuzzy: Migration to 11.0 --- base_search_fuzzy/README.rst | 108 +----------------- 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 ++++ base_search_fuzzy/tests/__init__.py | 5 +- .../tests/test_query_generation.py | 11 +- base_search_fuzzy/views/trgm_index.xml | 56 +++++---- 16 files changed, 92 insertions(+), 262 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 diff --git a/base_search_fuzzy/README.rst b/base_search_fuzzy/README.rst index baebdf45c..d7f8f00ab 100644 --- a/base_search_fuzzy/README.rst +++ b/base_search_fuzzy/README.rst @@ -1,107 +1 @@ -.. 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 ``SUPERUSER`` right (this allows the odoo module to install the - extension to the database). - - -Configuration -============= - -If the odoo module is installed: - -#. You can define ``GIN`` and ``GiST`` indexes for `char` and `text` via - `Settings -> Database Structure -> Trigram Index`. The index name will - automatically created for new entries. - - -Usage -===== - -#. You can create an index for the `name` field of `res.partner`. -#. In the search you can use: - - ``self.env['res.partner'].search([('name', '%', 'Jon Miller)])`` - -#. In this example the function will return positive result for `John Miller` or - `John Mill`. - -#. You can tweak the number of strings to be returned by adjusting the set limit - (default: 0.3). NB: Currently you have to set the limit by executing the - following SQL 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 smash it by providing detailed and welcomed feedback. - -Credits -======= - -Images ------- - -* Odoo Community Association: `Icon `_. - -Contributors ------------- - -* Christoph Giesel -* Jordi Ballester -* Serpent Consulting Services Pvt. Ltd. -* Dave Lasley - -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. +This file is going to be generated by oca-gen-addon-readme. diff --git a/base_search_fuzzy/__init__.py b/base_search_fuzzy/__init__.py index 4704284df..26efcff52 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 10c47bdc1..0c935541d 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 9c8e3ad8a..000000000 --- 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 c64b6641d..1b706c12b 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 19091d19f..c89958284 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 patch_leaf_trgm(method): 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 6feee6de7..cb31a3dc5 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 000000000..7429b3637 --- /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 000000000..1a545b521 --- /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 000000000..c5fa740b1 --- /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 000000000..f7e37120f --- /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 000000000..7955fa57b --- /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 000000000..9844367a8 --- /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/tests/__init__.py b/base_search_fuzzy/tests/__init__.py index 3363cb44c..839582041 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 06b809cf2..024ce1653 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 @@ class QueryGenerationCase(TransactionCase): 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 @@ class QueryGenerationCase(TransactionCase): 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 9f4fd2d30..e7efa51eb 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 a0cca98f56b20e35ecb83b69d44a07373b232fed Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Wed, 13 Jun 2018 05:31:56 +0200 Subject: [PATCH 11/13] [UPD] README.rst --- base_search_fuzzy/README.rst | 135 ++++- .../static/description/index.html | 485 ++++++++++++++++++ 2 files changed, 619 insertions(+), 1 deletion(-) 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 d7f8f00ab..bcc1a17e6 100644 --- a/base_search_fuzzy/README.rst +++ b/base_search_fuzzy/README.rst @@ -1 +1,134 @@ -This file is going to be generated by oca-gen-addon-readme. +============ +Fuzzy Search +============ + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github + :target: https://github.com/OCA/server-tools/tree/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 +============ + +#. The PostgreSQL extension ``pg_trgm`` should be available. In debian based + distribution you have to install the `postgresql-contrib` module. +#. Install the ``pg_trgm`` extension to your database or give your postgresql + user the ``SUPERUSER`` right (this allows the odoo module to install the + extension to the database). + +Configuration +============= + +If the odoo module is installed: + +#. You can define ``GIN`` and ``GiST`` indexes for `char` and `text` via + `Settings -> Database Structure -> Trigram Index`. The index name will + automatically created for new entries. + +Usage +===== + +#. You can create an index for the `name` field of `res.partner`. +#. In the search you can use: + + ``self.env['res.partner'].search([('name', '%', 'Jon Miller)])`` + +#. In this example the function will return positive result for `John Miller` + or `John Mill`. + +#. You can tweak the number of strings to be returned by adjusting the set + limit (default: 0.3). NB: Currently you have to set the limit by executing + the following SQL 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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* bloopark systems GmbH & Co. KG +* Eficent +* Serpent CS + +Contributors +~~~~~~~~~~~~ + +* Christoph Giesel +* Jordi Ballester +* Serpent Consulting Services Pvt. Ltd. +* Dave Lasley +* Vicent Cubells + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/server-tools `_ 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/static/description/index.html b/base_search_fuzzy/static/description/index.html new file mode 100644 index 000000000..040afc26a --- /dev/null +++ b/base_search_fuzzy/static/description/index.html @@ -0,0 +1,485 @@ + + + + + + +Fuzzy Search + + + + + + From 3796315b0fd5a29bb234c00a46da067f40b0517e Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sun, 17 Jun 2018 20:50:47 +0000 Subject: [PATCH 12/13] [UPD] 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 384547e69..9798a39c4 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 da024db6f..132a5087a 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 000000000..cd0d3bdca --- /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 1c7376bb4..da7acf3b4 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 4cbc335cd..b2ff9032c 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 d7149aaea..f50f4853c 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 3f34506f4..4b9ce864c 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 64ee4ca15..a7b00dec5 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 2293c12a1..c205d5fac 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 be762f620..bab712734 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 d34c105b3..4cca71405 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 14f397770..bf7db506a 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 2baf38e62..bfa0d7a77 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 4b61cb559..8816911d8 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 126e69e1d..038f847a8 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 ec629c032..a5ea2fdba 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 5347a074e..3d0648f85 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 1d6e15662..f67fd2d23 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 ffef8d341..95d621b65 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 1e69a64f8..a981d8413 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 7fd24a2b6..82223d519 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 c503c6101..737e0812a 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 bccaf68d0..fe2efe699 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 e5a66f1a4..7e6d38121 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 d4cd7e93a..d840af5ec 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 c9d1dd60a..29e4de860 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 c6e20a874..a39e490a8 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 350a2123c..1ba4b8ae3 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 8b91afbdb..673035a20 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 7069386fa..62c826dc4 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 39ba8ac21..cbeec3f1c 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 1c199a9d9..b60854bee 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 4f5780a2a..3cc300cb9 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 e29d0f315..1cef50c39 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 aef7d4b0c..73ce3bd37 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 1cf5c7a81..929042e5a 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 b49665b4e..35f428b6f 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 7a295a94d..70d26e02f 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 1466030ef..ba398c242 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 e36301c84..622a7b936 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 9ca907f40..f52361e76 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 002570db5..02a039342 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 c128584fc..163fc12ed 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 456140c3c..bc3432b16 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 ea5d54630..b603d3907 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 5dff7475b..e45d08bac 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 aa0da0707..6061a41f0 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 a19306105..389f9d009 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 d6e951529..b3b5650ed 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 553c89990..2e0b711e1 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 e19f6bd6e..0b0992ac0 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 0d59e3d48..8d5d9ab02 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 62cfe2168..f92f58dea 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 3a5b49286..053471607 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 9baf86e35..1461d9301 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 063fc7c21..9cb06dca6 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 45765ee17..ab2c9d110 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 ef51ad480..243fc7f99 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 447be3213..1d5419e07 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 bad26ee29..6c03d375c 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 9811ebf03..0b1077339 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 43dbb8279..d4ee0e954 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 a3a289d71..9433b44a9 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 e39c4642c..878efc599 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 7cf393650..351baa168 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 52e073458..9cefbdc57 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 64ce2fe7a..5694f0dbd 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 bc1db2ec7..5fc90620a 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 f4f54e523..3fa13fbcb 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 cf882002085558ed9588fcfd6387b199950402d5 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 10 Jan 2019 03:03:53 -0500 Subject: [PATCH 13/13] [MIG] 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 bcc1a17e6..7775805b6 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 0c935541d..4a95e43d8 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 cb31a3dc5..1d5aaf4d7 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 1a545b521..1e3d23908 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 c5fa740b1..c60300497 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 9844367a8..2f667ac81 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 040afc26a..73fc9b667 100644 --- a/base_search_fuzzy/static/description/index.html +++ b/base_search_fuzzy/static/description/index.html @@ -367,11 +367,11 @@ ul.auto-toc { !! 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 @@ 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:

    +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 @@ followed:

    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 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
  • 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 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

    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 024ce1653..25dce0bc6 100644 --- a/base_search_fuzzy/tests/test_query_generation.py +++ b/base_search_fuzzy/tests/test_query_generation.py @@ -74,7 +74,7 @@ class QueryGenerationCase(TransactionCase): 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',