Browse Source

[FIX] Typos

pull/1290/head
Graeme Gellatly 7 years ago
committed by Jairo Llopis
parent
commit
54251e567f
  1. 2
      base_search_fuzzy/__manifest__.py
  2. 2
      base_search_fuzzy/models/trgm_index.py
  3. 4
      base_search_fuzzy/views/trgm_index.xml

2
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, '

2
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.'
)

4
base_search_fuzzy/views/trgm_index.xml

@ -6,7 +6,7 @@
<field name="name">trgm.index.view.form</field>
<field name="model">trgm.index</field>
<field name="arch" type="xml">
<form string="Trigam Index">
<form string="Trigram Index">
<sheet>
<group col="4">
<field name="field_id" domain="[('ttype', 'in', ['char', 'text'])]"/>
@ -22,7 +22,7 @@
<field name="name">trgm.index.view.tree</field>
<field name="model">trgm.index</field>
<field name="arch" type="xml">
<tree string="Trigam Index">
<tree string="Trigram Index">
<field name="field_id"/>
<field name="index_name"/>
<field name="index_type"/>

Loading…
Cancel
Save