feat: add German localization

Internationalize plugin navigation, forms, tables, model labels, detail templates, choices, and validation messages. Ship a compiled German Django message catalog and bump the plugin version to 1.10.0.
This commit is contained in:
2026-07-24 15:41:35 +02:00
parent 7ca670c717
commit 5887129546
20 changed files with 499 additions and 158 deletions
+4 -3
View File
@@ -15,15 +15,16 @@ limitations under the License.
"""
from netbox.plugins import PluginConfig
from django.utils.translation import gettext_lazy as _
__version__ = "1.9.1"
__version__ = "1.10.0"
class SLMConfig(PluginConfig):
name = "netbox_slm"
verbose_name = "Software Lifecycle Management"
verbose_name = _("Software Lifecycle Management")
version = __version__
description = "Software Lifecycle Management Netbox Plugin."
description = _("Software Lifecycle Management NetBox Plugin.")
author = "ICTU"
author_email = "open-source-projects@ictu.nl"
base_url = "slm"