chore(i18n): components.settings.dns.*
This commit is contained in:
@@ -509,7 +509,7 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
// 使用YAML编辑器的值
|
||||
const parsedConfig = yaml.load(yamlContent);
|
||||
if (typeof parsedConfig !== "object" || parsedConfig === null) {
|
||||
throw new Error(t("Invalid configuration"));
|
||||
throw new Error(t("components.settings.dns.errors.invalid"));
|
||||
}
|
||||
config = parsedConfig as Record<string, any>;
|
||||
}
|
||||
@@ -547,7 +547,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
}
|
||||
}
|
||||
|
||||
showNotice.error("DNS configuration error:", cleanErrorMsg);
|
||||
showNotice.error(
|
||||
"components.settings.dns.messages.configError",
|
||||
cleanErrorMsg,
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -558,7 +561,7 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
}
|
||||
|
||||
setOpen(false);
|
||||
showNotice.success("DNS settings saved");
|
||||
showNotice.success("components.settings.dns.messages.saved");
|
||||
} catch (err) {
|
||||
showNotice.error(err);
|
||||
}
|
||||
@@ -610,7 +613,7 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
open={open}
|
||||
title={
|
||||
<Box display="flex" justifyContent="space-between" alignItems="center">
|
||||
{t("DNS Overwrite")}
|
||||
{t("components.settings.dns.dialog.title")}
|
||||
<Box display="flex" alignItems="center" gap={1}>
|
||||
<Button
|
||||
variant="outlined"
|
||||
@@ -654,7 +657,7 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
color="warning.main"
|
||||
sx={{ mb: 2, mt: 0, fontStyle: "italic" }}
|
||||
>
|
||||
{t("DNS Settings Warning")}
|
||||
{t("components.settings.dns.dialog.warning")}
|
||||
</Typography>
|
||||
|
||||
{visualization ? (
|
||||
@@ -663,11 +666,13 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
variant="subtitle1"
|
||||
sx={{ mt: 1, mb: 1, fontWeight: "bold" }}
|
||||
>
|
||||
{t("DNS Settings")}
|
||||
{t("components.settings.dns.sections.general")}
|
||||
</Typography>
|
||||
|
||||
<Item>
|
||||
<ListItemText primary={t("Enable DNS")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.dns.fields.enable")}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
checked={values.enable}
|
||||
@@ -676,7 +681,9 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<ListItemText primary={t("DNS Listen")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.dns.fields.listen")}
|
||||
/>
|
||||
<TextField
|
||||
size="small"
|
||||
autoComplete="off"
|
||||
@@ -688,7 +695,9 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<ListItemText primary={t("Enhanced Mode")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.dns.fields.enhancedMode")}
|
||||
/>
|
||||
<FormControl size="small" sx={{ width: 150 }}>
|
||||
<Select
|
||||
value={values.enhancedMode}
|
||||
@@ -701,7 +710,9 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<ListItemText primary={t("Fake IP Range")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.dns.fields.fakeIpRange")}
|
||||
/>
|
||||
<TextField
|
||||
size="small"
|
||||
autoComplete="off"
|
||||
@@ -713,7 +724,9 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<ListItemText primary={t("Fake IP Filter Mode")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.dns.fields.fakeIpFilterMode")}
|
||||
/>
|
||||
<FormControl size="small" sx={{ width: 150 }}>
|
||||
<Select
|
||||
value={values.fakeIpFilterMode}
|
||||
@@ -727,8 +740,8 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item>
|
||||
<ListItemText
|
||||
primary={t("IPv6")}
|
||||
secondary={t("Enable IPv6 DNS resolution")}
|
||||
primary={t("components.settings.dns.fields.ipv6.label")}
|
||||
secondary={t("components.settings.dns.fields.ipv6.description")}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
@@ -739,8 +752,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item>
|
||||
<ListItemText
|
||||
primary={t("Prefer H3")}
|
||||
secondary={t("DNS DOH使用HTTP/3")}
|
||||
primary={t("components.settings.dns.fields.preferH3.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.preferH3.description",
|
||||
)}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
@@ -751,8 +766,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item>
|
||||
<ListItemText
|
||||
primary={t("Respect Rules")}
|
||||
secondary={t("DNS connections follow routing rules")}
|
||||
primary={t("components.settings.dns.fields.respectRules.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.respectRules.description",
|
||||
)}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
@@ -763,8 +780,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item>
|
||||
<ListItemText
|
||||
primary={t("Use Hosts")}
|
||||
secondary={t("Enable to resolve hosts through hosts file")}
|
||||
primary={t("components.settings.dns.fields.useHosts.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.useHosts.description",
|
||||
)}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
@@ -775,8 +794,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item>
|
||||
<ListItemText
|
||||
primary={t("Use System Hosts")}
|
||||
secondary={t("Enable to resolve hosts through system hosts file")}
|
||||
primary={t("components.settings.dns.fields.useSystemHosts.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.useSystemHosts.description",
|
||||
)}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
@@ -787,8 +808,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item>
|
||||
<ListItemText
|
||||
primary={t("Direct Nameserver Follow Policy")}
|
||||
secondary={t("Whether to follow nameserver policy")}
|
||||
primary={t("components.settings.dns.fields.directPolicy.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.directPolicy.description",
|
||||
)}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
@@ -799,8 +822,12 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Default Nameserver")}
|
||||
secondary={t("Default DNS servers used to resolve DNS servers")}
|
||||
primary={t(
|
||||
"components.settings.dns.fields.defaultNameserver.label",
|
||||
)}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.defaultNameserver.description",
|
||||
)}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -816,8 +843,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Nameserver")}
|
||||
secondary={t("List of DNS servers")}
|
||||
primary={t("components.settings.dns.fields.nameserver.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.nameserver.description",
|
||||
)}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -833,8 +862,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Fallback")}
|
||||
secondary={t("List of fallback DNS servers")}
|
||||
primary={t("components.settings.dns.fields.fallback.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.fallback.description",
|
||||
)}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -850,8 +881,8 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Proxy Server Nameserver")}
|
||||
secondary={t("Proxy Node Nameserver")}
|
||||
primary={t("components.settings.dns.fields.proxy.label")}
|
||||
secondary={t("components.settings.dns.fields.proxy.description")}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -867,8 +898,12 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Direct Nameserver")}
|
||||
secondary={t("Direct outbound Nameserver")}
|
||||
primary={t(
|
||||
"components.settings.dns.fields.directNameserver.label",
|
||||
)}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.directNameserver.description",
|
||||
)}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -884,8 +919,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Fake IP Filter")}
|
||||
secondary={t("Domains that skip fake IP resolution")}
|
||||
primary={t("components.settings.dns.fields.fakeIpFilter.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.fakeIpFilter.description",
|
||||
)}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -901,8 +938,12 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Nameserver Policy")}
|
||||
secondary={t("Domain-specific DNS server")}
|
||||
primary={t(
|
||||
"components.settings.dns.fields.nameserverPolicy.label",
|
||||
)}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.nameserverPolicy.description",
|
||||
)}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -920,13 +961,15 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
variant="subtitle2"
|
||||
sx={{ mt: 2, mb: 1, fontWeight: "bold" }}
|
||||
>
|
||||
{t("Fallback Filter Settings")}
|
||||
{t("components.settings.dns.sections.fallbackFilter")}
|
||||
</Typography>
|
||||
|
||||
<Item>
|
||||
<ListItemText
|
||||
primary={t("GeoIP Filtering")}
|
||||
secondary={t("Enable GeoIP filtering for fallback")}
|
||||
primary={t("components.settings.dns.fields.geoipFiltering.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.geoipFiltering.description",
|
||||
)}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
@@ -936,7 +979,9 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<ListItemText primary={t("GeoIP Code")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.dns.fields.geoipCode")}
|
||||
/>
|
||||
<TextField
|
||||
size="small"
|
||||
autoComplete="off"
|
||||
@@ -949,8 +994,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Fallback IP CIDR")}
|
||||
secondary={t("IP CIDRs not using fallback servers")}
|
||||
primary={t("components.settings.dns.fields.fallbackIpCidr.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.fallbackIpCidr.description",
|
||||
)}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -966,8 +1013,10 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Fallback Domain")}
|
||||
secondary={t("Domains using fallback servers")}
|
||||
primary={t("components.settings.dns.fields.fallbackDomain.label")}
|
||||
secondary={t(
|
||||
"components.settings.dns.fields.fallbackDomain.description",
|
||||
)}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
@@ -986,13 +1035,13 @@ export function DnsViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
variant="subtitle1"
|
||||
sx={{ mt: 3, mb: 0, fontWeight: "bold" }}
|
||||
>
|
||||
{t("Hosts Settings")}
|
||||
{t("components.settings.dns.sections.hosts")}
|
||||
</Typography>
|
||||
|
||||
<Item sx={{ flexDirection: "column", alignItems: "flex-start" }}>
|
||||
<ListItemText
|
||||
primary={t("Hosts")}
|
||||
secondary={t("Custom domain to IP or domain mapping")}
|
||||
primary={t("components.settings.dns.fields.hosts.label")}
|
||||
secondary={t("components.settings.dns.fields.hosts.description")}
|
||||
/>
|
||||
<TextField
|
||||
fullWidth
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "واجهة الشبكة",
|
||||
"Ip Address": "عنوان IP",
|
||||
"Mac Address": "عنوان MAC",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "فتح الرابط",
|
||||
"Replace host, port, secret with %host, %port, %secret": "استبدل المضيف والمنفذ والمفتاح بـ %host و%port و%secret",
|
||||
"Support %host, %port, %secret": "يدعم %host و%port و%secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Merge file key error, changes reverted",
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "يتطلب Clash Verge امتيازات المسؤول لإعادة تثبيت خدمة النظام",
|
||||
"DNS Settings": "DNS Settings",
|
||||
"DNS settings saved": "DNS settings saved",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS Overwrite",
|
||||
"DNS Settings Warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled",
|
||||
"Enable DNS": "Enable DNS",
|
||||
"DNS Listen": "DNS Listen",
|
||||
"Enhanced Mode": "Enhanced Mode",
|
||||
"Fake IP Range": "Fake IP Range",
|
||||
"Fake IP Filter Mode": "Fake IP Filter Mode",
|
||||
"Enable IPv6 DNS resolution": "Enable IPv6 DNS resolution",
|
||||
"Prefer H3": "Prefer H3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH uses HTTP/3",
|
||||
"Respect Rules": "Respect Rules",
|
||||
"DNS connections follow routing rules": "DNS connections follow routing rules",
|
||||
"Use Hosts": "Use Hosts",
|
||||
"Enable to resolve hosts through hosts file": "Enable to resolve hosts through hosts file",
|
||||
"Use System Hosts": "Use System Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "Enable to resolve hosts through system hosts file",
|
||||
"Direct Nameserver Follow Policy": "Direct Nameserver Follow Policy",
|
||||
"Whether to follow nameserver policy": "Whether to follow nameserver policy",
|
||||
"Default Nameserver": "Default Nameserver",
|
||||
"Default DNS servers used to resolve DNS servers": "Default DNS servers used to resolve DNS servers",
|
||||
"Nameserver": "Nameserver",
|
||||
"List of DNS servers": "List of DNS servers, comma separated",
|
||||
"Fallback": "Fallback",
|
||||
"List of fallback DNS servers": "List of fallback DNS servers, comma separated",
|
||||
"Proxy Server Nameserver": "Proxy Server Nameserver",
|
||||
"Proxy Node Nameserver": "DNS servers for proxy node domain resolution",
|
||||
"Direct Nameserver": "Direct Nameserver",
|
||||
"Direct outbound Nameserver": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated",
|
||||
"Fake IP Filter": "Fake IP Filter",
|
||||
"Domains that skip fake IP resolution": "Domains that skip fake IP resolution, comma separated",
|
||||
"Nameserver Policy": "Nameserver Policy",
|
||||
"Domain-specific DNS server": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2",
|
||||
"Fallback Filter Settings": "Fallback Filter Settings",
|
||||
"GeoIP Filtering": "GeoIP Filtering",
|
||||
"Enable GeoIP filtering for fallback": "Enable GeoIP filtering for fallback",
|
||||
"GeoIP Code": "GeoIP Code",
|
||||
"Fallback IP CIDR": "Fallback IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "IP CIDRs not using fallback servers, comma separated",
|
||||
"Fallback Domain": "Fallback Domain",
|
||||
"Domains using fallback servers": "Domains using fallback servers, comma separated",
|
||||
"Hosts Settings": "Hosts Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Custom domain to IP or domain mapping",
|
||||
"Website Tests": "Website Tests",
|
||||
"Clash Info": "Clash Info",
|
||||
"Core Version": "Core Version",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "تم تطبيق الإعدادات"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS Overwrite",
|
||||
"warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS Settings",
|
||||
"fallbackFilter": "Fallback Filter Settings",
|
||||
"hosts": "Hosts Settings"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "Enable DNS",
|
||||
"listen": "DNS Listen",
|
||||
"enhancedMode": "Enhanced Mode",
|
||||
"fakeIpRange": "Fake IP Range",
|
||||
"fakeIpFilterMode": "Fake IP Filter Mode",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "Enable IPv6 DNS resolution"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "Prefer H3",
|
||||
"description": "DNS DOH uses HTTP/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Respect Rules",
|
||||
"description": "DNS connections follow routing rules"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Use Hosts",
|
||||
"description": "Enable to resolve hosts through hosts file"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Use System Hosts",
|
||||
"description": "Enable to resolve hosts through system hosts file"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Direct Nameserver Follow Policy",
|
||||
"description": "Whether to follow nameserver policy"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Default Nameserver",
|
||||
"description": "Default DNS servers used to resolve DNS servers"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "Nameserver",
|
||||
"description": "List of DNS servers, comma separated"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Fallback",
|
||||
"description": "List of fallback DNS servers, comma separated"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Proxy Server Nameserver",
|
||||
"description": "DNS servers for proxy node domain resolution"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Direct Nameserver",
|
||||
"description": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IP Filter",
|
||||
"description": "Domains that skip fake IP resolution, comma separated"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Nameserver Policy",
|
||||
"description": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP Filtering",
|
||||
"description": "Enable GeoIP filtering for fallback"
|
||||
},
|
||||
"geoipCode": "GeoIP Code",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Fallback IP CIDR",
|
||||
"description": "IP CIDRs not using fallback servers, comma separated"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Fallback Domain",
|
||||
"description": "Domains using fallback servers, comma separated"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Custom domain to IP or domain mapping"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS settings saved",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "Netzwerkschnittstelle",
|
||||
"Ip Address": "IP-Adresse",
|
||||
"Mac Address": "MAC-Adresse",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "Link öffnen",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Verwenden Sie %host, %port, %secret für Host, Port und Zugangsschlüssel",
|
||||
"Support %host, %port, %secret": "Unterstützt %host, %port, %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Schlüsselfehler in der Überdeckungsdatei. Die Änderungen wurden rückgängig gemacht.",
|
||||
"Merge File Error": "Fehler in der Überdeckungsdatei. Die Änderungen wurden rückgängig gemacht.",
|
||||
"Service Administrator Prompt": "Clash Verge benötigt Administratorrechte, um den Systemdienst zu installieren.",
|
||||
"DNS Settings": "DNS-Einstellungen",
|
||||
"DNS settings saved": "DNS-Einstellungen wurden gespeichert",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS-Überschreibung",
|
||||
"DNS Settings Warning": "Wenn Sie sich nicht mit diesen Einstellungen auskennen, ändern Sie sie nicht und lassen Sie die DNS-Überschreibung aktiviert.",
|
||||
"Enable DNS": "DNS aktivieren",
|
||||
"DNS Listen": "DNS-Lauschangabe",
|
||||
"Enhanced Mode": "Erweiterter Modus",
|
||||
"Fake IP Range": "Fake-IP-Bereich",
|
||||
"Fake IP Filter Mode": "Fake-IP-Filtermodus",
|
||||
"Enable IPv6 DNS resolution": "IPv6-DNS-Auflösung aktivieren",
|
||||
"Prefer H3": "HTTP/3 bevorzugen",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH verwendet HTTP/3-Protokoll",
|
||||
"Respect Rules": "Routierungsregeln beachten",
|
||||
"DNS connections follow routing rules": "DNS-Verbindungen folgen den Routierungsregeln",
|
||||
"Use Hosts": "Hosts verwenden",
|
||||
"Enable to resolve hosts through hosts file": "Aktivieren Sie die Auflösung von Hosts über die hosts-Datei",
|
||||
"Use System Hosts": "System-Hosts verwenden",
|
||||
"Enable to resolve hosts through system hosts file": "Aktivieren Sie die Auflösung von Hosts über die System-hosts-Datei",
|
||||
"Direct Nameserver Follow Policy": "Direkte Namenserver folgen der Strategie",
|
||||
"Whether to follow nameserver policy": "Ob die Namenserver-Strategie befolgt werden soll",
|
||||
"Default Nameserver": "Standard-Namenserver",
|
||||
"Default DNS servers used to resolve DNS servers": "Standard-DNS-Server, die zum Auflösen von DNS-Servern verwendet werden",
|
||||
"Nameserver": "Namenserver",
|
||||
"List of DNS servers": "Liste der DNS-Server, getrennt durch Kommas",
|
||||
"Fallback": "Rückfallserver",
|
||||
"List of fallback DNS servers": "Liste der Rückfall-DNS-Server, getrennt durch Kommas",
|
||||
"Proxy Server Nameserver": "Proxy-Server-Namenserver",
|
||||
"Proxy Node Nameserver": "Proxy-Knoten-Namenserver, nur für die Auflösung der Domains von Proxy-Knoten verwendet, getrennt durch Kommas",
|
||||
"Direct Nameserver": "Direkter Namenserver",
|
||||
"Direct outbound Nameserver": "Direkter Ausgangs-Namenserver, unterstützt das Schlüsselwort system, getrennt durch Kommas",
|
||||
"Fake IP Filter": "Fake-IP-Filter",
|
||||
"Domains that skip fake IP resolution": "Domains, die die Fake-IP-Auflösung überspringen, getrennt durch Kommas",
|
||||
"Nameserver Policy": "Namenserver-Strategie",
|
||||
"Domain-specific DNS server": "Domain-spezifischer DNS-Server, mehrere Server getrennt durch Semikolons, Format: domain=server1;server2",
|
||||
"Fallback Filter Settings": "Rückfallfilter-Einstellungen",
|
||||
"GeoIP Filtering": "GeoIP-Filterung",
|
||||
"Enable GeoIP filtering for fallback": "GeoIP-Rückfallfilterung aktivieren",
|
||||
"GeoIP Code": "GeoIP-Ländercode",
|
||||
"Fallback IP CIDR": "Rückfall-IP-CIDR",
|
||||
"IP CIDRs not using fallback servers": "IP-CIDRs, die keine Rückfallserver verwenden, getrennt durch Kommas",
|
||||
"Fallback Domain": "Rückfall-Domäne",
|
||||
"Domains using fallback servers": "Domains, die Rückfallserver verwenden, getrennt durch Kommas",
|
||||
"Hosts Settings": "Hosts-Einstellungen",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Benutzerdefinierte Zuordnung von Domains zu IPs oder Domains, getrennt durch Kommas",
|
||||
"Website Tests": "Website-Tests",
|
||||
"Clash Info": "Clash-Informationen",
|
||||
"Core Version": "Kernversion",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "Einstellungen angewendet"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS-Überschreibung",
|
||||
"warning": "Wenn Sie sich nicht mit diesen Einstellungen auskennen, ändern Sie sie nicht und lassen Sie die DNS-Überschreibung aktiviert."
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS-Einstellungen",
|
||||
"fallbackFilter": "Rückfallfilter-Einstellungen",
|
||||
"hosts": "Hosts-Einstellungen"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "DNS aktivieren",
|
||||
"listen": "DNS-Lauschangabe",
|
||||
"enhancedMode": "Erweiterter Modus",
|
||||
"fakeIpRange": "Fake-IP-Bereich",
|
||||
"fakeIpFilterMode": "Fake-IP-Filtermodus",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "IPv6-DNS-Auflösung aktivieren"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "HTTP/3 bevorzugen",
|
||||
"description": "DNS DOH verwendet HTTP/3-Protokoll"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Routierungsregeln beachten",
|
||||
"description": "DNS-Verbindungen folgen den Routierungsregeln"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Hosts verwenden",
|
||||
"description": "Aktivieren Sie die Auflösung von Hosts über die hosts-Datei"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "System-Hosts verwenden",
|
||||
"description": "Aktivieren Sie die Auflösung von Hosts über die System-hosts-Datei"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Direkte Namenserver folgen der Strategie",
|
||||
"description": "Ob die Namenserver-Strategie befolgt werden soll"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Standard-Namenserver",
|
||||
"description": "Standard-DNS-Server, die zum Auflösen von DNS-Servern verwendet werden"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "Namenserver",
|
||||
"description": "Liste der DNS-Server, getrennt durch Kommas"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Rückfallserver",
|
||||
"description": "Liste der Rückfall-DNS-Server, getrennt durch Kommas"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Proxy-Server-Namenserver",
|
||||
"description": "Proxy-Knoten-Namenserver, nur für die Auflösung der Domains von Proxy-Knoten verwendet, getrennt durch Kommas"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Direkter Namenserver",
|
||||
"description": "Direkter Ausgangs-Namenserver, unterstützt das Schlüsselwort system, getrennt durch Kommas"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake-IP-Filter",
|
||||
"description": "Domains, die die Fake-IP-Auflösung überspringen, getrennt durch Kommas"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Namenserver-Strategie",
|
||||
"description": "Domain-spezifischer DNS-Server, mehrere Server getrennt durch Semikolons, Format: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP-Filterung",
|
||||
"description": "GeoIP-Rückfallfilterung aktivieren"
|
||||
},
|
||||
"geoipCode": "GeoIP-Ländercode",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Rückfall-IP-CIDR",
|
||||
"description": "IP-CIDRs, die keine Rückfallserver verwenden, getrennt durch Kommas"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Rückfall-Domäne",
|
||||
"description": "Domains, die Rückfallserver verwenden, getrennt durch Kommas"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Benutzerdefinierte Zuordnung von Domains zu IPs oder Domains, getrennt durch Kommas"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS-Einstellungen wurden gespeichert",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "Network Interface",
|
||||
"Ip Address": "IP Address",
|
||||
"Mac Address": "MAC Address",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "Open URL",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Replace host, port, secret with %host, %port, %secret",
|
||||
"Support %host, %port, %secret": "Support %host, %port, %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Merge file key error, changes reverted",
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "Clash Verge requires administrator privileges to reinstall the system service",
|
||||
"DNS Settings": "DNS Settings",
|
||||
"DNS settings saved": "DNS settings saved",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS Overwrite",
|
||||
"DNS Settings Warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled",
|
||||
"Enable DNS": "Enable DNS",
|
||||
"DNS Listen": "DNS Listen",
|
||||
"Enhanced Mode": "Enhanced Mode",
|
||||
"Fake IP Range": "Fake IP Range",
|
||||
"Fake IP Filter Mode": "Fake IP Filter Mode",
|
||||
"Enable IPv6 DNS resolution": "Enable IPv6 DNS resolution",
|
||||
"Prefer H3": "Prefer H3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH uses HTTP/3",
|
||||
"Respect Rules": "Respect Rules",
|
||||
"DNS connections follow routing rules": "DNS connections follow routing rules",
|
||||
"Use Hosts": "Use Hosts",
|
||||
"Enable to resolve hosts through hosts file": "Enable to resolve hosts through hosts file",
|
||||
"Use System Hosts": "Use System Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "Enable to resolve hosts through system hosts file",
|
||||
"Direct Nameserver Follow Policy": "Direct Nameserver Follow Policy",
|
||||
"Whether to follow nameserver policy": "Whether to follow nameserver policy",
|
||||
"Default Nameserver": "Default Nameserver",
|
||||
"Default DNS servers used to resolve DNS servers": "Default DNS servers used to resolve DNS servers",
|
||||
"Nameserver": "Nameserver",
|
||||
"List of DNS servers": "List of DNS servers, comma separated",
|
||||
"Fallback": "Fallback",
|
||||
"List of fallback DNS servers": "List of fallback DNS servers, comma separated",
|
||||
"Proxy Server Nameserver": "Proxy Server Nameserver",
|
||||
"Proxy Node Nameserver": "DNS servers for proxy node domain resolution",
|
||||
"Direct Nameserver": "Direct Nameserver",
|
||||
"Direct outbound Nameserver": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated",
|
||||
"Fake IP Filter": "Fake IP Filter",
|
||||
"Domains that skip fake IP resolution": "Domains that skip fake IP resolution, comma separated",
|
||||
"Nameserver Policy": "Nameserver Policy",
|
||||
"Domain-specific DNS server": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2",
|
||||
"Fallback Filter Settings": "Fallback Filter Settings",
|
||||
"GeoIP Filtering": "GeoIP Filtering",
|
||||
"Enable GeoIP filtering for fallback": "Enable GeoIP filtering for fallback",
|
||||
"GeoIP Code": "GeoIP Code",
|
||||
"Fallback IP CIDR": "Fallback IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "IP CIDRs not using fallback servers, comma separated",
|
||||
"Fallback Domain": "Fallback Domain",
|
||||
"Domains using fallback servers": "Domains using fallback servers, comma separated",
|
||||
"Hosts Settings": "Hosts Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Custom domain to IP or domain mapping",
|
||||
"Website Tests": "Website Tests",
|
||||
"Clash Info": "Clash Info",
|
||||
"Core Version": "Core Version",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "Settings Applied"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS Overwrite",
|
||||
"warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS Settings",
|
||||
"fallbackFilter": "Fallback Filter Settings",
|
||||
"hosts": "Hosts Settings"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "Enable DNS",
|
||||
"listen": "DNS Listen",
|
||||
"enhancedMode": "Enhanced Mode",
|
||||
"fakeIpRange": "Fake IP Range",
|
||||
"fakeIpFilterMode": "Fake IP Filter Mode",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "Enable IPv6 DNS resolution"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "Prefer H3",
|
||||
"description": "DNS DOH uses HTTP/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Respect Rules",
|
||||
"description": "DNS connections follow routing rules"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Use Hosts",
|
||||
"description": "Enable to resolve hosts through hosts file"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Use System Hosts",
|
||||
"description": "Enable to resolve hosts through system hosts file"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Direct Nameserver Follow Policy",
|
||||
"description": "Whether to follow nameserver policy"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Default Nameserver",
|
||||
"description": "Default DNS servers used to resolve DNS servers"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "Nameserver",
|
||||
"description": "List of DNS servers, comma separated"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Fallback",
|
||||
"description": "List of fallback DNS servers, comma separated"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Proxy Server Nameserver",
|
||||
"description": "DNS servers for proxy node domain resolution"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Direct Nameserver",
|
||||
"description": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IP Filter",
|
||||
"description": "Domains that skip fake IP resolution, comma separated"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Nameserver Policy",
|
||||
"description": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP Filtering",
|
||||
"description": "Enable GeoIP filtering for fallback"
|
||||
},
|
||||
"geoipCode": "GeoIP Code",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Fallback IP CIDR",
|
||||
"description": "IP CIDRs not using fallback servers, comma separated"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Fallback Domain",
|
||||
"description": "Domains using fallback servers, comma separated"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Custom domain to IP or domain mapping"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS settings saved",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "Interfaz de red",
|
||||
"Ip Address": "Dirección IP",
|
||||
"Mac Address": "Dirección MAC",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "Abrir enlace",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Utilice %host, %port, %secret para representar el host, el puerto y la clave de acceso.",
|
||||
"Support %host, %port, %secret": "Soporta %host, %port, %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Error de clave en el archivo de sobrescritura. Los cambios se han deshecho",
|
||||
"Merge File Error": "Error en el archivo de sobrescritura. Los cambios se han deshecho",
|
||||
"Service Administrator Prompt": "Clash Verge requiere permisos de administrador para instalar el servicio del sistema",
|
||||
"DNS Settings": "Configuración de DNS",
|
||||
"DNS settings saved": "Configuración de DNS guardada",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "Sobrescritura de DNS",
|
||||
"DNS Settings Warning": "Si no está seguro de cómo configurar esto, no realice cambios y mantenga habilitada la sobrescritura de DNS.",
|
||||
"Enable DNS": "Habilitar DNS",
|
||||
"DNS Listen": "Dirección de escucha de DNS",
|
||||
"Enhanced Mode": "Modo mejorado",
|
||||
"Fake IP Range": "Rango de Fake IP",
|
||||
"Fake IP Filter Mode": "Modo de filtrado de Fake IP",
|
||||
"Enable IPv6 DNS resolution": "Habilitar resolución DNS IPv6",
|
||||
"Prefer H3": "Prefiere HTTP/3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH utiliza el protocolo HTTP/3",
|
||||
"Respect Rules": "Seguir las reglas de enrutamiento",
|
||||
"DNS connections follow routing rules": "Las conexiones DNS siguen las reglas de enrutamiento",
|
||||
"Use Hosts": "Usar archivo hosts",
|
||||
"Enable to resolve hosts through hosts file": "Habilitar la resolución de nombres de host a través del archivo hosts",
|
||||
"Use System Hosts": "Usar archivo hosts del sistema",
|
||||
"Enable to resolve hosts through system hosts file": "Habilitar la resolución de nombres de host a través del archivo hosts del sistema",
|
||||
"Direct Nameserver Follow Policy": "Los servidores DNS de conexión directa siguen la política",
|
||||
"Whether to follow nameserver policy": "Si seguir la configuración de la política de servidores DNS",
|
||||
"Default Nameserver": "Servidor DNS predeterminado",
|
||||
"Default DNS servers used to resolve DNS servers": "Servidores DNS predeterminados utilizados para resolver servidores DNS",
|
||||
"Nameserver": "Servidor DNS",
|
||||
"List of DNS servers": "Lista de servidores DNS, separados por comas",
|
||||
"Fallback": "Servidor de respaldo",
|
||||
"List of fallback DNS servers": "Lista de servidores DNS de respaldo, separados por comas",
|
||||
"Proxy Server Nameserver": "DNS del servidor proxy",
|
||||
"Proxy Node Nameserver": "Servidor de resolución de nombres de dominio del nodo de proxy, separados por comas",
|
||||
"Direct Nameserver": "Servidor DNS de conexión directa",
|
||||
"Direct outbound Nameserver": "Servidor de resolución de nombres de dominio de salida directa, admite la palabra clave 'system', separados por comas",
|
||||
"Fake IP Filter": "Filtro de Fake IP",
|
||||
"Domains that skip fake IP resolution": "Dominios que omiten la resolución de Fake IP, separados por comas",
|
||||
"Nameserver Policy": "Política de servidores DNS",
|
||||
"Domain-specific DNS server": "Servidor DNS específico de dominio, múltiples servidores separados por punto y coma, formato: dominio=server1;server2",
|
||||
"Fallback Filter Settings": "Configuración de filtrado de respaldo",
|
||||
"GeoIP Filtering": "Filtrado GeoIP",
|
||||
"Enable GeoIP filtering for fallback": "Habilitar el filtrado GeoIP de respaldo",
|
||||
"GeoIP Code": "Código de país GeoIP",
|
||||
"Fallback IP CIDR": "IP CIDR de respaldo",
|
||||
"IP CIDRs not using fallback servers": "IP CIDR que no utilizan servidores de respaldo, separados por comas",
|
||||
"Fallback Domain": "Dominio de respaldo",
|
||||
"Domains using fallback servers": "Dominios que utilizan servidores de respaldo, separados por comas",
|
||||
"Hosts Settings": "Configuración de hosts",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Asignación personalizada de dominio a IP o dominio, separados por comas",
|
||||
"Website Tests": "Pruebas de sitios web",
|
||||
"Clash Info": "Información de Clash",
|
||||
"Core Version": "Versión del núcleo",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "Ajustes aplicados"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "Sobrescritura de DNS",
|
||||
"warning": "Si no está seguro de cómo configurar esto, no realice cambios y mantenga habilitada la sobrescritura de DNS."
|
||||
},
|
||||
"sections": {
|
||||
"general": "Configuración de DNS",
|
||||
"fallbackFilter": "Configuración de filtrado de respaldo",
|
||||
"hosts": "Configuración de hosts"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "Habilitar DNS",
|
||||
"listen": "Dirección de escucha de DNS",
|
||||
"enhancedMode": "Modo mejorado",
|
||||
"fakeIpRange": "Rango de Fake IP",
|
||||
"fakeIpFilterMode": "Modo de filtrado de Fake IP",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "Habilitar resolución DNS IPv6"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "Prefiere HTTP/3",
|
||||
"description": "DNS DOH utiliza el protocolo HTTP/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Seguir las reglas de enrutamiento",
|
||||
"description": "Las conexiones DNS siguen las reglas de enrutamiento"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Usar archivo hosts",
|
||||
"description": "Habilitar la resolución de nombres de host a través del archivo hosts"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Usar archivo hosts del sistema",
|
||||
"description": "Habilitar la resolución de nombres de host a través del archivo hosts del sistema"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Los servidores DNS de conexión directa siguen la política",
|
||||
"description": "Si seguir la configuración de la política de servidores DNS"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Servidor DNS predeterminado",
|
||||
"description": "Servidores DNS predeterminados utilizados para resolver servidores DNS"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "Servidor DNS",
|
||||
"description": "Lista de servidores DNS, separados por comas"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Servidor de respaldo",
|
||||
"description": "Lista de servidores DNS de respaldo, separados por comas"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "DNS del servidor proxy",
|
||||
"description": "Servidor de resolución de nombres de dominio del nodo de proxy, separados por comas"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Servidor DNS de conexión directa",
|
||||
"description": "Servidor de resolución de nombres de dominio de salida directa, admite la palabra clave 'system', separados por comas"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Filtro de Fake IP",
|
||||
"description": "Dominios que omiten la resolución de Fake IP, separados por comas"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Política de servidores DNS",
|
||||
"description": "Servidor DNS específico de dominio, múltiples servidores separados por punto y coma, formato: dominio=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "Filtrado GeoIP",
|
||||
"description": "Habilitar el filtrado GeoIP de respaldo"
|
||||
},
|
||||
"geoipCode": "Código de país GeoIP",
|
||||
"fallbackIpCidr": {
|
||||
"label": "IP CIDR de respaldo",
|
||||
"description": "IP CIDR que no utilizan servidores de respaldo, separados por comas"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Dominio de respaldo",
|
||||
"description": "Dominios que utilizan servidores de respaldo, separados por comas"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Asignación personalizada de dominio a IP o dominio, separados por comas"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "Configuración de DNS guardada",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "رابط شبکه",
|
||||
"Ip Address": "آدرس IP",
|
||||
"Mac Address": "آدرس MAC",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "باز کردن آدرس اینترنتی",
|
||||
"Replace host, port, secret with %host, %port, %secret": "جایگزین کردن میزبان، پورت و رمز با %host، %port، %secret",
|
||||
"Support %host, %port, %secret": "پشتیبانی از %host، %port و %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Merge file key error, changes reverted",
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "Clash Verge برای نصب مجدد سرویس سیستم به امتیازات مدیر نیاز دارد",
|
||||
"DNS Settings": "DNS Settings",
|
||||
"DNS settings saved": "DNS settings saved",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS Overwrite",
|
||||
"DNS Settings Warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled",
|
||||
"Enable DNS": "Enable DNS",
|
||||
"DNS Listen": "DNS Listen",
|
||||
"Enhanced Mode": "Enhanced Mode",
|
||||
"Fake IP Range": "Fake IP Range",
|
||||
"Fake IP Filter Mode": "Fake IP Filter Mode",
|
||||
"Enable IPv6 DNS resolution": "Enable IPv6 DNS resolution",
|
||||
"Prefer H3": "Prefer H3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH uses HTTP/3",
|
||||
"Respect Rules": "Respect Rules",
|
||||
"DNS connections follow routing rules": "DNS connections follow routing rules",
|
||||
"Use Hosts": "Use Hosts",
|
||||
"Enable to resolve hosts through hosts file": "Enable to resolve hosts through hosts file",
|
||||
"Use System Hosts": "Use System Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "Enable to resolve hosts through system hosts file",
|
||||
"Direct Nameserver Follow Policy": "Direct Nameserver Follow Policy",
|
||||
"Whether to follow nameserver policy": "Whether to follow nameserver policy",
|
||||
"Default Nameserver": "Default Nameserver",
|
||||
"Default DNS servers used to resolve DNS servers": "Default DNS servers used to resolve DNS servers",
|
||||
"Nameserver": "Nameserver",
|
||||
"List of DNS servers": "List of DNS servers, comma separated",
|
||||
"Fallback": "Fallback",
|
||||
"List of fallback DNS servers": "List of fallback DNS servers, comma separated",
|
||||
"Proxy Server Nameserver": "Proxy Server Nameserver",
|
||||
"Proxy Node Nameserver": "DNS servers for proxy node domain resolution",
|
||||
"Direct Nameserver": "Direct Nameserver",
|
||||
"Direct outbound Nameserver": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated",
|
||||
"Fake IP Filter": "Fake IP Filter",
|
||||
"Domains that skip fake IP resolution": "Domains that skip fake IP resolution, comma separated",
|
||||
"Nameserver Policy": "Nameserver Policy",
|
||||
"Domain-specific DNS server": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2",
|
||||
"Fallback Filter Settings": "Fallback Filter Settings",
|
||||
"GeoIP Filtering": "GeoIP Filtering",
|
||||
"Enable GeoIP filtering for fallback": "Enable GeoIP filtering for fallback",
|
||||
"GeoIP Code": "GeoIP Code",
|
||||
"Fallback IP CIDR": "Fallback IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "IP CIDRs not using fallback servers, comma separated",
|
||||
"Fallback Domain": "Fallback Domain",
|
||||
"Domains using fallback servers": "Domains using fallback servers, comma separated",
|
||||
"Hosts Settings": "Hosts Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Custom domain to IP or domain mapping",
|
||||
"Website Tests": "Website Tests",
|
||||
"Clash Info": "Clash Info",
|
||||
"Core Version": "Core Version",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "تنظیمات اعمال شد"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS Overwrite",
|
||||
"warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS Settings",
|
||||
"fallbackFilter": "Fallback Filter Settings",
|
||||
"hosts": "Hosts Settings"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "Enable DNS",
|
||||
"listen": "DNS Listen",
|
||||
"enhancedMode": "Enhanced Mode",
|
||||
"fakeIpRange": "Fake IP Range",
|
||||
"fakeIpFilterMode": "Fake IP Filter Mode",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "Enable IPv6 DNS resolution"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "Prefer H3",
|
||||
"description": "DNS DOH uses HTTP/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Respect Rules",
|
||||
"description": "DNS connections follow routing rules"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Use Hosts",
|
||||
"description": "Enable to resolve hosts through hosts file"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Use System Hosts",
|
||||
"description": "Enable to resolve hosts through system hosts file"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Direct Nameserver Follow Policy",
|
||||
"description": "Whether to follow nameserver policy"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Default Nameserver",
|
||||
"description": "Default DNS servers used to resolve DNS servers"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "Nameserver",
|
||||
"description": "List of DNS servers, comma separated"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Fallback",
|
||||
"description": "List of fallback DNS servers, comma separated"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Proxy Server Nameserver",
|
||||
"description": "DNS servers for proxy node domain resolution"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Direct Nameserver",
|
||||
"description": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IP Filter",
|
||||
"description": "Domains that skip fake IP resolution, comma separated"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Nameserver Policy",
|
||||
"description": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP Filtering",
|
||||
"description": "Enable GeoIP filtering for fallback"
|
||||
},
|
||||
"geoipCode": "GeoIP Code",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Fallback IP CIDR",
|
||||
"description": "IP CIDRs not using fallback servers, comma separated"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Fallback Domain",
|
||||
"description": "Domains using fallback servers, comma separated"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Custom domain to IP or domain mapping"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS settings saved",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "Antarmuka Jaringan",
|
||||
"Ip Address": "Alamat IP",
|
||||
"Mac Address": "Alamat MAC",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "Buka URL",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Ganti host, port, rahasia dengan %host, %port, %secret",
|
||||
"Support %host, %port, %secret": "Dukung %host, %port, %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Merge file key error, changes reverted",
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "Clash Verge memerlukan hak administrator untuk menginstal ulang layanan sistem",
|
||||
"DNS Settings": "DNS Settings",
|
||||
"DNS settings saved": "DNS settings saved",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS Overwrite",
|
||||
"DNS Settings Warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled",
|
||||
"Enable DNS": "Enable DNS",
|
||||
"DNS Listen": "DNS Listen",
|
||||
"Enhanced Mode": "Enhanced Mode",
|
||||
"Fake IP Range": "Fake IP Range",
|
||||
"Fake IP Filter Mode": "Fake IP Filter Mode",
|
||||
"Enable IPv6 DNS resolution": "Enable IPv6 DNS resolution",
|
||||
"Prefer H3": "Prefer H3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH uses HTTP/3",
|
||||
"Respect Rules": "Respect Rules",
|
||||
"DNS connections follow routing rules": "DNS connections follow routing rules",
|
||||
"Use Hosts": "Use Hosts",
|
||||
"Enable to resolve hosts through hosts file": "Enable to resolve hosts through hosts file",
|
||||
"Use System Hosts": "Use System Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "Enable to resolve hosts through system hosts file",
|
||||
"Direct Nameserver Follow Policy": "Direct Nameserver Follow Policy",
|
||||
"Whether to follow nameserver policy": "Whether to follow nameserver policy",
|
||||
"Default Nameserver": "Default Nameserver",
|
||||
"Default DNS servers used to resolve DNS servers": "Default DNS servers used to resolve DNS servers",
|
||||
"Nameserver": "Nameserver",
|
||||
"List of DNS servers": "List of DNS servers, comma separated",
|
||||
"Fallback": "Fallback",
|
||||
"List of fallback DNS servers": "List of fallback DNS servers, comma separated",
|
||||
"Proxy Server Nameserver": "Proxy Server Nameserver",
|
||||
"Proxy Node Nameserver": "DNS servers for proxy node domain resolution",
|
||||
"Direct Nameserver": "Direct Nameserver",
|
||||
"Direct outbound Nameserver": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated",
|
||||
"Fake IP Filter": "Fake IP Filter",
|
||||
"Domains that skip fake IP resolution": "Domains that skip fake IP resolution, comma separated",
|
||||
"Nameserver Policy": "Nameserver Policy",
|
||||
"Domain-specific DNS server": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2",
|
||||
"Fallback Filter Settings": "Fallback Filter Settings",
|
||||
"GeoIP Filtering": "GeoIP Filtering",
|
||||
"Enable GeoIP filtering for fallback": "Enable GeoIP filtering for fallback",
|
||||
"GeoIP Code": "GeoIP Code",
|
||||
"Fallback IP CIDR": "Fallback IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "IP CIDRs not using fallback servers, comma separated",
|
||||
"Fallback Domain": "Fallback Domain",
|
||||
"Domains using fallback servers": "Domains using fallback servers, comma separated",
|
||||
"Hosts Settings": "Hosts Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Custom domain to IP or domain mapping",
|
||||
"Website Tests": "Website Tests",
|
||||
"Clash Info": "Clash Info",
|
||||
"Core Version": "Core Version",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "Pengaturan Diterapkan"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS Overwrite",
|
||||
"warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS Settings",
|
||||
"fallbackFilter": "Fallback Filter Settings",
|
||||
"hosts": "Hosts Settings"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "Enable DNS",
|
||||
"listen": "DNS Listen",
|
||||
"enhancedMode": "Enhanced Mode",
|
||||
"fakeIpRange": "Fake IP Range",
|
||||
"fakeIpFilterMode": "Fake IP Filter Mode",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "Enable IPv6 DNS resolution"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "Prefer H3",
|
||||
"description": "DNS DOH uses HTTP/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Respect Rules",
|
||||
"description": "DNS connections follow routing rules"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Use Hosts",
|
||||
"description": "Enable to resolve hosts through hosts file"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Use System Hosts",
|
||||
"description": "Enable to resolve hosts through system hosts file"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Direct Nameserver Follow Policy",
|
||||
"description": "Whether to follow nameserver policy"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Default Nameserver",
|
||||
"description": "Default DNS servers used to resolve DNS servers"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "Nameserver",
|
||||
"description": "List of DNS servers, comma separated"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Fallback",
|
||||
"description": "List of fallback DNS servers, comma separated"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Proxy Server Nameserver",
|
||||
"description": "DNS servers for proxy node domain resolution"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Direct Nameserver",
|
||||
"description": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IP Filter",
|
||||
"description": "Domains that skip fake IP resolution, comma separated"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Nameserver Policy",
|
||||
"description": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP Filtering",
|
||||
"description": "Enable GeoIP filtering for fallback"
|
||||
},
|
||||
"geoipCode": "GeoIP Code",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Fallback IP CIDR",
|
||||
"description": "IP CIDRs not using fallback servers, comma separated"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Fallback Domain",
|
||||
"description": "Domains using fallback servers, comma separated"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Custom domain to IP or domain mapping"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS settings saved",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "ネットワークインターフェース",
|
||||
"Ip Address": "IPアドレス",
|
||||
"Mac Address": "MACアドレス",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "URLを開く",
|
||||
"Replace host, port, secret with %host, %port, %secret": "%host, %port, %secretを使用してホスト、ポート、アクセスキーを表します。",
|
||||
"Support %host, %port, %secret": "%host, %port, %secretをサポートします。",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "上書きファイルのキーエラーがあります。変更は取り消されました。",
|
||||
"Merge File Error": "上書きファイルにエラーがあります。変更は取り消されました。",
|
||||
"Service Administrator Prompt": "Clash Vergeはシステムサービスをインストールするために管理者権限が必要です。",
|
||||
"DNS Settings": "DNS設定",
|
||||
"DNS settings saved": "DNS設定が保存されました。",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS上書き",
|
||||
"DNS Settings Warning": "ここの設定がわからない場合は、変更しないでください。DNS上書きを有効にしたままにしてください。",
|
||||
"Enable DNS": "DNSを有効にする",
|
||||
"DNS Listen": "DNS監視アドレス",
|
||||
"Enhanced Mode": "拡張モード",
|
||||
"Fake IP Range": "Fake IP範囲",
|
||||
"Fake IP Filter Mode": "Fake IPフィルターモード",
|
||||
"Enable IPv6 DNS resolution": "IPv6 DNS解決を有効にする",
|
||||
"Prefer H3": "HTTP/3を優先する",
|
||||
"DNS DOH使用HTTP/3": "DNS DOHでHTTP/3プロトコルを使用する",
|
||||
"Respect Rules": "ルートルールに従う",
|
||||
"DNS connections follow routing rules": "DNS接続はルートルールに従います。",
|
||||
"Use Hosts": "Hostsファイルを使用する",
|
||||
"Enable to resolve hosts through hosts file": "Hostsファイルを使用してホスト名を解決する",
|
||||
"Use System Hosts": "システムのHostsファイルを使用する",
|
||||
"Enable to resolve hosts through system hosts file": "システムのHostsファイルを使用してホスト名を解決する",
|
||||
"Direct Nameserver Follow Policy": "直接接続の名前解決サーバーはポリシーに従う",
|
||||
"Whether to follow nameserver policy": "名前解決サーバーのポリシーに従うかどうか",
|
||||
"Default Nameserver": "デフォルトの名前解決サーバー",
|
||||
"Default DNS servers used to resolve DNS servers": "名前解決サーバーを解決するために使用されるデフォルトのDNSサーバー",
|
||||
"Nameserver": "名前解決サーバー",
|
||||
"List of DNS servers": "DNSサーバーのリスト。カンマで区切って指定します。",
|
||||
"Fallback": "フォールバックサーバー",
|
||||
"List of fallback DNS servers": "フォールバックDNSサーバーのリスト。カンマで区切って指定します。",
|
||||
"Proxy Server Nameserver": "プロキシサーバーの名前解決サーバー",
|
||||
"Proxy Node Nameserver": "プロキシノードの名前解決サーバー。プロキシノードのドメイン名を解決するためにのみ使用されます。カンマで区切って指定します。",
|
||||
"Direct Nameserver": "直接接続の名前解決サーバー",
|
||||
"Direct outbound Nameserver": "直接接続の出口名前解決サーバー。systemキーワードをサポートします。カンマで区切って指定します。",
|
||||
"Fake IP Filter": "Fake IPフィルター",
|
||||
"Domains that skip fake IP resolution": "Fake IP解決をスキップするドメイン名。カンマで区切って指定します。",
|
||||
"Nameserver Policy": "名前解決サーバーのポリシー",
|
||||
"Domain-specific DNS server": "特定のドメインのDNSサーバー。複数のサーバーはセミコロンで区切って指定します。形式: domain=server1;server2",
|
||||
"Fallback Filter Settings": "フォールバックフィルター設定",
|
||||
"GeoIP Filtering": "GeoIPフィルタリング",
|
||||
"Enable GeoIP filtering for fallback": "フォールバックのGeoIPフィルタリングを有効にする",
|
||||
"GeoIP Code": "GeoIP国コード",
|
||||
"Fallback IP CIDR": "フォールバックIP CIDR",
|
||||
"IP CIDRs not using fallback servers": "フォールバックサーバーを使用しないIP CIDR。カンマで区切って指定します。",
|
||||
"Fallback Domain": "フォールバックドメイン",
|
||||
"Domains using fallback servers": "フォールバックサーバーを使用するドメイン名。カンマで区切って指定します。",
|
||||
"Hosts Settings": "Hosts設定",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "カスタムのドメイン名からIPまたはドメイン名へのマッピング。カンマで区切って指定します。",
|
||||
"Website Tests": "ウェブサイトテスト",
|
||||
"Clash Info": "Clash情報",
|
||||
"Core Version": "コアバージョン",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "設定が適用されました。"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS上書き",
|
||||
"warning": "ここの設定がわからない場合は、変更しないでください。DNS上書きを有効にしたままにしてください。"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS設定",
|
||||
"fallbackFilter": "フォールバックフィルター設定",
|
||||
"hosts": "Hosts設定"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "DNSを有効にする",
|
||||
"listen": "DNS監視アドレス",
|
||||
"enhancedMode": "拡張モード",
|
||||
"fakeIpRange": "Fake IP範囲",
|
||||
"fakeIpFilterMode": "Fake IPフィルターモード",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "IPv6 DNS解決を有効にする"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "HTTP/3を優先する",
|
||||
"description": "DNS DOHでHTTP/3プロトコルを使用する"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "ルートルールに従う",
|
||||
"description": "DNS接続はルートルールに従います。"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Hostsファイルを使用する",
|
||||
"description": "Hostsファイルを使用してホスト名を解決する"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "システムのHostsファイルを使用する",
|
||||
"description": "システムのHostsファイルを使用してホスト名を解決する"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "直接接続の名前解決サーバーはポリシーに従う",
|
||||
"description": "名前解決サーバーのポリシーに従うかどうか"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "デフォルトの名前解決サーバー",
|
||||
"description": "名前解決サーバーを解決するために使用されるデフォルトのDNSサーバー"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "名前解決サーバー",
|
||||
"description": "DNSサーバーのリスト。カンマで区切って指定します。"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "フォールバックサーバー",
|
||||
"description": "フォールバックDNSサーバーのリスト。カンマで区切って指定します。"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "プロキシサーバーの名前解決サーバー",
|
||||
"description": "プロキシノードの名前解決サーバー。プロキシノードのドメイン名を解決するためにのみ使用されます。カンマで区切って指定します。"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "直接接続の名前解決サーバー",
|
||||
"description": "直接接続の出口名前解決サーバー。systemキーワードをサポートします。カンマで区切って指定します。"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IPフィルター",
|
||||
"description": "Fake IP解決をスキップするドメイン名。カンマで区切って指定します。"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "名前解決サーバーのポリシー",
|
||||
"description": "特定のドメインのDNSサーバー。複数のサーバーはセミコロンで区切って指定します。形式: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIPフィルタリング",
|
||||
"description": "フォールバックのGeoIPフィルタリングを有効にする"
|
||||
},
|
||||
"geoipCode": "GeoIP国コード",
|
||||
"fallbackIpCidr": {
|
||||
"label": "フォールバックIP CIDR",
|
||||
"description": "フォールバックサーバーを使用しないIP CIDR。カンマで区切って指定します。"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "フォールバックドメイン",
|
||||
"description": "フォールバックサーバーを使用するドメイン名。カンマで区切って指定します。"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "カスタムのドメイン名からIPまたはドメイン名へのマッピング。カンマで区切って指定します。"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS設定が保存されました。",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "Network Interface",
|
||||
"Ip Address": "IP Address",
|
||||
"Mac Address": "MAC Address",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "Open URL",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Replace host, port, secret with %host, %port, %secret",
|
||||
"Support %host, %port, %secret": "Support %host, %port, %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "병합 파일 키 오류",
|
||||
"Merge File Error": "병합 파일 오류",
|
||||
"Service Administrator Prompt": "Clash Verge requires administrator privileges to reinstall the system service",
|
||||
"DNS Settings": "DNS Settings",
|
||||
"DNS settings saved": "DNS settings saved",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS Overwrite",
|
||||
"DNS Settings Warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled",
|
||||
"Enable DNS": "Enable DNS",
|
||||
"DNS Listen": "DNS Listen",
|
||||
"Enhanced Mode": "Enhanced Mode",
|
||||
"Fake IP Range": "Fake IP Range",
|
||||
"Fake IP Filter Mode": "Fake IP Filter Mode",
|
||||
"Enable IPv6 DNS resolution": "Enable IPv6 DNS resolution",
|
||||
"Prefer H3": "Prefer H3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH uses HTTP/3",
|
||||
"Respect Rules": "Respect Rules",
|
||||
"DNS connections follow routing rules": "DNS connections follow routing rules",
|
||||
"Use Hosts": "Use Hosts",
|
||||
"Enable to resolve hosts through hosts file": "Enable to resolve hosts through hosts file",
|
||||
"Use System Hosts": "Use System Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "Enable to resolve hosts through system hosts file",
|
||||
"Direct Nameserver Follow Policy": "Direct Nameserver Follow Policy",
|
||||
"Whether to follow nameserver policy": "Whether to follow nameserver policy",
|
||||
"Default Nameserver": "Default Nameserver",
|
||||
"Default DNS servers used to resolve DNS servers": "Default DNS servers used to resolve DNS servers",
|
||||
"Nameserver": "Nameserver",
|
||||
"List of DNS servers": "List of DNS servers, comma separated",
|
||||
"Fallback": "Fallback",
|
||||
"List of fallback DNS servers": "List of fallback DNS servers, comma separated",
|
||||
"Proxy Server Nameserver": "Proxy Server Nameserver",
|
||||
"Proxy Node Nameserver": "DNS servers for proxy node domain resolution",
|
||||
"Direct Nameserver": "Direct Nameserver",
|
||||
"Direct outbound Nameserver": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated",
|
||||
"Fake IP Filter": "Fake IP Filter",
|
||||
"Domains that skip fake IP resolution": "Domains that skip fake IP resolution, comma separated",
|
||||
"Nameserver Policy": "Nameserver Policy",
|
||||
"Domain-specific DNS server": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2",
|
||||
"Fallback Filter Settings": "Fallback Filter Settings",
|
||||
"GeoIP Filtering": "GeoIP Filtering",
|
||||
"Enable GeoIP filtering for fallback": "Enable GeoIP filtering for fallback",
|
||||
"GeoIP Code": "GeoIP Code",
|
||||
"Fallback IP CIDR": "Fallback IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "IP CIDRs not using fallback servers, comma separated",
|
||||
"Fallback Domain": "Fallback Domain",
|
||||
"Domains using fallback servers": "Domains using fallback servers, comma separated",
|
||||
"Hosts Settings": "Hosts Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Custom domain to IP or domain mapping",
|
||||
"Website Tests": "Website Tests",
|
||||
"Clash Info": "Clash Info",
|
||||
"Core Version": "Core Version",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "Settings Applied"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS Overwrite",
|
||||
"warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS Settings",
|
||||
"fallbackFilter": "Fallback Filter Settings",
|
||||
"hosts": "Hosts Settings"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "Enable DNS",
|
||||
"listen": "DNS Listen",
|
||||
"enhancedMode": "Enhanced Mode",
|
||||
"fakeIpRange": "Fake IP Range",
|
||||
"fakeIpFilterMode": "Fake IP Filter Mode",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "Enable IPv6 DNS resolution"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "Prefer H3",
|
||||
"description": "DNS DOH uses HTTP/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Respect Rules",
|
||||
"description": "DNS connections follow routing rules"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Use Hosts",
|
||||
"description": "Enable to resolve hosts through hosts file"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Use System Hosts",
|
||||
"description": "Enable to resolve hosts through system hosts file"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Direct Nameserver Follow Policy",
|
||||
"description": "Whether to follow nameserver policy"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Default Nameserver",
|
||||
"description": "Default DNS servers used to resolve DNS servers"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "Nameserver",
|
||||
"description": "List of DNS servers, comma separated"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Fallback",
|
||||
"description": "List of fallback DNS servers, comma separated"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Proxy Server Nameserver",
|
||||
"description": "DNS servers for proxy node domain resolution"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Direct Nameserver",
|
||||
"description": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IP Filter",
|
||||
"description": "Domains that skip fake IP resolution, comma separated"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Nameserver Policy",
|
||||
"description": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP Filtering",
|
||||
"description": "Enable GeoIP filtering for fallback"
|
||||
},
|
||||
"geoipCode": "GeoIP Code",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Fallback IP CIDR",
|
||||
"description": "IP CIDRs not using fallback servers, comma separated"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Fallback Domain",
|
||||
"description": "Domains using fallback servers, comma separated"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Custom domain to IP or domain mapping"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS settings saved",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "Сетевой интерфейс",
|
||||
"Ip Address": "IP адрес",
|
||||
"Mac Address": "MAC адрес",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "Перейти по адресу",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Замените хост, порт и секрет на %host, %port, %secret",
|
||||
"Support %host, %port, %secret": "Поддерживаются %host, %port, %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Ошибка ключа в Merge File, откат изменений",
|
||||
"Merge File Error": "Ошибка Merge File, откат изменений",
|
||||
"Service Administrator Prompt": "Clash Verge требует прав администратора для переустановки системной службы",
|
||||
"DNS Settings": "Настройки DNS",
|
||||
"DNS settings saved": "DNS settings saved",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "Переопределение настроек DNS",
|
||||
"DNS Settings Warning": "Если вы не знакомы с этими настройками, пожалуйста, не изменяйте и не отключайте их",
|
||||
"Enable DNS": "Включить DNS",
|
||||
"DNS Listen": "Прослушивание DNS",
|
||||
"Enhanced Mode": "Enhanced Mode",
|
||||
"Fake IP Range": "Диапазон FakeIP",
|
||||
"Fake IP Filter Mode": "FakeIP Filter Mode",
|
||||
"Enable IPv6 DNS resolution": "Enable IPv6 DNS resolution",
|
||||
"Prefer H3": "Предпочитать H3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH использует http/3",
|
||||
"Respect Rules": "Приоритизировать правила",
|
||||
"DNS connections follow routing rules": "Соединения DNS следуют правилам маршрутизации",
|
||||
"Use Hosts": "Использовать файл Hosts",
|
||||
"Enable to resolve hosts through hosts file": "Включить разрешение хостов через файл Hosts",
|
||||
"Use System Hosts": "Использовать системный файл Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "Включить разрешение хостов через системный файл Hosts",
|
||||
"Direct Nameserver Follow Policy": "Прямой сервер имен следует политике",
|
||||
"Whether to follow nameserver policy": "Следовать ли политике DNS-серверов",
|
||||
"Default Nameserver": "DNS-сервер по умолчанию",
|
||||
"Default DNS servers used to resolve DNS servers": "DNS-серверы по умолчанию, используемые для разрешения адресов серверов DNS",
|
||||
"Nameserver": "DNS-сервер",
|
||||
"List of DNS servers": "Список DNS-серверов, разделенных запятой",
|
||||
"Fallback": "Fallback",
|
||||
"List of fallback DNS servers": "Список резервных DNS-серверов, разделенных запятой",
|
||||
"Proxy Server Nameserver": "Proxy Server Nameserver",
|
||||
"Proxy Node Nameserver": "DNS-серверы для разрешения домена прокси-узлов",
|
||||
"Direct Nameserver": "DNS-сервер для прямых соединений",
|
||||
"Direct outbound Nameserver": "Список DNS-серверов для прямых соединений, разделенных запятой",
|
||||
"Fake IP Filter": "Фильтр FakeIP",
|
||||
"Domains that skip fake IP resolution": "Домены, которые пропускают разрешение FakeIP, разделенные запятой",
|
||||
"Nameserver Policy": "Политика серверов имен",
|
||||
"Domain-specific DNS server": "DNS-сервер, специфичный для домена, несколько серверов разделяются знаком ';'",
|
||||
"Fallback Filter Settings": "Настройки фильтра Fallback",
|
||||
"GeoIP Filtering": "Фильтрация GeoIP",
|
||||
"Enable GeoIP filtering for fallback": "Включить фильтрацию GeoIP",
|
||||
"GeoIP Code": "Код GeoIP",
|
||||
"Fallback IP CIDR": "Fallback IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "Диапазоны IP-адресов, не использующие резервные серверы, разделенные запятой",
|
||||
"Fallback Domain": "Fallback домены",
|
||||
"Domains using fallback servers": "Домены, использующие резервные серверы, разделенные запятой",
|
||||
"Hosts Settings": "Hosts Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Custom domain to IP or domain mapping",
|
||||
"Website Tests": "Проверка доступности веб-сайтов",
|
||||
"Clash Info": "Информация о Clash",
|
||||
"Core Version": "Версия ядра",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "Настройки применены"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "Переопределение настроек DNS",
|
||||
"warning": "Если вы не знакомы с этими настройками, пожалуйста, не изменяйте и не отключайте их"
|
||||
},
|
||||
"sections": {
|
||||
"general": "Настройки DNS",
|
||||
"fallbackFilter": "Настройки фильтра Fallback",
|
||||
"hosts": "Hosts Settings"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "Включить DNS",
|
||||
"listen": "Прослушивание DNS",
|
||||
"enhancedMode": "Enhanced Mode",
|
||||
"fakeIpRange": "Диапазон FakeIP",
|
||||
"fakeIpFilterMode": "FakeIP Filter Mode",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "Enable IPv6 DNS resolution"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "Предпочитать H3",
|
||||
"description": "DNS DOH использует http/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Приоритизировать правила",
|
||||
"description": "Соединения DNS следуют правилам маршрутизации"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Использовать файл Hosts",
|
||||
"description": "Включить разрешение хостов через файл Hosts"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Использовать системный файл Hosts",
|
||||
"description": "Включить разрешение хостов через системный файл Hosts"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Прямой сервер имен следует политике",
|
||||
"description": "Следовать ли политике DNS-серверов"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "DNS-сервер по умолчанию",
|
||||
"description": "DNS-серверы по умолчанию, используемые для разрешения адресов серверов DNS"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "DNS-сервер",
|
||||
"description": "Список DNS-серверов, разделенных запятой"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Fallback",
|
||||
"description": "Список резервных DNS-серверов, разделенных запятой"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Proxy Server Nameserver",
|
||||
"description": "DNS-серверы для разрешения домена прокси-узлов"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "DNS-сервер для прямых соединений",
|
||||
"description": "Список DNS-серверов для прямых соединений, разделенных запятой"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Фильтр FakeIP",
|
||||
"description": "Домены, которые пропускают разрешение FakeIP, разделенные запятой"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Политика серверов имен",
|
||||
"description": "DNS-сервер, специфичный для домена, несколько серверов разделяются знаком ';'"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "Фильтрация GeoIP",
|
||||
"description": "Включить фильтрацию GeoIP"
|
||||
},
|
||||
"geoipCode": "Код GeoIP",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Fallback IP CIDR",
|
||||
"description": "Диапазоны IP-адресов, не использующие резервные серверы, разделенные запятой"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Fallback домены",
|
||||
"description": "Домены, использующие резервные серверы, разделенные запятой"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Custom domain to IP or domain mapping"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS settings saved",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "Ağ Arayüzü",
|
||||
"Ip Address": "IP Adresi",
|
||||
"Mac Address": "MAC Adresi",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "URL Aç",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Ana bilgisayar, port, sırrı %host, %port, %secret ile değiştirin",
|
||||
"Support %host, %port, %secret": "%host, %port, %secret destekler",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Birleştirme dosyası anahtar hatası, değişiklikler geri alındı",
|
||||
"Merge File Error": "Birleştirme dosyası hatası, değişiklikler geri alındı",
|
||||
"Service Administrator Prompt": "Clash Verge sistem hizmetini yeniden kurmak için yönetici ayrıcalıkları gerektiriyor",
|
||||
"DNS Settings": "DNS Ayarları",
|
||||
"DNS settings saved": "DNS ayarları kaydedildi",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS Üzerine Yazma",
|
||||
"DNS Settings Warning": "Bu ayarlarla ilgili bilginiz yoksa, lütfen bunları değiştirmeyin ve DNS Üzerine Yazma'yı etkin tutun",
|
||||
"Enable DNS": "DNS'i Etkinleştir",
|
||||
"DNS Listen": "DNS Dinleme",
|
||||
"Enhanced Mode": "Geliştirilmiş Mod",
|
||||
"Fake IP Range": "Sahte IP Aralığı",
|
||||
"Fake IP Filter Mode": "Sahte IP Filtre Modu",
|
||||
"Enable IPv6 DNS resolution": "IPv6 DNS çözümlemesini etkinleştir",
|
||||
"Prefer H3": "H3'ü Tercih Et",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH uses HTTP/3",
|
||||
"Respect Rules": "Kurallara Uy",
|
||||
"DNS connections follow routing rules": "DNS bağlantıları yönlendirme kurallarını takip eder",
|
||||
"Use Hosts": "Hosts Kullan",
|
||||
"Enable to resolve hosts through hosts file": "Ana bilgisayarları hosts dosyası aracılığıyla çözümlemek için etkinleştirin",
|
||||
"Use System Hosts": "Sistem Hosts Dosyasını Kullan",
|
||||
"Enable to resolve hosts through system hosts file": "Ana bilgisayarları sistem hosts dosyası aracılığıyla çözümlemek için etkinleştirin",
|
||||
"Direct Nameserver Follow Policy": "Doğrudan İsim Sunucusu Politikasını Takip Et",
|
||||
"Whether to follow nameserver policy": "İsim sunucusu politikasının takip edilip edilmeyeceği",
|
||||
"Default Nameserver": "Varsayılan İsim Sunucusu",
|
||||
"Default DNS servers used to resolve DNS servers": "DNS sunucularını çözümlemek için kullanılan varsayılan DNS sunucuları",
|
||||
"Nameserver": "İsim Sunucusu",
|
||||
"List of DNS servers": "DNS sunucuları listesi, virgülle ayrılmış",
|
||||
"Fallback": "Yedek",
|
||||
"List of fallback DNS servers": "Yedek DNS sunucuları listesi, virgülle ayrılmış",
|
||||
"Proxy Server Nameserver": "Vekil Sunucusu İsim Sunucusu",
|
||||
"Proxy Node Nameserver": "Vekil düğümü alan adı çözümlemesi için DNS sunucuları",
|
||||
"Direct Nameserver": "Doğrudan İsim Sunucusu",
|
||||
"Direct outbound Nameserver": "Doğrudan çıkış alan adı çözümlemesi için DNS sunucuları, 'system' anahtar kelimesini destekler, virgülle ayrılmış",
|
||||
"Fake IP Filter": "Sahte IP Filtresi",
|
||||
"Domains that skip fake IP resolution": "Sahte IP çözümlemesini atlayan alan adları, virgülle ayrılmış",
|
||||
"Nameserver Policy": "İsim Sunucusu Politikası",
|
||||
"Domain-specific DNS server": "Alana özgü DNS sunucusu, birden çok sunucu noktalı virgülle ayrılır, format: domain=server1;server2",
|
||||
"Fallback Filter Settings": "Yedek Filtre Ayarları",
|
||||
"GeoIP Filtering": "GeoIP Filtreleme",
|
||||
"Enable GeoIP filtering for fallback": "Yedek için GeoIP filtrelemeyi etkinleştir",
|
||||
"GeoIP Code": "GeoIP Kodu",
|
||||
"Fallback IP CIDR": "Yedek IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "Yedek sunucuları kullanmayan IP CIDR'ları, virgülle ayrılmış",
|
||||
"Fallback Domain": "Yedek Alan Adı",
|
||||
"Domains using fallback servers": "Yedek sunucuları kullanan alan adları, virgülle ayrılmış",
|
||||
"Hosts Settings": "Hosts Ayarları",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Özel alan adından IP'ye veya alan adına eşleme",
|
||||
"Website Tests": "Web Sitesi Testleri",
|
||||
"Clash Info": "Clash Bilgisi",
|
||||
"Core Version": "Çekirdek Sürümü",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "Ayarlar Uygulandı"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS Üzerine Yazma",
|
||||
"warning": "Bu ayarlarla ilgili bilginiz yoksa, lütfen bunları değiştirmeyin ve DNS Üzerine Yazma'yı etkin tutun"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS Ayarları",
|
||||
"fallbackFilter": "Yedek Filtre Ayarları",
|
||||
"hosts": "Hosts Ayarları"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "DNS'i Etkinleştir",
|
||||
"listen": "DNS Dinleme",
|
||||
"enhancedMode": "Geliştirilmiş Mod",
|
||||
"fakeIpRange": "Sahte IP Aralığı",
|
||||
"fakeIpFilterMode": "Sahte IP Filtre Modu",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "IPv6 DNS çözümlemesini etkinleştir"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "H3'ü Tercih Et",
|
||||
"description": "DNS DOH uses HTTP/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Kurallara Uy",
|
||||
"description": "DNS bağlantıları yönlendirme kurallarını takip eder"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Hosts Kullan",
|
||||
"description": "Ana bilgisayarları hosts dosyası aracılığıyla çözümlemek için etkinleştirin"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Sistem Hosts Dosyasını Kullan",
|
||||
"description": "Ana bilgisayarları sistem hosts dosyası aracılığıyla çözümlemek için etkinleştirin"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Doğrudan İsim Sunucusu Politikasını Takip Et",
|
||||
"description": "İsim sunucusu politikasının takip edilip edilmeyeceği"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Varsayılan İsim Sunucusu",
|
||||
"description": "DNS sunucularını çözümlemek için kullanılan varsayılan DNS sunucuları"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "İsim Sunucusu",
|
||||
"description": "DNS sunucuları listesi, virgülle ayrılmış"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Yedek",
|
||||
"description": "Yedek DNS sunucuları listesi, virgülle ayrılmış"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Vekil Sunucusu İsim Sunucusu",
|
||||
"description": "Vekil düğümü alan adı çözümlemesi için DNS sunucuları"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Doğrudan İsim Sunucusu",
|
||||
"description": "Doğrudan çıkış alan adı çözümlemesi için DNS sunucuları, 'system' anahtar kelimesini destekler, virgülle ayrılmış"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Sahte IP Filtresi",
|
||||
"description": "Sahte IP çözümlemesini atlayan alan adları, virgülle ayrılmış"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "İsim Sunucusu Politikası",
|
||||
"description": "Alana özgü DNS sunucusu, birden çok sunucu noktalı virgülle ayrılır, format: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP Filtreleme",
|
||||
"description": "Yedek için GeoIP filtrelemeyi etkinleştir"
|
||||
},
|
||||
"geoipCode": "GeoIP Kodu",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Yedek IP CIDR",
|
||||
"description": "Yedek sunucuları kullanmayan IP CIDR'ları, virgülle ayrılmış"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Yedek Alan Adı",
|
||||
"description": "Yedek sunucuları kullanan alan adları, virgülle ayrılmış"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Özel alan adından IP'ye veya alan adına eşleme"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS ayarları kaydedildi",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "Челтәр интерфейсы",
|
||||
"Ip Address": "IP адресы",
|
||||
"Mac Address": "MAC адресы",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "URL ачарга",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Хост, порт, серсүзне %host, %port, %secret белән алмаштырыгыз",
|
||||
"Support %host, %port, %secret": "%host, %port, %secret макросларын хуплау",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "Merge file key error, changes reverted",
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "Clash Verge система хезмәтен яңадан урнаштыру өчен администратор хокукларын таләп итә",
|
||||
"DNS Settings": "DNS Settings",
|
||||
"DNS settings saved": "DNS settings saved",
|
||||
"DNS configuration error:": "DNS configuration error:",
|
||||
"DNS Overwrite": "DNS Overwrite",
|
||||
"DNS Settings Warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled",
|
||||
"Enable DNS": "Enable DNS",
|
||||
"DNS Listen": "DNS Listen",
|
||||
"Enhanced Mode": "Enhanced Mode",
|
||||
"Fake IP Range": "Fake IP Range",
|
||||
"Fake IP Filter Mode": "Fake IP Filter Mode",
|
||||
"Enable IPv6 DNS resolution": "Enable IPv6 DNS resolution",
|
||||
"Prefer H3": "Prefer H3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH uses HTTP/3",
|
||||
"Respect Rules": "Respect Rules",
|
||||
"DNS connections follow routing rules": "DNS connections follow routing rules",
|
||||
"Use Hosts": "Use Hosts",
|
||||
"Enable to resolve hosts through hosts file": "Enable to resolve hosts through hosts file",
|
||||
"Use System Hosts": "Use System Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "Enable to resolve hosts through system hosts file",
|
||||
"Direct Nameserver Follow Policy": "Direct Nameserver Follow Policy",
|
||||
"Whether to follow nameserver policy": "Whether to follow nameserver policy",
|
||||
"Default Nameserver": "Default Nameserver",
|
||||
"Default DNS servers used to resolve DNS servers": "Default DNS servers used to resolve DNS servers",
|
||||
"Nameserver": "Nameserver",
|
||||
"List of DNS servers": "List of DNS servers, comma separated",
|
||||
"Fallback": "Fallback",
|
||||
"List of fallback DNS servers": "List of fallback DNS servers, comma separated",
|
||||
"Proxy Server Nameserver": "Proxy Server Nameserver",
|
||||
"Proxy Node Nameserver": "DNS servers for proxy node domain resolution",
|
||||
"Direct Nameserver": "Direct Nameserver",
|
||||
"Direct outbound Nameserver": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated",
|
||||
"Fake IP Filter": "Fake IP Filter",
|
||||
"Domains that skip fake IP resolution": "Domains that skip fake IP resolution, comma separated",
|
||||
"Nameserver Policy": "Nameserver Policy",
|
||||
"Domain-specific DNS server": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2",
|
||||
"Fallback Filter Settings": "Fallback Filter Settings",
|
||||
"GeoIP Filtering": "GeoIP Filtering",
|
||||
"Enable GeoIP filtering for fallback": "Enable GeoIP filtering for fallback",
|
||||
"GeoIP Code": "GeoIP Code",
|
||||
"Fallback IP CIDR": "Fallback IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "IP CIDRs not using fallback servers, comma separated",
|
||||
"Fallback Domain": "Fallback Domain",
|
||||
"Domains using fallback servers": "Domains using fallback servers, comma separated",
|
||||
"Hosts Settings": "Hosts Settings",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "Custom domain to IP or domain mapping",
|
||||
"Website Tests": "Website Tests",
|
||||
"Clash Info": "Clash Info",
|
||||
"Core Version": "Core Version",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "Көйләүләр кулланылды"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS Overwrite",
|
||||
"warning": "If you are not familiar with these settings, please do not modify them and keep DNS Overwrite enabled"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS Settings",
|
||||
"fallbackFilter": "Fallback Filter Settings",
|
||||
"hosts": "Hosts Settings"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "Enable DNS",
|
||||
"listen": "DNS Listen",
|
||||
"enhancedMode": "Enhanced Mode",
|
||||
"fakeIpRange": "Fake IP Range",
|
||||
"fakeIpFilterMode": "Fake IP Filter Mode",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "Enable IPv6 DNS resolution"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "Prefer H3",
|
||||
"description": "DNS DOH uses HTTP/3"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "Respect Rules",
|
||||
"description": "DNS connections follow routing rules"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "Use Hosts",
|
||||
"description": "Enable to resolve hosts through hosts file"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "Use System Hosts",
|
||||
"description": "Enable to resolve hosts through system hosts file"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "Direct Nameserver Follow Policy",
|
||||
"description": "Whether to follow nameserver policy"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "Default Nameserver",
|
||||
"description": "Default DNS servers used to resolve DNS servers"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "Nameserver",
|
||||
"description": "List of DNS servers, comma separated"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "Fallback",
|
||||
"description": "List of fallback DNS servers, comma separated"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "Proxy Server Nameserver",
|
||||
"description": "DNS servers for proxy node domain resolution"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "Direct Nameserver",
|
||||
"description": "DNS servers for direct exit domain resolution, supports 'system' keyword, comma separated"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IP Filter",
|
||||
"description": "Domains that skip fake IP resolution, comma separated"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "Nameserver Policy",
|
||||
"description": "Domain-specific DNS server, multiple servers separated by semicolons, format: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP Filtering",
|
||||
"description": "Enable GeoIP filtering for fallback"
|
||||
},
|
||||
"geoipCode": "GeoIP Code",
|
||||
"fallbackIpCidr": {
|
||||
"label": "Fallback IP CIDR",
|
||||
"description": "IP CIDRs not using fallback servers, comma separated"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "Fallback Domain",
|
||||
"description": "Domains using fallback servers, comma separated"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "Custom domain to IP or domain mapping"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS settings saved",
|
||||
"configError": "DNS configuration error:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "网络接口",
|
||||
"Ip Address": "IP 地址",
|
||||
"Mac Address": "MAC 地址",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "打开链接",
|
||||
"Replace host, port, secret with %host, %port, %secret": "使用 %host, %port, %secret 表示 主机, 端口, 访问密钥",
|
||||
"Support %host, %port, %secret": "支持 %host, %port, %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "覆写文件键错误,变更已撤销",
|
||||
"Merge File Error": "覆写文件错误,变更已撤销",
|
||||
"Service Administrator Prompt": "Clash Verge 需要管理员权限安装系统服务",
|
||||
"DNS Settings": "DNS 设置",
|
||||
"DNS settings saved": "DNS 设置已保存",
|
||||
"DNS configuration error:": "DNS 配置错误:",
|
||||
"DNS Overwrite": "DNS 覆写",
|
||||
"DNS Settings Warning": "如果你不清楚这里的设置请不要修改,并保持 DNS 覆写开启",
|
||||
"Enable DNS": "启用 DNS",
|
||||
"DNS Listen": "DNS 监听地址",
|
||||
"Enhanced Mode": "增强模式",
|
||||
"Fake IP Range": "Fake IP 范围",
|
||||
"Fake IP Filter Mode": "Fake IP 过滤模式",
|
||||
"Enable IPv6 DNS resolution": "启用 IPv6 DNS 解析",
|
||||
"Prefer H3": "优先使用 HTTP/3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH 使用 HTTP/3 协议",
|
||||
"Respect Rules": "遵循路由规则",
|
||||
"DNS connections follow routing rules": "DNS 连接遵循路由规则",
|
||||
"Use Hosts": "使用 Hosts",
|
||||
"Enable to resolve hosts through hosts file": "启用通过 hosts 文件解析域名",
|
||||
"Use System Hosts": "使用系统 Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "启用通过系统 hosts 文件解析域名",
|
||||
"Direct Nameserver Follow Policy": "直连域名服务器遵循策略",
|
||||
"Whether to follow nameserver policy": "是否遵循 nameserver-policy 设置",
|
||||
"Default Nameserver": "默认域名服务器",
|
||||
"Default DNS servers used to resolve DNS servers": "用于解析 DNS 服务器的默认 DNS 服务器",
|
||||
"Nameserver": "域名服务器",
|
||||
"List of DNS servers": "DNS 服务器列表,用逗号分隔",
|
||||
"Fallback": "回退服务器",
|
||||
"List of fallback DNS servers": "回退 DNS 服务器列表,用逗号分隔",
|
||||
"Proxy Server Nameserver": "代理节点DNS",
|
||||
"Proxy Node Nameserver": "代理节点域名解析服务器,仅用于解析代理节点的域名,用逗号分隔",
|
||||
"Direct Nameserver": "直连域名服务器",
|
||||
"Direct outbound Nameserver": "直连出口域名解析服务器,支持 system 关键字,用逗号分隔",
|
||||
"Fake IP Filter": "Fake IP 过滤",
|
||||
"Domains that skip fake IP resolution": "跳过 Fake IP 解析的域名,用逗号分隔",
|
||||
"Nameserver Policy": "域名服务器策略",
|
||||
"Domain-specific DNS server": "特定域名的 DNS 服务器,多个服务器使用分号分隔,格式: domain=server1;server2",
|
||||
"Fallback Filter Settings": "回退过滤设置",
|
||||
"GeoIP Filtering": "GeoIP 过滤",
|
||||
"Enable GeoIP filtering for fallback": "启用 GeoIP 回退过滤",
|
||||
"GeoIP Code": "GeoIP 国家代码",
|
||||
"Fallback IP CIDR": "回退 IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "不使用回退服务器的 IP CIDR,用逗号分隔",
|
||||
"Fallback Domain": "回退域名",
|
||||
"Domains using fallback servers": "使用回退服务器的域名,用逗号分隔",
|
||||
"Hosts Settings": "Hosts 设置",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "自定义域名到 IP 或域名的映射,用逗号分隔",
|
||||
"Website Tests": "网站测试",
|
||||
"Clash Info": "Clash 信息",
|
||||
"Core Version": "内核版本",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "设置已应用"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS 覆写",
|
||||
"warning": "如果你不清楚这里的设置请不要修改,并保持 DNS 覆写开启"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS 设置",
|
||||
"fallbackFilter": "回退过滤设置",
|
||||
"hosts": "Hosts 设置"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "启用 DNS",
|
||||
"listen": "DNS 监听地址",
|
||||
"enhancedMode": "增强模式",
|
||||
"fakeIpRange": "Fake IP 范围",
|
||||
"fakeIpFilterMode": "Fake IP 过滤模式",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "启用 IPv6 DNS 解析"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "优先使用 HTTP/3",
|
||||
"description": "DNS DOH 使用 HTTP/3 协议"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "遵循路由规则",
|
||||
"description": "DNS 连接遵循路由规则"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "使用 Hosts",
|
||||
"description": "启用通过 hosts 文件解析域名"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "使用系统 Hosts",
|
||||
"description": "启用通过系统 hosts 文件解析域名"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "直连域名服务器遵循策略",
|
||||
"description": "是否遵循 nameserver-policy 设置"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "默认域名服务器",
|
||||
"description": "用于解析 DNS 服务器的默认 DNS 服务器"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "域名服务器",
|
||||
"description": "DNS 服务器列表,用逗号分隔"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "回退服务器",
|
||||
"description": "回退 DNS 服务器列表,用逗号分隔"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "代理节点DNS",
|
||||
"description": "代理节点域名解析服务器,仅用于解析代理节点的域名,用逗号分隔"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "直连域名服务器",
|
||||
"description": "直连出口域名解析服务器,支持 system 关键字,用逗号分隔"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IP 过滤",
|
||||
"description": "跳过 Fake IP 解析的域名,用逗号分隔"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "域名服务器策略",
|
||||
"description": "特定域名的 DNS 服务器,多个服务器使用分号分隔,格式: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP 过滤",
|
||||
"description": "启用 GeoIP 回退过滤"
|
||||
},
|
||||
"geoipCode": "GeoIP 国家代码",
|
||||
"fallbackIpCidr": {
|
||||
"label": "回退 IP CIDR",
|
||||
"description": "不使用回退服务器的 IP CIDR,用逗号分隔"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "回退域名",
|
||||
"description": "使用回退服务器的域名,用逗号分隔"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "自定义域名到 IP 或域名的映射,用逗号分隔"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS 设置已保存",
|
||||
"configError": "DNS 配置错误:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
@@ -297,7 +297,6 @@
|
||||
"Network Interface": "網路介面",
|
||||
"Ip Address": "IP 位址",
|
||||
"Mac Address": "MAC 位址",
|
||||
"IPv6": "IPv6",
|
||||
"Open URL": "開啟網址",
|
||||
"Replace host, port, secret with %host, %port, %secret": "使用 %host, %port, %secret 表示 主機, 連接埠, 存取金鑰",
|
||||
"Support %host, %port, %secret": "支援 %host, %port, %secret",
|
||||
@@ -379,52 +378,6 @@
|
||||
"Merge File Key Error": "覆寫檔案鍵錯誤,變更已撤銷",
|
||||
"Merge File Error": "覆寫檔案錯誤,變更已撤銷",
|
||||
"Service Administrator Prompt": "Clash Verge 需要管理員權限安裝系統服務",
|
||||
"DNS Settings": "DNS 設定",
|
||||
"DNS settings saved": "DNS 設定已儲存",
|
||||
"DNS configuration error:": "DNS 設定錯誤:",
|
||||
"DNS Overwrite": "DNS 覆寫",
|
||||
"DNS Settings Warning": "如果你不清楚這裡的設定請不要修改,並保持 DNS 覆寫開啟",
|
||||
"Enable DNS": "啟用 DNS",
|
||||
"DNS Listen": "DNS 監聽位址",
|
||||
"Enhanced Mode": "增強模式",
|
||||
"Fake IP Range": "Fake IP 範圍",
|
||||
"Fake IP Filter Mode": "Fake IP 篩選模式",
|
||||
"Enable IPv6 DNS resolution": "啟用 IPv6 DNS 解析",
|
||||
"Prefer H3": "優先使用 HTTP/3",
|
||||
"DNS DOH使用HTTP/3": "DNS DOH 使用 HTTP/3 協定",
|
||||
"Respect Rules": "遵循路由規則",
|
||||
"DNS connections follow routing rules": "DNS 連線遵循路由規則",
|
||||
"Use Hosts": "使用 Hosts",
|
||||
"Enable to resolve hosts through hosts file": "啟用透過 hosts 檔案解析網域",
|
||||
"Use System Hosts": "使用系統 Hosts",
|
||||
"Enable to resolve hosts through system hosts file": "啟用透過系統 hosts 檔案解析網域",
|
||||
"Direct Nameserver Follow Policy": "直連域名伺服器遵循策略",
|
||||
"Whether to follow nameserver policy": "是否遵循 nameserver-policy 設定",
|
||||
"Default Nameserver": "預設域名伺服器",
|
||||
"Default DNS servers used to resolve DNS servers": "用於解析 DNS 伺服器的預設 DNS 伺服器",
|
||||
"Nameserver": "域名伺服器",
|
||||
"List of DNS servers": "DNS 伺服器列表,用逗號分隔",
|
||||
"Fallback": "備援伺服器",
|
||||
"List of fallback DNS servers": "備援 DNS 伺服器列表,用逗號分隔",
|
||||
"Proxy Server Nameserver": "代理節點 DNS",
|
||||
"Proxy Node Nameserver": "代理節點網域解析伺服器,僅用於解析代理節點的網域,用逗號分隔",
|
||||
"Direct Nameserver": "直連域名伺服器",
|
||||
"Direct outbound Nameserver": "直連輸出網域解析伺服器,支援 system 關鍵字,用逗號分隔",
|
||||
"Fake IP Filter": "Fake IP 篩選",
|
||||
"Domains that skip fake IP resolution": "跳過 Fake IP 解析的網域,用逗號分隔",
|
||||
"Nameserver Policy": "域名伺服器策略",
|
||||
"Domain-specific DNS server": "特定網域的 DNS 伺服器,多個伺服器使用分號分隔,格式: domain=server1;server2",
|
||||
"Fallback Filter Settings": "備援篩選設定",
|
||||
"GeoIP Filtering": "GeoIP 篩選",
|
||||
"Enable GeoIP filtering for fallback": "啟用 GeoIP 備援篩選",
|
||||
"GeoIP Code": "GeoIP 國家代碼",
|
||||
"Fallback IP CIDR": "備援 IP CIDR",
|
||||
"IP CIDRs not using fallback servers": "不使用備援伺服器的 IP CIDR,用逗號分隔",
|
||||
"Fallback Domain": "備援網域",
|
||||
"Domains using fallback servers": "使用備援伺服器的網域,用逗號分隔",
|
||||
"Hosts Settings": "Hosts 設定",
|
||||
"Hosts": "Hosts",
|
||||
"Custom domain to IP or domain mapping": "自訂網域到 IP 或網域的映射,用逗號分隔",
|
||||
"Website Tests": "網站測試",
|
||||
"Clash Info": "Clash 資訊",
|
||||
"Core Version": "內核版本",
|
||||
@@ -1073,6 +1026,100 @@
|
||||
"messages": {
|
||||
"applied": "設定已套用"
|
||||
}
|
||||
},
|
||||
"dns": {
|
||||
"dialog": {
|
||||
"title": "DNS 覆寫",
|
||||
"warning": "如果你不清楚這裡的設定請不要修改,並保持 DNS 覆寫開啟"
|
||||
},
|
||||
"sections": {
|
||||
"general": "DNS 設定",
|
||||
"fallbackFilter": "備援篩選設定",
|
||||
"hosts": "Hosts 設定"
|
||||
},
|
||||
"fields": {
|
||||
"enable": "啟用 DNS",
|
||||
"listen": "DNS 監聽位址",
|
||||
"enhancedMode": "增強模式",
|
||||
"fakeIpRange": "Fake IP 範圍",
|
||||
"fakeIpFilterMode": "Fake IP 篩選模式",
|
||||
"ipv6": {
|
||||
"label": "IPv6",
|
||||
"description": "啟用 IPv6 DNS 解析"
|
||||
},
|
||||
"preferH3": {
|
||||
"label": "優先使用 HTTP/3",
|
||||
"description": "DNS DOH 使用 HTTP/3 協定"
|
||||
},
|
||||
"respectRules": {
|
||||
"label": "遵循路由規則",
|
||||
"description": "DNS 連線遵循路由規則"
|
||||
},
|
||||
"useHosts": {
|
||||
"label": "使用 Hosts",
|
||||
"description": "啟用透過 hosts 檔案解析網域"
|
||||
},
|
||||
"useSystemHosts": {
|
||||
"label": "使用系統 Hosts",
|
||||
"description": "啟用透過系統 hosts 檔案解析網域"
|
||||
},
|
||||
"directPolicy": {
|
||||
"label": "直連域名伺服器遵循策略",
|
||||
"description": "是否遵循 nameserver-policy 設定"
|
||||
},
|
||||
"defaultNameserver": {
|
||||
"label": "預設域名伺服器",
|
||||
"description": "用於解析 DNS 伺服器的預設 DNS 伺服器"
|
||||
},
|
||||
"nameserver": {
|
||||
"label": "域名伺服器",
|
||||
"description": "DNS 伺服器列表,用逗號分隔"
|
||||
},
|
||||
"fallback": {
|
||||
"label": "備援伺服器",
|
||||
"description": "備援 DNS 伺服器列表,用逗號分隔"
|
||||
},
|
||||
"proxy": {
|
||||
"label": "代理節點 DNS",
|
||||
"description": "代理節點網域解析伺服器,僅用於解析代理節點的網域,用逗號分隔"
|
||||
},
|
||||
"directNameserver": {
|
||||
"label": "直連域名伺服器",
|
||||
"description": "直連輸出網域解析伺服器,支援 system 關鍵字,用逗號分隔"
|
||||
},
|
||||
"fakeIpFilter": {
|
||||
"label": "Fake IP 篩選",
|
||||
"description": "跳過 Fake IP 解析的網域,用逗號分隔"
|
||||
},
|
||||
"nameserverPolicy": {
|
||||
"label": "域名伺服器策略",
|
||||
"description": "特定網域的 DNS 伺服器,多個伺服器使用分號分隔,格式: domain=server1;server2"
|
||||
},
|
||||
"geoipFiltering": {
|
||||
"label": "GeoIP 篩選",
|
||||
"description": "啟用 GeoIP 備援篩選"
|
||||
},
|
||||
"geoipCode": "GeoIP 國家代碼",
|
||||
"fallbackIpCidr": {
|
||||
"label": "備援 IP CIDR",
|
||||
"description": "不使用備援伺服器的 IP CIDR,用逗號分隔"
|
||||
},
|
||||
"fallbackDomain": {
|
||||
"label": "備援網域",
|
||||
"description": "使用備援伺服器的網域,用逗號分隔"
|
||||
},
|
||||
"hosts": {
|
||||
"label": "Hosts",
|
||||
"description": "自訂網域到 IP 或網域的映射,用逗號分隔"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"saved": "DNS 設定已儲存",
|
||||
"configError": "DNS 設定錯誤:"
|
||||
},
|
||||
"errors": {
|
||||
"invalid": "Invalid configuration"
|
||||
}
|
||||
}
|
||||
},
|
||||
"providers": {
|
||||
|
||||
Reference in New Issue
Block a user