Sfoglia il codice sorgente

traduccion de texto

encisoarias 5 anni fa
parent
commit
b9a2fca408
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      models/stock_inventory.py

+ 2 - 2
models/stock_inventory.py

@@ -29,7 +29,7 @@ class StockInventory(models.Model):
 
     categ_id = fields.Many2one(
             comodel_name='product.category',
-            string='Inventoried Product Category',
+            string='Categoría de producto',
             readonly=True,
             states={'draft': [('readonly', False)]},
             help="Specify Product Category to focus your inventory on a particular Product Category."
@@ -42,7 +42,7 @@ class StockInventory(models.Model):
     @api.model
     def _get_available_filters(self):
         res_filter = super(StockInventory, self)._get_available_filters()
-        res_filter.append(('category', _('Only Products from Product Category')))
+        res_filter.append(('category', _('Por categoría de producto')))
         return res_filter
 
     @api.model