diff --git a/client/src/__locales/en.json b/client/src/__locales/en.json index d59ab44b0f5..fbf14f02d5a 100644 --- a/client/src/__locales/en.json +++ b/client/src/__locales/en.json @@ -677,7 +677,9 @@ "log_and_stats_section_label": "Query log and statistics", "ignore_query_log": "Ignore this client in query log", "ignore_statistics": "Ignore this client in statistics", - "schedule": "Schedule off time", + "schedule_services": "Service block pause", + "schedule_services_desc": "Here you can configure the pause schedule of the service-blocking filter", + "schedule_services_desc_client": "Here you can configure the pause schedule of the service-blocking filter for this client", "schedule_desc": "Set inactivity periods for blocked services", "schedule_invalid_select": "The start time must be before the end time", "schedule_select_days": "Select days", diff --git a/client/src/components/Filters/Services/index.js b/client/src/components/Filters/Services/index.js index a8856f7ed8e..3a0a12fd758 100644 --- a/client/src/components/Filters/Services/index.js +++ b/client/src/components/Filters/Services/index.js @@ -75,8 +75,8 @@ const Services = () => { { , }, + schedule_services: { + title: 'schedule_services', + component: ( + <> +
+ schedule_services_desc_client +
+ + + ), + }, upstream_dns: { title: 'upstream_dns', component:
@@ -294,18 +309,6 @@ let Form = (props) => {
, }, - schedule: { - title: 'schedule', - component: ( -
- -
- ), - }, }; const activeTab = tabs[activeTabLabel].component;