diff --git a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js index 262991a..f52c22f 100644 --- a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js +++ b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js @@ -653,15 +653,15 @@ return view.extend({ o.rmempty = false; o.ucisection = 'main'; - o = s.taboption('additional', form.ListValue, 'dns_type', 'DNS Protocol Type', 'Select DNS protocol to use'); - o.value('doh', 'DNS over HTTPS (DoH)'); - o.value('dot', 'DNS over TLS (DoT)'); - o.value('udp', 'UDP (Unprotected DNS)'); + o = s.taboption('additional', form.ListValue, 'dns_type', _('DNS Protocol Type'), _('Select DNS protocol to use')); + o.value('doh', _('DNS over HTTPS (DoH)')); + o.value('dot', _('DNS over TLS (DoT)')); + o.value('udp', _('UDP (Unprotected DNS)')); o.default = 'doh'; o.rmempty = false; o.ucisection = 'main'; - o = s.taboption('additional', form.Value, 'dns_server', 'DNS Server', 'Select or enter DNS server address'); + o = s.taboption('additional', form.Value, 'dns_servers', _('DNS Server'), _('Select or enter DNS server address')); o.value('1.1.1.1', 'Cloudflare (1.1.1.1)'); o.value('8.8.8.8', 'Google (8.8.8.8)'); o.value('9.9.9.9', 'Quad9 (9.9.9.9)');