From e668577d975c18550e9f1d17c4283239b4068364 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 18 Apr 2021 12:31:17 +0200 Subject: [PATCH] fix as noted in #1481 --- 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 2f82df7d92..bc2ca4214b 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -59,8 +59,8 @@ class InvenTreeSetting(models.Model): }, 'INVENTREE_INSTANCE_TITLE': { - 'name': _('Use Instance Name'), - 'description': _('Use the instance name in the Titel-Bar'), + 'name': _('Use instance name'), + 'description': _('Use the instance name in the title-bar'), 'validator': bool, 'default': False, },