From 3562b913a293f2da1969cbd4fe22f6bf1cc2714a Mon Sep 17 00:00:00 2001 From: Andrey Petelin Date: Thu, 2 Oct 2025 19:35:40 +0500 Subject: [PATCH] chore: update DNS protocol and server field labels --- .../htdocs/luci-static/resources/view/podkop/configSection.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/configSection.js b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/configSection.js index 73136ac..63867f2 100644 --- a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/configSection.js +++ b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/configSection.js @@ -246,7 +246,7 @@ function createConfigSection(section, map, network) { o.depends('mode', 'vpn'); o.ucisection = s.section; - o = s.taboption('basic', form.ListValue, 'domain_resolver_dns_type', _('Domain Resolver DNS Protocol Type'), _('Select DNS protocol for split')); + o = s.taboption('basic', form.ListValue, 'domain_resolver_dns_type', _('DNS Protocol Type'), _('Select the DNS protocol type for the domain resolver')); o.value('doh', _('DNS over HTTPS (DoH)')); o.value('dot', _('DNS over TLS (DoT)')); o.value('udp', _('UDP (Unprotected DNS)')); @@ -255,7 +255,7 @@ function createConfigSection(section, map, network) { o.depends('domain_resolver_enabled', '1'); o.ucisection = s.section; - o = s.taboption('basic', form.Value, 'domain_resolver_dns_server', _('Domain Resolver Server'), _('Select or enter DNS server address')); + o = s.taboption('basic', form.Value, 'domain_resolver_dns_server', _('DNS Server'), _('Select or enter DNS server address')); Object.entries(constants.DNS_SERVER_OPTIONS).forEach(([key, label]) => { o.value(key, _(label)); });