[IMP] website: disable translation exports for test models

Avoids noise in POT files
This commit is contained in:
Olivier Dony 2014-07-14 16:37:49 +02:00
parent 77769ce74d
commit d041bd97d6
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,9 @@ from openerp.osv import orm, fields
class test_converter(orm.Model):
_name = 'website.converter.test'
# disable translation export for those brilliant field labels and values
_translate = False
_columns = {
'char': fields.char(),
'integer': fields.integer(),