From 4c8fdab072b9053f0b7e636c33be38072fb78683 Mon Sep 17 00:00:00 2001 From: Matthias Mair <66015116+matmair@users.noreply.github.com> Date: Mon, 23 Aug 2021 09:44:52 +0200 Subject: [PATCH] fixed descriptions --- InvenTree/common/models.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index d61ca54b51..0e825e53b3 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -787,37 +787,37 @@ class InvenTreeSetting(BaseInvenTreeSetting): # enable/diable ui elements 'BUILD_FUNCTION_ENABLE': { 'name': _('Enable build'), - 'description': _('Enable build functionally in InvenTree interface'), + 'description': _('Enable build functionality in InvenTree interface'), 'default': True, 'validator': bool, }, 'BUY_FUNCTION_ENABLE': { 'name': _('Enable buy'), - 'description': _('Enable buy functionally in InvenTree interface'), + 'description': _('Enable buy functionality in InvenTree interface'), 'default': True, 'validator': bool, }, 'SELL_FUNCTION_ENABLE': { 'name': _('Enable sell'), - 'description': _('Enable sell functionally in InvenTree interface'), + 'description': _('Enable sell functionality in InvenTree interface'), 'default': True, 'validator': bool, }, 'STOCK_FUNCTION_ENABLE': { 'name': _('Enable stock'), - 'description': _('Enable stock functionally in InvenTree interface'), + 'description': _('Enable stock functionality in InvenTree interface'), 'default': True, 'validator': bool, }, 'SO_FUNCTION_ENABLE': { 'name': _('Enable SO'), - 'description': _('Enable SO functionally in InvenTree interface'), + 'description': _('Enable SO functionality in InvenTree interface'), 'default': True, 'validator': bool, }, 'PO_FUNCTION_ENABLE': { 'name': _('Enable PO'), - 'description': _('Enable PO functionally in InvenTree interface'), + 'description': _('Enable PO functionality in InvenTree interface'), 'default': True, 'validator': bool, },