mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-06 11:36:50 +03:00
fix(podkop.js): update DNS protocol type and server labels to use translation function
This commit is contained in:
@@ -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)');
|
||||
|
||||
Reference in New Issue
Block a user