From f1f6c9ff66f4a557e9020905394330085194dfb5 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 24 Apr 2022 15:25:34 +0200 Subject: [PATCH] remove InvenTree from settings texts --- InvenTree/common/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index d0ca4636a0..5bc96cf5c0 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -684,7 +684,7 @@ class InvenTreeSetting(BaseInvenTreeSetting): }, 'INVENTREE_INSTANCE': { - 'name': _('InvenTree Instance Name'), + 'name': _('Server Instance Name'), 'default': 'InvenTree server', 'description': _('String descriptor for the server instance'), }, @@ -1354,7 +1354,7 @@ class InvenTreeUserSetting(BaseInvenTreeSetting): 'STICKY_HEADER': { 'name': _('Fixed Navbar'), - 'description': _('InvenTree navbar position is fixed to the top of the screen'), + 'description': _('The navbar position is fixed to the top of the screen'), 'default': False, 'validator': bool, },