From 02411c1ab1e14582665d03f20745120c7a80c4f2 Mon Sep 17 00:00:00 2001 From: Jeff Gehlbach Date: Wed, 3 Jul 2024 13:10:18 -0400 Subject: [PATCH] Added CS, DA, IT, NL, and PL, minus the .po and .mo starting point files --- README.md | 2 +- docs/release-notes/version-4.0.md | 5 +++++ netbox/netbox/settings.py | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da07f226d..34975980b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ License Contributors GitHub stars - Languages supported + Languages supported CI status

diff --git a/docs/release-notes/version-4.0.md b/docs/release-notes/version-4.0.md index 028381f68..44da5d64d 100644 --- a/docs/release-notes/version-4.0.md +++ b/docs/release-notes/version-4.0.md @@ -6,6 +6,11 @@ * [#16424](https://github.com/netbox-community/netbox/issues/16424) - Enable filtering of devices by cluster and cluster group * [#16725](https://github.com/netbox-community/netbox/issues/16725) - Always position the admin section last in the navigation menu +* [#15660](https://github.com/netbox-community/netbox/issues/15660) - Add Czech language support +* [#15696](https://github.com/netbox-community/netbox/issues/15696) - Add Danish language support +* [#16793](https://github.com/netbox-community/netbox/issues/16793) - Add Italian language support +* [#14640](https://github.com/netbox-community/netbox/issues/14640) - Add Dutch language support +* [#14792](https://github.com/netbox-community/netbox/issues/14792) - Add Polish language support ### Bug Fixes diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 3a8e51e05..41d51c7fb 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -721,11 +721,16 @@ RQ_QUEUES.update({ # Supported translation languages LANGUAGES = ( + ('cs', _('Czech')), + ('da', _('Danish')), ('de', _('German')), ('en', _('English')), ('es', _('Spanish')), ('fr', _('French')), + ('it', _('Italian')), ('ja', _('Japanese')), + ('nl', _('Dutch')), + ('pl', _('Polish')), ('pt', _('Portuguese')), ('ru', _('Russian')), ('tr', _('Turkish')),