[IMP] website_sale: spellchecking

bzr revid: odo@openerp.com-20140129162331-sjmquzz172h9dkp4
This commit is contained in:
Olivier Dony 2014-01-29 17:23:31 +01:00
parent b7f88a58fb
commit 0ac11b430f
1 changed files with 5 additions and 2 deletions

View File

@ -5,8 +5,11 @@ class sale_configuration(osv.osv_memory):
_inherit = 'sale.config.settings'
_columns = {
'group_product_characteristics': fields.boolean("Support multiple characteristics per products ",
'group_product_characteristics': fields.boolean("Support custom product attributes",
group='base.group_user,base.group_portal,base.group_public',
implied_group='product.group_product_characteristics',
help="""Allow to manage several characteristics per product. This characteristics are used for filter and compare your products. As an example, if you sell all in one computers, you may have characteristics like RAM, Processor Speed, Manufacturing, to compare products"""),
help="Lets you add multiple custom attributes on products, "
"usable to filter and compare them. "
"For example if you sell computers, you could add custom attributes such as RAM size "
"or CPU speed to compare your products"""),
}