From 88eac5b37df9bcc12aa7973a805660687b93c07b Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 26 May 2026 11:47:57 -0400 Subject: [PATCH] Closes #22239: Rename apply button for table configs (#22266) --- netbox/templates/htmx/table.html | 3 ++- netbox/templates/inc/table_controls_htmx.html | 2 +- netbox/utilities/templates/helpers/table_config_form.html | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/netbox/templates/htmx/table.html b/netbox/templates/htmx/table.html index 34a919b0d..16e35f868 100644 --- a/netbox/templates/htmx/table.html +++ b/netbox/templates/htmx/table.html @@ -1,5 +1,6 @@ {# Render an HTMX-enabled table with paginator #} {% load helpers %} +{% load i18n %} {% load buttons %} {% load render_table from django_tables2 %} @@ -23,7 +24,7 @@ {# Include the updated "save" link for the table configuration #} {% if table.config_params and not table.embedded %} - Save + {% trans "Save" %} {% endif %} {# Update the bulk action buttons with new query parameters #} diff --git a/netbox/templates/inc/table_controls_htmx.html b/netbox/templates/inc/table_controls_htmx.html index d91ee9de0..672598848 100644 --- a/netbox/templates/inc/table_controls_htmx.html +++ b/netbox/templates/inc/table_controls_htmx.html @@ -38,7 +38,7 @@