diff --git a/docs/release-notes/version-3.6.md b/docs/release-notes/version-3.6.md index 314d613ff28..e2fcb1afeee 100644 --- a/docs/release-notes/version-3.6.md +++ b/docs/release-notes/version-3.6.md @@ -1,5 +1,13 @@ # NetBox v3.6 +## v3.6-beta2 (FUTURE) + +### Bug Fixes + +* [#13351](https://github.com/netbox-community/netbox/issues/13351) - Fix missing text due to incorrectly applied translation tags + +--- + ## v3.6-beta1 (2023-08-02) ### Breaking Changes diff --git a/netbox/templates/core/job.html b/netbox/templates/core/job.html index 2f97035949c..1fe3862cd0b 100644 --- a/netbox/templates/core/job.html +++ b/netbox/templates/core/job.html @@ -54,7 +54,12 @@
{% blocktrans %}Are you sure you want to disconnect these {{ selected_objects|length }} {{ obj_type_plural }}?{% endblocktrans %}
++ {% blocktrans with count=selected_objects|length %} + Are you sure you want to disconnect these {{ count }} {{ obj_type_plural }}? + {% endblocktrans %} +
{% blocktrans %}Are you sure you want to remove {{ device_bay.installed_device }} from {{ device_bay }}?{% endblocktrans %}
++ {% blocktrans with device=device_bay.installed_device %} + Are you sure you want to remove {{ device }} from {{ device_bay }}? + {% endblocktrans %} +
{% endblock %} diff --git a/netbox/templates/dcim/inc/nonracked_devices.html b/netbox/templates/dcim/inc/nonracked_devices.html index 88a37987beb..f6a427d252b 100644 --- a/netbox/templates/dcim/inc/nonracked_devices.html +++ b/netbox/templates/dcim/inc/nonracked_devices.html @@ -34,11 +34,17 @@{% blocktrans %}Are you sure you want to remove {{ device }} from virtual chassis {{ device.virtual_chassis }}?{% endblocktrans %}
++ {% blocktrans with name=device.virtual_chassis %} + Are you sure you want to remove {{ device }} from virtual chassis {{ name }}? + {% endblocktrans %} +
{% endblock %} diff --git a/netbox/templates/extras/configrevision_restore.html b/netbox/templates/extras/configrevision_restore.html index bf39bbdbb12..134a0b5478e 100644 --- a/netbox/templates/extras/configrevision_restore.html +++ b/netbox/templates/extras/configrevision_restore.html @@ -9,7 +9,7 @@ {% block subtitle %}