fixed descriptions

This commit is contained in:
Matthias Mair 2021-08-23 09:44:52 +02:00 committed by GitHub
parent 9fd4b5cce3
commit 4c8fdab072
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
},