From 74c4c559e47a37f517c4478f68b09f4e4afc725f Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 7 Jun 2021 05:33:20 +0200 Subject: [PATCH] clearer wording for internal price settings --- InvenTree/common/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index 066f028236..31a0031c48 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -207,14 +207,14 @@ class InvenTreeSetting(models.Model): 'PART_INTERNAL_PRICE': { 'name': _('Internal Prices'), - 'description': _('Set internal prices for parts'), + 'description': _('Enable internal prices for parts'), 'default': False, 'validator': bool }, 'PART_BOM_USE_INTERNAL_PRICE': { - 'name': _('Internal Prices in BOM-Price'), - 'description': _('Use the internal price (if set) for BOM-price calculations'), + 'name': _('Internal Price as BOM-Price'), + 'description': _('Use the internal price (if set) in BOM-price calculations'), 'default': False, 'validator': bool },