diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py index 259127c747..f162cfd121 100644 --- a/InvenTree/plugin/models.py +++ b/InvenTree/plugin/models.py @@ -20,6 +20,9 @@ class PluginConfig(models.Model): name: PluginName of the plugin - serves for a manual double check if the right plugin is used active: Should the plugin be loaded? """ + class Meta: + verbose_name = _("Plugin Configuration") + verbose_name_plural = _("Plugin Configurations") key = models.CharField( unique=True,