diff --git a/product_no_translation/__manifest__.py b/product_no_translation/__manifest__.py index a6104ee..f699e84 100644 --- a/product_no_translation/__manifest__.py +++ b/product_no_translation/__manifest__.py @@ -23,7 +23,7 @@ { 'name': 'Product no Translation', - 'version': '12.0.0.0.1', + 'version': '14.0.1.0.0', 'category': 'Sales Management', 'license': 'AGPL-3', 'summary': 'For companies that work with only one language', @@ -37,5 +37,5 @@ And it reduces the start time of the Point of Sale ! 'author': 'Akretion', 'website': 'http://www.akretion.com', 'depends': ['product'], - 'installable': False, + 'installable': True, } diff --git a/product_no_translation/product.py b/product_no_translation/product.py index a1ed71b..30136c7 100644 --- a/product_no_translation/product.py +++ b/product_no_translation/product.py @@ -31,13 +31,6 @@ class ProductTemplate(models.Model): description = fields.Text(translate=False) name = fields.Char(translate=False) - -class ProductCategory(models.Model): - _inherit = "product.category" - - name = fields.Char(translate=False) - - class ProductAttribute(models.Model): _inherit = "product.attribute"