Skip to content

Commit

Permalink
Merge pull request OCA#976 from gdgellatly/10.0-typo
Browse files Browse the repository at this point in the history
10.0 typo - base_search_fuzzy
  • Loading branch information
pedrobaeza authored Sep 12, 2017
2 parents 9d4b31a + ece1219 commit 49b995f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion base_search_fuzzy/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, '
Expand Down
2 changes: 1 addition & 1 deletion base_search_fuzzy/models/trgm_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
)
Expand Down
4 changes: 2 additions & 2 deletions base_search_fuzzy/views/trgm_index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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'])]"/>
Expand All @@ -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"/>
Expand Down

0 comments on commit 49b995f

Please sign in to comment.