chore(i18n): components.settings.clash.*
This commit is contained in:
@@ -67,7 +67,10 @@ const SettingClash = ({ onError }: Props) => {
|
||||
const onUpdateGeo = async () => {
|
||||
try {
|
||||
await updateGeo();
|
||||
showNotice("success", t("GeoData Updated"));
|
||||
showNotice(
|
||||
"success",
|
||||
t("components.settings.clash.messages.geoDataUpdated"),
|
||||
);
|
||||
} catch (err: any) {
|
||||
showNotice("error", err.message || err.toString());
|
||||
}
|
||||
@@ -93,7 +96,7 @@ const SettingClash = ({ onError }: Props) => {
|
||||
});
|
||||
|
||||
return (
|
||||
<SettingList title={t("Clash Setting")}>
|
||||
<SettingList title={t("components.settings.clash.title")}>
|
||||
<WebUIViewer ref={webRef} />
|
||||
<ClashPortViewer ref={portRef} />
|
||||
<ControllerViewer ref={ctrlRef} />
|
||||
@@ -103,10 +106,10 @@ const SettingClash = ({ onError }: Props) => {
|
||||
<HeaderConfiguration ref={corsRef} />
|
||||
|
||||
<SettingItem
|
||||
label={t("Allow Lan")}
|
||||
label={t("components.settings.clash.items.allowLan")}
|
||||
extra={
|
||||
<TooltipIcon
|
||||
title={t("Network Interface")}
|
||||
title={t("components.settings.clash.tooltips.networkInterface")}
|
||||
color={"inherit"}
|
||||
icon={LanRounded}
|
||||
onClick={() => {
|
||||
@@ -128,7 +131,7 @@ const SettingClash = ({ onError }: Props) => {
|
||||
</SettingItem>
|
||||
|
||||
<SettingItem
|
||||
label={t("DNS Overwrite")}
|
||||
label={t("components.settings.clash.items.dnsOverwrite")}
|
||||
extra={
|
||||
<TooltipIcon
|
||||
icon={SettingsRounded}
|
||||
@@ -143,7 +146,7 @@ const SettingClash = ({ onError }: Props) => {
|
||||
/>
|
||||
</SettingItem>
|
||||
|
||||
<SettingItem label={t("IPv6")}>
|
||||
<SettingItem label={t("components.settings.clash.items.ipv6")}>
|
||||
<GuardState
|
||||
value={ipv6 ?? false}
|
||||
valueProps="checked"
|
||||
@@ -157,10 +160,10 @@ const SettingClash = ({ onError }: Props) => {
|
||||
</SettingItem>
|
||||
|
||||
<SettingItem
|
||||
label={t("Unified Delay")}
|
||||
label={t("components.settings.clash.items.unifiedDelay")}
|
||||
extra={
|
||||
<TooltipIcon
|
||||
title={t("Unified Delay Info")}
|
||||
title={t("components.settings.clash.tooltips.unifiedDelay")}
|
||||
sx={{ opacity: "0.7" }}
|
||||
/>
|
||||
}
|
||||
@@ -178,9 +181,12 @@ const SettingClash = ({ onError }: Props) => {
|
||||
</SettingItem>
|
||||
|
||||
<SettingItem
|
||||
label={t("Log Level")}
|
||||
label={t("components.settings.clash.items.logLevel")}
|
||||
extra={
|
||||
<TooltipIcon title={t("Log Level Info")} sx={{ opacity: "0.7" }} />
|
||||
<TooltipIcon
|
||||
title={t("components.settings.clash.tooltips.logLevel")}
|
||||
sx={{ opacity: "0.7" }}
|
||||
/>
|
||||
}
|
||||
>
|
||||
<GuardState
|
||||
@@ -194,16 +200,26 @@ const SettingClash = ({ onError }: Props) => {
|
||||
}}
|
||||
>
|
||||
<Select size="small" sx={{ width: 100, "> div": { py: "7.5px" } }}>
|
||||
<MenuItem value="debug">Debug</MenuItem>
|
||||
<MenuItem value="info">Info</MenuItem>
|
||||
<MenuItem value="warning">Warn</MenuItem>
|
||||
<MenuItem value="error">Error</MenuItem>
|
||||
<MenuItem value="silent">Silent</MenuItem>
|
||||
<MenuItem value="debug">
|
||||
{t("components.settings.clash.options.logLevel.debug")}
|
||||
</MenuItem>
|
||||
<MenuItem value="info">
|
||||
{t("components.settings.clash.options.logLevel.info")}
|
||||
</MenuItem>
|
||||
<MenuItem value="warning">
|
||||
{t("components.settings.clash.options.logLevel.warning")}
|
||||
</MenuItem>
|
||||
<MenuItem value="error">
|
||||
{t("components.settings.clash.options.logLevel.error")}
|
||||
</MenuItem>
|
||||
<MenuItem value="silent">
|
||||
{t("components.settings.clash.options.logLevel.silent")}
|
||||
</MenuItem>
|
||||
</Select>
|
||||
</GuardState>
|
||||
</SettingItem>
|
||||
|
||||
<SettingItem label={t("Port Config")}>
|
||||
<SettingItem label={t("components.settings.clash.items.portConfig")}>
|
||||
<TextField
|
||||
autoComplete="new-password"
|
||||
disabled={false}
|
||||
@@ -218,7 +234,7 @@ const SettingClash = ({ onError }: Props) => {
|
||||
</SettingItem>
|
||||
|
||||
<SettingItem
|
||||
label={<>{t("External")}</>}
|
||||
label={t("components.settings.clash.items.external")}
|
||||
extra={
|
||||
<TooltipIcon
|
||||
title={t("components.settings.externalCors.tooltips.open")}
|
||||
@@ -234,10 +250,13 @@ const SettingClash = ({ onError }: Props) => {
|
||||
}}
|
||||
/>
|
||||
|
||||
<SettingItem onClick={() => webRef.current?.open()} label={t("Web UI")} />
|
||||
<SettingItem
|
||||
onClick={() => webRef.current?.open()}
|
||||
label={t("components.settings.clash.items.webUI")}
|
||||
/>
|
||||
|
||||
<SettingItem
|
||||
label={t("Clash Core")}
|
||||
label={t("components.settings.clash.items.clashCore")}
|
||||
extra={
|
||||
<TooltipIcon
|
||||
icon={SettingsRounded}
|
||||
@@ -251,17 +270,20 @@ const SettingClash = ({ onError }: Props) => {
|
||||
{isWIN && (
|
||||
<SettingItem
|
||||
onClick={invoke_uwp_tool}
|
||||
label={t("Open UWP tool")}
|
||||
label={t("components.settings.clash.items.openUwpTool")}
|
||||
extra={
|
||||
<TooltipIcon
|
||||
title={t("Open UWP tool Info")}
|
||||
title={t("components.settings.clash.tooltips.openUwpTool")}
|
||||
sx={{ opacity: "0.7" }}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
)}
|
||||
|
||||
<SettingItem onClick={onUpdateGeo} label={t("Update GeoData")} />
|
||||
<SettingItem
|
||||
onClick={onUpdateGeo}
|
||||
label={t("components.settings.clash.items.updateGeoData")}
|
||||
/>
|
||||
</SettingList>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "رابط PAC:",
|
||||
"Auto Launch": "إطلاق تلقائي",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Clash Setting": "إعدادات Clash",
|
||||
"Allow Lan": "السماح بالشبكة المحلية",
|
||||
"Network Interface": "واجهة الشبكة",
|
||||
"Ip Address": "عنوان IP",
|
||||
"Mac Address": "عنوان MAC",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "تأخير موحد",
|
||||
"Unified Delay Info": "عند تفعيل التأخير الموحد، سيتم إجراء اختبارين للتأخير لتقليل الفروقات الناتجة عن مفاوضات الاتصال",
|
||||
"Log Level": "مستوى السجلات",
|
||||
"Log Level Info": "This parameter is valid only for kernel log files in the log directory Service folder",
|
||||
"Port Config": "تكوين المنافذ",
|
||||
"Random Port": "منفذ عشوائي",
|
||||
"Mixed Port": "منفذ مختلط",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "منفذ Tproxy",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "خارجي",
|
||||
"Open URL": "فتح الرابط",
|
||||
"Replace host, port, secret with %host, %port, %secret": "استبدل المضيف والمنفذ والمفتاح بـ %host و%port و%secret",
|
||||
"Support %host, %port, %secret": "يدعم %host و%port و%secret",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "إصدار مستقر",
|
||||
"Alpha Version": "إصدار ألفا",
|
||||
"Please enter your root password": "يرجى إدخال كلمة مرور الرووت",
|
||||
"Open UWP tool": "فتح أداة UWP",
|
||||
"Open UWP tool Info": "منذ نظام ويندوز 8، يتم تقييد تطبيقات UWP من الوصول المباشر إلى المضيف المحلي. هذه الأداة تتيح تجاوز هذا التقييد",
|
||||
"Update GeoData": "تحديث البيانات الجغرافية",
|
||||
"theme.light": "سمة فاتحة",
|
||||
"theme.dark": "سمة داكنة",
|
||||
"theme.system": "سمة النظام",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "تنسيق التخطي غير صالح",
|
||||
"Core Version Updated": "تم تحديث إصدار النواة",
|
||||
"Clash Core Restarted": "تم إعادة تشغيل نواة Clash",
|
||||
"GeoData Updated": "تم تحديث البيانات الجغرافية",
|
||||
"Currently on the Latest Version": "أنت على أحدث إصدار حاليًا",
|
||||
"Import Subscription Successful": "تم استيراد الاشتراك بنجاح",
|
||||
"WebDAV Server URL": "عنوان خادم WebDAV",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "External Cors Settings"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "إعدادات Clash",
|
||||
"items": {
|
||||
"allowLan": "السماح بالشبكة المحلية",
|
||||
"dnsOverwrite": "DNS Overwrite",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "تأخير موحد",
|
||||
"logLevel": "مستوى السجلات",
|
||||
"portConfig": "تكوين المنافذ",
|
||||
"external": "خارجي",
|
||||
"webUI": "واجهة الويب",
|
||||
"clashCore": "نواة Clash",
|
||||
"openUwpTool": "فتح أداة UWP",
|
||||
"updateGeoData": "تحديث البيانات الجغرافية"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "واجهة الشبكة",
|
||||
"unifiedDelay": "عند تفعيل التأخير الموحد، سيتم إجراء اختبارين للتأخير لتقليل الفروقات الناتجة عن مفاوضات الاتصال",
|
||||
"logLevel": "This parameter is valid only for kernel log files in the log directory Service folder",
|
||||
"openUwpTool": "منذ نظام ويندوز 8، يتم تقييد تطبيقات UWP من الوصول المباشر إلى المضيف المحلي. هذه الأداة تتيح تجاوز هذا التقييد"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "تم تحديث البيانات الجغرافية"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "الإعدادات الأساسية Verge",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PAC-Adresse: ",
|
||||
"Auto Launch": "Beim Start automatisch starten",
|
||||
"Administrator mode may not support auto launch": "Der Administrator-Modus unterstützt möglicherweise keine automatische Startfunktion.",
|
||||
"Clash Setting": "Clash-Einstellungen",
|
||||
"Allow Lan": "Netzwerkverbindung im lokalen Netzwerk zulassen",
|
||||
"Network Interface": "Netzwerkschnittstelle",
|
||||
"Ip Address": "IP-Adresse",
|
||||
"Mac Address": "MAC-Adresse",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "Einheitliche Latenz",
|
||||
"Unified Delay Info": "Wenn die einheitliche Latenz aktiviert ist, werden zwei Latenztests durchgeführt, um die Latenzunterschiede zwischen verschiedenen Knotentypen aufgrund von Verbindungsaufbau und anderen Faktoren zu eliminieren.",
|
||||
"Log Level": "Protokolliergrad",
|
||||
"Log Level Info": "Dies wirkt sich nur auf die Kernprotokolldateien im Verzeichnis Service im Protokollverzeichnis aus.",
|
||||
"Port Config": "Port-Konfiguration",
|
||||
"Random Port": "Zufälliger Port",
|
||||
"Mixed Port": "Mischter Proxy-Port",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "TPROXY-Transparenter Proxy-Port",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "Externe Steuerung",
|
||||
"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",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "Stabile Version",
|
||||
"Alpha Version": "Vorschauversion",
|
||||
"Please enter your root password": "Bitte geben Sie Ihr Root-Passwort ein.",
|
||||
"Open UWP tool": "UWP-Tool öffnen",
|
||||
"Open UWP tool Info": "Ab Windows 8 wird die direkte Netzwerkverbindung von UWP-Anwendungen (z. B. Microsoft Store) zu lokalen Hosts eingeschränkt. Mit diesem Tool können Sie diese Einschränkung umgehen.",
|
||||
"Update GeoData": "Geo-Daten aktualisieren",
|
||||
"theme.light": "Light",
|
||||
"theme.dark": "Dark",
|
||||
"theme.system": "System",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "Ungültiges Format für die Proxy-Umgehung",
|
||||
"Core Version Updated": "Kernversion wurde aktualisiert",
|
||||
"Clash Core Restarted": "Clash-Kern wurde neu gestartet",
|
||||
"GeoData Updated": "Geo-Daten wurden aktualisiert",
|
||||
"Currently on the Latest Version": "Sie verwenden bereits die neueste Version",
|
||||
"Import Subscription Successful": "Abonnement erfolgreich importiert",
|
||||
"WebDAV Server URL": "WebDAV-Serveradresse http(s)://",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "Einstellungen für externe CORS"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Clash-Einstellungen",
|
||||
"items": {
|
||||
"allowLan": "Netzwerkverbindung im lokalen Netzwerk zulassen",
|
||||
"dnsOverwrite": "DNS-Überschreibung",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "Einheitliche Latenz",
|
||||
"logLevel": "Protokolliergrad",
|
||||
"portConfig": "Port-Konfiguration",
|
||||
"external": "Externe Steuerung",
|
||||
"webUI": "Web-Oberfläche",
|
||||
"clashCore": "Clash-Kern",
|
||||
"openUwpTool": "UWP-Tool öffnen",
|
||||
"updateGeoData": "Geo-Daten aktualisieren"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "Netzwerkschnittstelle",
|
||||
"unifiedDelay": "Wenn die einheitliche Latenz aktiviert ist, werden zwei Latenztests durchgeführt, um die Latenzunterschiede zwischen verschiedenen Knotentypen aufgrund von Verbindungsaufbau und anderen Faktoren zu eliminieren.",
|
||||
"logLevel": "Dies wirkt sich nur auf die Kernprotokolldateien im Verzeichnis Service im Protokollverzeichnis aus.",
|
||||
"openUwpTool": "Ab Windows 8 wird die direkte Netzwerkverbindung von UWP-Anwendungen (z. B. Microsoft Store) zu lokalen Hosts eingeschränkt. Mit diesem Tool können Sie diese Einschränkung umgehen."
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "Geo-Daten wurden aktualisiert"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Verge-Grundeinstellungen",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PAC URL: ",
|
||||
"Auto Launch": "Auto Launch",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Clash Setting": "Clash Setting",
|
||||
"Allow Lan": "Allow LAN",
|
||||
"Network Interface": "Network Interface",
|
||||
"Ip Address": "IP Address",
|
||||
"Mac Address": "MAC Address",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "Unified Delay",
|
||||
"Unified Delay Info": "When unified delay is turned on, two delay tests will be performed to eliminate the delay differences between different types of nodes caused by connection handshakes, etc",
|
||||
"Log Level": "Log Level",
|
||||
"Log Level Info": "This parameter is valid only for kernel log files in the log directory Service folder",
|
||||
"Port Config": "Port Config",
|
||||
"Random Port": "Random Port",
|
||||
"Mixed Port": "Mixed Port",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Tproxy Port",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "External",
|
||||
"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",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "Release Version",
|
||||
"Alpha Version": "Alpha Version",
|
||||
"Please enter your root password": "Please enter your root password",
|
||||
"Open UWP tool": "Open UWP tool",
|
||||
"Open UWP tool Info": "Since Windows 8, UWP apps (such as Microsoft Store) are restricted from directly accessing local host network services, and this tool can be used to bypass this restriction",
|
||||
"Update GeoData": "Update GeoData",
|
||||
"theme.light": "Light",
|
||||
"theme.dark": "Dark",
|
||||
"theme.system": "System",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "Invalid Bypass Format",
|
||||
"Core Version Updated": "Core Version Updated",
|
||||
"Clash Core Restarted": "Clash Core Restarted",
|
||||
"GeoData Updated": "GeoData Updated",
|
||||
"Currently on the Latest Version": "Currently on the Latest Version",
|
||||
"Import Subscription Successful": "Import subscription successful",
|
||||
"WebDAV Server URL": "WebDAV Server URL",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "External Cors Settings"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Clash Setting",
|
||||
"items": {
|
||||
"allowLan": "Allow LAN",
|
||||
"dnsOverwrite": "DNS Overwrite",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "Unified Delay",
|
||||
"logLevel": "Log Level",
|
||||
"portConfig": "Port Config",
|
||||
"external": "External",
|
||||
"webUI": "Web UI",
|
||||
"clashCore": "Clash Core",
|
||||
"openUwpTool": "Open UWP tool",
|
||||
"updateGeoData": "Update GeoData"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "Network Interface",
|
||||
"unifiedDelay": "When unified delay is turned on, two delay tests will be performed to eliminate the delay differences between different types of nodes caused by connection handshakes, etc",
|
||||
"logLevel": "This parameter is valid only for kernel log files in the log directory Service folder",
|
||||
"openUwpTool": "Since Windows 8, UWP apps (such as Microsoft Store) are restricted from directly accessing local host network services, and this tool can be used to bypass this restriction"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "GeoData Updated"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Verge Basic Setting",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "URL del PAC: ",
|
||||
"Auto Launch": "Inicio automático al arrancar el sistema",
|
||||
"Administrator mode may not support auto launch": "El modo de administrador puede no admitir el inicio automático.",
|
||||
"Clash Setting": "Ajustes de Clash",
|
||||
"Allow Lan": "Conexión a la red local",
|
||||
"Network Interface": "Interfaz de red",
|
||||
"Ip Address": "Dirección IP",
|
||||
"Mac Address": "Dirección MAC",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "Latencia unificada",
|
||||
"Unified Delay Info": "Al habilitar la latencia unificada, se realizarán dos pruebas de latencia para eliminar las diferencias de latencia entre diferentes tipos de nodos causadas por el handshake de conexión, etc.",
|
||||
"Log Level": "Nivel de registro",
|
||||
"Log Level Info": "Solo se aplica al archivo de registro del núcleo en la carpeta Service del directorio de registros.",
|
||||
"Port Config": "Configuración de puerto",
|
||||
"Random Port": "Puerto aleatorio",
|
||||
"Mixed Port": "Puerto de proxy mixto",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Puerto de proxy transparente TPROXY",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "Control externo",
|
||||
"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",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "Versión estable",
|
||||
"Alpha Version": "Versión de vista previa",
|
||||
"Please enter your root password": "Ingrese su contraseña de root",
|
||||
"Open UWP tool": "Abrir herramienta UWP",
|
||||
"Open UWP tool Info": "A partir de Windows 8, las aplicaciones UWP (como la Tienda de Microsoft) tienen restricciones para acceder directamente a los servicios de red del host local. Use esta herramienta para evitar esta restricción.",
|
||||
"Update GeoData": "Actualizar GeoData",
|
||||
"theme.light": "Light",
|
||||
"theme.dark": "Dark",
|
||||
"theme.system": "System",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "Formato de omisión de proxy no válido",
|
||||
"Core Version Updated": "Versión del núcleo actualizada",
|
||||
"Clash Core Restarted": "Núcleo de Clash reiniciado",
|
||||
"GeoData Updated": "GeoData actualizado",
|
||||
"Currently on the Latest Version": "Actualmente está en la última versión",
|
||||
"Import Subscription Successful": "Suscripción importada con éxito",
|
||||
"WebDAV Server URL": "Dirección del servidor WebDAV http(s)://",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "Configuración de CORS externo"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Ajustes de Clash",
|
||||
"items": {
|
||||
"allowLan": "Conexión a la red local",
|
||||
"dnsOverwrite": "Sobrescritura de DNS",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "Latencia unificada",
|
||||
"logLevel": "Nivel de registro",
|
||||
"portConfig": "Configuración de puerto",
|
||||
"external": "Control externo",
|
||||
"webUI": "Interfaz web",
|
||||
"clashCore": "Núcleo de Clash",
|
||||
"openUwpTool": "Abrir herramienta UWP",
|
||||
"updateGeoData": "Actualizar GeoData"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "Interfaz de red",
|
||||
"unifiedDelay": "Al habilitar la latencia unificada, se realizarán dos pruebas de latencia para eliminar las diferencias de latencia entre diferentes tipos de nodos causadas por el handshake de conexión, etc.",
|
||||
"logLevel": "Solo se aplica al archivo de registro del núcleo en la carpeta Service del directorio de registros.",
|
||||
"openUwpTool": "A partir de Windows 8, las aplicaciones UWP (como la Tienda de Microsoft) tienen restricciones para acceder directamente a los servicios de red del host local. Use esta herramienta para evitar esta restricción."
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "GeoData actualizado"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Ajustes básicos de Verge",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PAC URL: ",
|
||||
"Auto Launch": "راهاندازی خودکار",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Clash Setting": "تنظیمات Clash",
|
||||
"Allow Lan": "اجازه LAN",
|
||||
"Network Interface": "رابط شبکه",
|
||||
"Ip Address": "آدرس IP",
|
||||
"Mac Address": "آدرس MAC",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "معادلDELAY",
|
||||
"Unified Delay Info": "معادلDELAY را فعال کنید تا ترافیک شبکه به سرعت رسید",
|
||||
"Log Level": "سطح لاگ",
|
||||
"Log Level Info": "این فقط روی فایلهای لاگ هسته تحت فایل سرویس در فهرست ورود اثر میگذارد.",
|
||||
"Port Config": "پیکربندی پورت",
|
||||
"Random Port": "پورت تصادفی",
|
||||
"Mixed Port": "پورت پروکسی ترکیبی",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "پورت پروکسی شفاف Tproxy",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "خارجی",
|
||||
"Open URL": "باز کردن آدرس اینترنتی",
|
||||
"Replace host, port, secret with %host, %port, %secret": "جایگزین کردن میزبان، پورت و رمز با %host، %port، %secret",
|
||||
"Support %host, %port, %secret": "پشتیبانی از %host، %port و %secret",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "نسخه نهایی",
|
||||
"Alpha Version": "نسخه آلفا",
|
||||
"Please enter your root password": "لطفاً رمز ریشه خود را وارد کنید",
|
||||
"Open UWP tool": "باز کردن ابزار UWP",
|
||||
"Open UWP tool Info": "از ویندوز 8 به بعد، برنامههای UWP (مانند Microsoft Store) از دسترسی مستقیم به خدمات شبکه محلی محدود شدهاند و این ابزار میتواند برای دور زدن این محدودیت استفاده شود",
|
||||
"Update GeoData": "بهروزرسانی GeoData",
|
||||
"theme.light": "روشن",
|
||||
"theme.dark": "تاریک",
|
||||
"theme.system": "سیستم",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "فرمت عبور نامعتبر است",
|
||||
"Core Version Updated": "نسخه هسته بهروزرسانی شد",
|
||||
"Clash Core Restarted": "هسته Clash مجدداً راهاندازی شد",
|
||||
"GeoData Updated": "GeoData بهروزرسانی شد",
|
||||
"Currently on the Latest Version": "در حال حاضر در آخرین نسخه",
|
||||
"Import Subscription Successful": "وارد کردن اشتراک با موفقیت انجام شد",
|
||||
"WebDAV Server URL": "http(s):// URL سرور WebDAV",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "External Cors Settings"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "تنظیمات Clash",
|
||||
"items": {
|
||||
"allowLan": "اجازه LAN",
|
||||
"dnsOverwrite": "DNS Overwrite",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "معادلDELAY",
|
||||
"logLevel": "سطح لاگ",
|
||||
"portConfig": "پیکربندی پورت",
|
||||
"external": "خارجی",
|
||||
"webUI": "رابط وب",
|
||||
"clashCore": "هسته Clash",
|
||||
"openUwpTool": "باز کردن ابزار UWP",
|
||||
"updateGeoData": "بهروزرسانی GeoData"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "رابط شبکه",
|
||||
"unifiedDelay": "معادلDELAY را فعال کنید تا ترافیک شبکه به سرعت رسید",
|
||||
"logLevel": "این فقط روی فایلهای لاگ هسته تحت فایل سرویس در فهرست ورود اثر میگذارد.",
|
||||
"openUwpTool": "از ویندوز 8 به بعد، برنامههای UWP (مانند Microsoft Store) از دسترسی مستقیم به خدمات شبکه محلی محدود شدهاند و این ابزار میتواند برای دور زدن این محدودیت استفاده شود"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "GeoData بهروزرسانی شد"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "تنظیمات پایه Verge",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "URL PAC: ",
|
||||
"Auto Launch": "Peluncuran Otomatis",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Clash Setting": "Pengaturan Clash",
|
||||
"Allow Lan": "Izinkan LAN",
|
||||
"Network Interface": "Antarmuka Jaringan",
|
||||
"Ip Address": "Alamat IP",
|
||||
"Mac Address": "Alamat MAC",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "Keterlambatan Terpadu",
|
||||
"Unified Delay Info": "Saat keterlambatan terpadu diaktifkan, dua tes keterlambatan akan dilakukan untuk menghilangkan perbedaan keterlambatan antara berbagai jenis node yang disebabkan oleh jabat tangan koneksi, dll.",
|
||||
"Log Level": "Tingkat Log",
|
||||
"Log Level Info": "Ini hanya berlaku untuk file log kernel di folder layanan di direktori log.",
|
||||
"Port Config": "Konfigurasi Port",
|
||||
"Random Port": "Port Acak",
|
||||
"Mixed Port": "Port Campuran",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Port Tproxy",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "Eksternal",
|
||||
"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",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "Versi Rilis",
|
||||
"Alpha Version": "Versi Alpha",
|
||||
"Please enter your root password": "Harap masukkan kata sandi root Anda",
|
||||
"Open UWP tool": "Buka alat UWP",
|
||||
"Open UWP tool Info": "Sejak Windows 8, aplikasi UWP (seperti Microsoft Store) dibatasi dari mengakses layanan jaringan host lokal secara langsung, dan alat ini dapat digunakan untuk melewati pembatasan ini",
|
||||
"Update GeoData": "Perbarui GeoData",
|
||||
"theme.light": "Terang",
|
||||
"theme.dark": "Gelap",
|
||||
"theme.system": "Sistem",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "Format Bypass Tidak Valid",
|
||||
"Core Version Updated": "Versi Core Diperbarui",
|
||||
"Clash Core Restarted": "Core Clash Dimulai Ulang",
|
||||
"GeoData Updated": "GeoData Diperbarui",
|
||||
"Currently on the Latest Version": "Saat ini pada Versi Terbaru",
|
||||
"Import Subscription Successful": "Berlangganan Berhasil Diimpor",
|
||||
"WebDAV Server URL": "URL Server WebDAV",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "External Cors Settings"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Pengaturan Clash",
|
||||
"items": {
|
||||
"allowLan": "Izinkan LAN",
|
||||
"dnsOverwrite": "DNS Overwrite",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "Keterlambatan Terpadu",
|
||||
"logLevel": "Tingkat Log",
|
||||
"portConfig": "Konfigurasi Port",
|
||||
"external": "Eksternal",
|
||||
"webUI": "Antarmuka Web",
|
||||
"clashCore": "Inti Clash",
|
||||
"openUwpTool": "Buka alat UWP",
|
||||
"updateGeoData": "Perbarui GeoData"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "Antarmuka Jaringan",
|
||||
"unifiedDelay": "Saat keterlambatan terpadu diaktifkan, dua tes keterlambatan akan dilakukan untuk menghilangkan perbedaan keterlambatan antara berbagai jenis node yang disebabkan oleh jabat tangan koneksi, dll.",
|
||||
"logLevel": "Ini hanya berlaku untuk file log kernel di folder layanan di direktori log.",
|
||||
"openUwpTool": "Sejak Windows 8, aplikasi UWP (seperti Microsoft Store) dibatasi dari mengakses layanan jaringan host lokal secara langsung, dan alat ini dapat digunakan untuk melewati pembatasan ini"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "GeoData Diperbarui"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Pengaturan Dasar Verge",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PACアドレス:",
|
||||
"Auto Launch": "起動時に自動起動",
|
||||
"Administrator mode may not support auto launch": "管理者モードでは起動時の自動起動がサポートされない場合があります。",
|
||||
"Clash Setting": "Clash設定",
|
||||
"Allow Lan": "LAN接続を許可",
|
||||
"Network Interface": "ネットワークインターフェース",
|
||||
"Ip Address": "IPアドレス",
|
||||
"Mac Address": "MACアドレス",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "統一遅延",
|
||||
"Unified Delay Info": "統一遅延を有効にすると、2回の遅延テストが行われ、接続ハンドシェイクなどによる異なるタイプのノードの遅延差を解消します。",
|
||||
"Log Level": "ログレベル",
|
||||
"Log Level Info": "ログディレクトリのServiceフォルダ内のコアログファイルにのみ適用されます。",
|
||||
"Port Config": "ポート設定",
|
||||
"Random Port": "ランダムポート",
|
||||
"Mixed Port": "混合プロキシポート",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "TPROXY透明プロキシポート",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "外部制御",
|
||||
"Open URL": "URLを開く",
|
||||
"Replace host, port, secret with %host, %port, %secret": "%host, %port, %secretを使用してホスト、ポート、アクセスキーを表します。",
|
||||
"Support %host, %port, %secret": "%host, %port, %secretをサポートします。",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "正式版",
|
||||
"Alpha Version": "プレビュー版",
|
||||
"Please enter your root password": "ルートパスワードを入力してください。",
|
||||
"Open UWP tool": "UWPツールを開く",
|
||||
"Open UWP tool Info": "Windows 8以降では、UWPアプリケーション(Microsoft Storeなど)がローカルホストのネットワークサービスに直接アクセスすることが制限されています。このツールを使用すると、この制限を回避できます。",
|
||||
"Update GeoData": "GeoDataを更新",
|
||||
"theme.light": "ライト",
|
||||
"theme.dark": "ダーク",
|
||||
"theme.system": "システム",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "無効なバイパス形式",
|
||||
"Core Version Updated": "コアバージョンが更新されました。",
|
||||
"Clash Core Restarted": "Clashコアが再起動されました。",
|
||||
"GeoData Updated": "GeoDataが更新されました。",
|
||||
"Currently on the Latest Version": "現在は最新バージョンです。",
|
||||
"Import Subscription Successful": "サブスクリプションのインポートに成功しました。",
|
||||
"WebDAV Server URL": "WebDAVサーバーのURL http(s)://",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "外部 CORS 設定"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Clash設定",
|
||||
"items": {
|
||||
"allowLan": "LAN接続を許可",
|
||||
"dnsOverwrite": "DNS上書き",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "統一遅延",
|
||||
"logLevel": "ログレベル",
|
||||
"portConfig": "ポート設定",
|
||||
"external": "外部制御",
|
||||
"webUI": "Webインターフェース",
|
||||
"clashCore": "Clashコア",
|
||||
"openUwpTool": "UWPツールを開く",
|
||||
"updateGeoData": "GeoDataを更新"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "ネットワークインターフェース",
|
||||
"unifiedDelay": "統一遅延を有効にすると、2回の遅延テストが行われ、接続ハンドシェイクなどによる異なるタイプのノードの遅延差を解消します。",
|
||||
"logLevel": "ログディレクトリのServiceフォルダ内のコアログファイルにのみ適用されます。",
|
||||
"openUwpTool": "Windows 8以降では、UWPアプリケーション(Microsoft Storeなど)がローカルホストのネットワークサービスに直接アクセスすることが制限されています。このツールを使用すると、この制限を回避できます。"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "GeoDataが更新されました。"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Verge基本設定",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PAC URL: ",
|
||||
"Auto Launch": "Auto Launch",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Clash Setting": "Clash 설정",
|
||||
"Allow Lan": "Allow LAN",
|
||||
"Network Interface": "Network Interface",
|
||||
"Ip Address": "IP Address",
|
||||
"Mac Address": "MAC Address",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "Unified Delay",
|
||||
"Unified Delay Info": "When unified delay is turned on, two delay tests will be performed to eliminate the delay differences between different types of nodes caused by connection handshakes, etc",
|
||||
"Log Level": "로그 레벨",
|
||||
"Log Level Info": "This parameter is valid only for kernel log files in the log directory Service folder",
|
||||
"Port Config": "Port Config",
|
||||
"Random Port": "Random Port",
|
||||
"Mixed Port": "혼합 포트",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Tproxy Port",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "External",
|
||||
"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",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "Release Version",
|
||||
"Alpha Version": "Alpha Version",
|
||||
"Please enter your root password": "Please enter your root password",
|
||||
"Open UWP tool": "Open UWP tool",
|
||||
"Open UWP tool Info": "Since Windows 8, UWP apps (such as Microsoft Store) are restricted from directly accessing local host network services, and this tool can be used to bypass this restriction",
|
||||
"Update GeoData": "Update GeoData",
|
||||
"theme.light": "Light",
|
||||
"theme.dark": "Dark",
|
||||
"theme.system": "System",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "Invalid Bypass Format",
|
||||
"Core Version Updated": "Core Version Updated",
|
||||
"Clash Core Restarted": "Clash Core Restarted",
|
||||
"GeoData Updated": "GeoData Updated",
|
||||
"Currently on the Latest Version": "Currently on the Latest Version",
|
||||
"Import Subscription Successful": "구독 가져오기 성공",
|
||||
"WebDAV Server URL": "WebDAV Server URL",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "External Cors Settings"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Clash 설정",
|
||||
"items": {
|
||||
"allowLan": "Allow LAN",
|
||||
"dnsOverwrite": "DNS Overwrite",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "Unified Delay",
|
||||
"logLevel": "로그 레벨",
|
||||
"portConfig": "Port Config",
|
||||
"external": "External",
|
||||
"webUI": "Web UI",
|
||||
"clashCore": "Clash Core",
|
||||
"openUwpTool": "Open UWP tool",
|
||||
"updateGeoData": "Update GeoData"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "Network Interface",
|
||||
"unifiedDelay": "When unified delay is turned on, two delay tests will be performed to eliminate the delay differences between different types of nodes caused by connection handshakes, etc",
|
||||
"logLevel": "This parameter is valid only for kernel log files in the log directory Service folder",
|
||||
"openUwpTool": "Since Windows 8, UWP apps (such as Microsoft Store) are restricted from directly accessing local host network services, and this tool can be used to bypass this restriction"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "GeoData Updated"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Verge 기본 설정",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "Адрес PAC: ",
|
||||
"Auto Launch": "Автозапуск",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Clash Setting": "Настройки Clash",
|
||||
"Allow Lan": "Разрешить доступ из локальной сети",
|
||||
"Network Interface": "Сетевой интерфейс",
|
||||
"Ip Address": "IP адрес",
|
||||
"Mac Address": "MAC адрес",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "Точная задержка",
|
||||
"Unified Delay Info": "Когда унифицированная(точная) задержка включена, будут выполнены два теста задержки, чтобы устранить различия в задержке между разными типами узлов, вызванные подтверждением соединения и т. д",
|
||||
"Log Level": "Уровень логов",
|
||||
"Log Level Info": "Это действует только на файлы журнала ядра в служебном файле в каталоге журналов.",
|
||||
"Port Config": "Настройка порта",
|
||||
"Random Port": "Случайный порт",
|
||||
"Mixed Port": "Смешанный прокси-порт",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Порт прозрачного прокси Tproxy",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "Внешний контроллер",
|
||||
"Open URL": "Перейти по адресу",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Замените хост, порт и секрет на %host, %port, %secret",
|
||||
"Support %host, %port, %secret": "Поддерживаются %host, %port, %secret",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "Официальная версия",
|
||||
"Alpha Version": "Альфа-версия",
|
||||
"Please enter your root password": "Пожалуйста, введите ваш пароль root",
|
||||
"Open UWP tool": "Открыть UWP инструмент",
|
||||
"Open UWP tool Info": "С Windows 8 приложения UWP (такие как Microsoft Store) ограничены в прямом доступе к сетевым службам локального хоста, и этот инструмент позволяет обойти это ограничение",
|
||||
"Update GeoData": "Обновить GeoData",
|
||||
"theme.light": "Светлая",
|
||||
"theme.dark": "Тёмная",
|
||||
"theme.system": "Системная",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "Неверный формат обхода",
|
||||
"Core Version Updated": "Ядро обновлено до последней версии",
|
||||
"Clash Core Restarted": "Ядро перезапущено",
|
||||
"GeoData Updated": "Файлы GeoData обновлены",
|
||||
"Currently on the Latest Version": "Обновление не требуется",
|
||||
"Import Subscription Successful": "Подписка успешно импортирована",
|
||||
"WebDAV Server URL": "URL-адрес сервера WebDAV http(s)://",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "Настройки внешнего CORS"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Настройки Clash",
|
||||
"items": {
|
||||
"allowLan": "Разрешить доступ из локальной сети",
|
||||
"dnsOverwrite": "Переопределение настроек DNS",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "Точная задержка",
|
||||
"logLevel": "Уровень логов",
|
||||
"portConfig": "Настройка порта",
|
||||
"external": "Внешний контроллер",
|
||||
"webUI": "Веб-интерфейс",
|
||||
"clashCore": "Ядро Clash",
|
||||
"openUwpTool": "Открыть UWP инструмент",
|
||||
"updateGeoData": "Обновить GeoData"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "Сетевой интерфейс",
|
||||
"unifiedDelay": "Когда унифицированная(точная) задержка включена, будут выполнены два теста задержки, чтобы устранить различия в задержке между разными типами узлов, вызванные подтверждением соединения и т. д",
|
||||
"logLevel": "Это действует только на файлы журнала ядра в служебном файле в каталоге журналов.",
|
||||
"openUwpTool": "С Windows 8 приложения UWP (такие как Microsoft Store) ограничены в прямом доступе к сетевым службам локального хоста, и этот инструмент позволяет обойти это ограничение"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "Файлы GeoData обновлены"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Основные настройки Verge",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PAC URL'si: ",
|
||||
"Auto Launch": "Otomatik Başlatma",
|
||||
"Administrator mode may not support auto launch": "Yönetici modu otomatik başlatmayı desteklemeyebilir",
|
||||
"Clash Setting": "Clash Ayarı",
|
||||
"Allow Lan": "LAN'a İzin Ver",
|
||||
"Network Interface": "Ağ Arayüzü",
|
||||
"Ip Address": "IP Adresi",
|
||||
"Mac Address": "MAC Adresi",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "Birleşik Gecikme",
|
||||
"Unified Delay Info": "Birleşik gecikme açıldığında, bağlantı el sıkışmaları vb. nedeniyle farklı tür düğümler arasındaki gecikme farklarını ortadan kaldırmak için iki gecikme testi gerçekleştirilir",
|
||||
"Log Level": "Günlük Seviyesi",
|
||||
"Log Level Info": "Bu parametre yalnızca günlük dizini Hizmet klasöründeki çekirdek günlük dosyaları için geçerlidir",
|
||||
"Port Config": "Port Yapılandırması",
|
||||
"Random Port": "Rastgele Port",
|
||||
"Mixed Port": "Karışık Port",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Tvekil Portu",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "Harici",
|
||||
"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",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "Sürüm Versiyonu",
|
||||
"Alpha Version": "Alfa Versiyonu",
|
||||
"Please enter your root password": "Lütfen root şifrenizi girin",
|
||||
"Open UWP tool": "UWP Aracını Aç",
|
||||
"Open UWP tool Info": "Windows 8'den beri, UWP uygulamaları (Microsoft Store gibi) yerel ana bilgisayar ağ hizmetlerine doğrudan erişmekten kısıtlanmıştır ve bu araç bu kısıtlamayı atlatmak için kullanılabilir",
|
||||
"Update GeoData": "GeoData'yı Güncelle",
|
||||
"theme.light": "Açık",
|
||||
"theme.dark": "Koyu",
|
||||
"theme.system": "Sistem",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "Geçersiz Baypas Formatı",
|
||||
"Core Version Updated": "Çekirdek Sürümü Güncellendi",
|
||||
"Clash Core Restarted": "Clash Çekirdeği Yeniden Başlatıldı",
|
||||
"GeoData Updated": "GeoData Güncellendi",
|
||||
"Currently on the Latest Version": "Şu Anda En Son Sürümdesiniz",
|
||||
"Import Subscription Successful": "Abonelik içe aktarımı başarılı",
|
||||
"WebDAV Server URL": "WebDAV Sunucu URL'si",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "Harici CORS ayarları"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Clash Ayarı",
|
||||
"items": {
|
||||
"allowLan": "LAN'a İzin Ver",
|
||||
"dnsOverwrite": "DNS Üzerine Yazma",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "Birleşik Gecikme",
|
||||
"logLevel": "Günlük Seviyesi",
|
||||
"portConfig": "Port Yapılandırması",
|
||||
"external": "Harici",
|
||||
"webUI": "Web Arayüzü",
|
||||
"clashCore": "Clash Çekirdeği",
|
||||
"openUwpTool": "UWP Aracını Aç",
|
||||
"updateGeoData": "GeoData'yı Güncelle"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "Ağ Arayüzü",
|
||||
"unifiedDelay": "Birleşik gecikme açıldığında, bağlantı el sıkışmaları vb. nedeniyle farklı tür düğümler arasındaki gecikme farklarını ortadan kaldırmak için iki gecikme testi gerçekleştirilir",
|
||||
"logLevel": "Bu parametre yalnızca günlük dizini Hizmet klasöründeki çekirdek günlük dosyaları için geçerlidir",
|
||||
"openUwpTool": "Windows 8'den beri, UWP uygulamaları (Microsoft Store gibi) yerel ana bilgisayar ağ hizmetlerine doğrudan erişmekten kısıtlanmıştır ve bu araç bu kısıtlamayı atlatmak için kullanılabilir"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "GeoData Güncellendi"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Verge Temel Ayarı",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PAC адресы",
|
||||
"Auto Launch": "Автостарт",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Clash Setting": "Clash көйләүләре",
|
||||
"Allow Lan": "Локаль челтәргә рөхсәт",
|
||||
"Network Interface": "Челтәр интерфейсы",
|
||||
"Ip Address": "IP адресы",
|
||||
"Mac Address": "MAC адресы",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "Бердәм задержка",
|
||||
"Unified Delay Info": "Бердәм задержка актив булганда, төрле типтагы узеллар өчен икеләтә тест башкарыла, TCP установканы раслау аермаларын тигезләү максатында",
|
||||
"Log Level": "Лог дәрәҗәсе",
|
||||
"Log Level Info": "Бу фәкать сервис режимында эшләгән вакытта системалы журнал файлларына кагыла",
|
||||
"Port Config": "Порт көйләүләре",
|
||||
"Random Port": "Очраклы порт",
|
||||
"Mixed Port": "Катнаш прокси порты",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Tproxy — үтә күренмәле прокси порты",
|
||||
"Port settings saved": "Port settings saved",
|
||||
"Failed to save port settings": "Failed to save port settings",
|
||||
"External": "Тышкы",
|
||||
"Open URL": "URL ачарга",
|
||||
"Replace host, port, secret with %host, %port, %secret": "Хост, порт, серсүзне %host, %port, %secret белән алмаштырыгыз",
|
||||
"Support %host, %port, %secret": "%host, %port, %secret макросларын хуплау",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "Рәсми версия",
|
||||
"Alpha Version": "Альфа-версия",
|
||||
"Please enter your root password": "root паролен языгыз",
|
||||
"Open UWP tool": "UWP инструментын ачу",
|
||||
"Open UWP tool Info": "Windows 8'дән башлап UWP кушымталары (Microsoft Store кебек) локаль хосттагы челтәр хезмәтләренә турыдан-туры тоташа алмый. Бу инструмент әлеге чикләүне әйләнеп узарга ярдәм итә",
|
||||
"Update GeoData": "GeoData яңарту",
|
||||
"theme.light": "Якты",
|
||||
"theme.dark": "Караңгы",
|
||||
"theme.system": "Система",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "Дөрес булмаган Bypass форматы",
|
||||
"Core Version Updated": "Ядро версиясе яңартылды",
|
||||
"Clash Core Restarted": "Clash ядросы яңадан башланды",
|
||||
"GeoData Updated": "GeoData яңартылды",
|
||||
"Currently on the Latest Version": "Сездә иң соңгы версия урнаштырылган",
|
||||
"Import Subscription Successful": "Import subscription successful",
|
||||
"WebDAV Server URL": "WebDAV сервер URL-ы (http(s)://)",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "External Cors Settings"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Clash көйләүләре",
|
||||
"items": {
|
||||
"allowLan": "Локаль челтәргә рөхсәт",
|
||||
"dnsOverwrite": "DNS Overwrite",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "Бердәм задержка",
|
||||
"logLevel": "Лог дәрәҗәсе",
|
||||
"portConfig": "Порт көйләүләре",
|
||||
"external": "Тышкы",
|
||||
"webUI": "Веб-интерфейс",
|
||||
"clashCore": "Clash ядросы",
|
||||
"openUwpTool": "UWP инструментын ачу",
|
||||
"updateGeoData": "GeoData яңарту"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "Челтәр интерфейсы",
|
||||
"unifiedDelay": "Бердәм задержка актив булганда, төрле типтагы узеллар өчен икеләтә тест башкарыла, TCP установканы раслау аермаларын тигезләү максатында",
|
||||
"logLevel": "Бу фәкать сервис режимында эшләгән вакытта системалы журнал файлларына кагыла",
|
||||
"openUwpTool": "Windows 8'дән башлап UWP кушымталары (Microsoft Store кебек) локаль хосттагы челтәр хезмәтләренә турыдан-туры тоташа алмый. Бу инструмент әлеге чикләүне әйләнеп узарга ярдәм итә"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "GeoData яңартылды"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Verge Төп көйләүләр",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PAC 地址:",
|
||||
"Auto Launch": "开机自启",
|
||||
"Administrator mode may not support auto launch": "管理员模式可能不支持开机自启",
|
||||
"Clash Setting": "Clash 设置",
|
||||
"Allow Lan": "局域网连接",
|
||||
"Network Interface": "网络接口",
|
||||
"Ip Address": "IP 地址",
|
||||
"Mac Address": "MAC 地址",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "统一延迟",
|
||||
"Unified Delay Info": "开启统一延迟时,会进行两次延迟测试,以消除连接握手等带来的不同类型节点的延迟差异",
|
||||
"Log Level": "日志等级",
|
||||
"Log Level Info": "仅对日志目录 Service 文件夹下的内核日志文件生效",
|
||||
"Port Config": "端口设置",
|
||||
"Random Port": "随机端口",
|
||||
"Mixed Port": "混合代理端口",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Tproxy 透明代理端口",
|
||||
"Port settings saved": "端口设置已保存",
|
||||
"Failed to save port settings": "端口设置保存失败",
|
||||
"External": "外部控制",
|
||||
"Open URL": "打开链接",
|
||||
"Replace host, port, secret with %host, %port, %secret": "使用 %host, %port, %secret 表示 主机, 端口, 访问密钥",
|
||||
"Support %host, %port, %secret": "支持 %host, %port, %secret",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "正式版",
|
||||
"Alpha Version": "预览版",
|
||||
"Please enter your root password": "请输入您的 root 密码",
|
||||
"Open UWP tool": "UWP 工具",
|
||||
"Open UWP tool Info": "Windows 8 开始限制 UWP 应用(如微软商店)直接访问本地主机的网络服务,使用此工具可绕过该限制",
|
||||
"Update GeoData": "更新 GeoData",
|
||||
"theme.light": "浅色",
|
||||
"theme.dark": "深色",
|
||||
"theme.system": "系统",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "无效的代理绕过格式",
|
||||
"Core Version Updated": "内核版本已更新",
|
||||
"Clash Core Restarted": "已重启 Clash 内核",
|
||||
"GeoData Updated": "已更新 GeoData",
|
||||
"Currently on the Latest Version": "当前已是最新版本",
|
||||
"Import Subscription Successful": "导入订阅成功",
|
||||
"WebDAV Server URL": "WebDAV 服务器地址 http(s)://",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "外部控制跨域设置"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Clash 设置",
|
||||
"items": {
|
||||
"allowLan": "局域网连接",
|
||||
"dnsOverwrite": "DNS 覆写",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "统一延迟",
|
||||
"logLevel": "日志等级",
|
||||
"portConfig": "端口设置",
|
||||
"external": "外部控制",
|
||||
"webUI": "网页界面",
|
||||
"clashCore": "Clash 内核",
|
||||
"openUwpTool": "UWP 工具",
|
||||
"updateGeoData": "更新 GeoData"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "网络接口",
|
||||
"unifiedDelay": "开启统一延迟时,会进行两次延迟测试,以消除连接握手等带来的不同类型节点的延迟差异",
|
||||
"logLevel": "仅对日志目录 Service 文件夹下的内核日志文件生效",
|
||||
"openUwpTool": "Windows 8 开始限制 UWP 应用(如微软商店)直接访问本地主机的网络服务,使用此工具可绕过该限制"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "已更新 GeoData"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Verge 基础设置",
|
||||
|
||||
@@ -314,16 +314,10 @@
|
||||
"PAC URL": "PAC 位址:",
|
||||
"Auto Launch": "開機自啟",
|
||||
"Administrator mode may not support auto launch": "管理員模式可能不支援開機自啟",
|
||||
"Clash Setting": "Clash 設定",
|
||||
"Allow Lan": "區域網路連線",
|
||||
"Network Interface": "網路介面",
|
||||
"Ip Address": "IP 位址",
|
||||
"Mac Address": "MAC 位址",
|
||||
"IPv6": "IPv6",
|
||||
"Unified Delay": "統一延遲",
|
||||
"Unified Delay Info": "開啟統一延遲時,會進行兩次延遲測試,以消除連線握手等帶來的不同類型節點的延遲差異",
|
||||
"Log Level": "日誌等級",
|
||||
"Log Level Info": "僅對日誌目錄 Service 資料夾下的內核日誌檔案生效",
|
||||
"Port Config": "連接埠設定",
|
||||
"Random Port": "隨機連接埠",
|
||||
"Mixed Port": "混合代理連接埠",
|
||||
@@ -333,7 +327,6 @@
|
||||
"Tproxy Port": "Tproxy Port",
|
||||
"Port settings saved": "連結埠設定已儲存",
|
||||
"Failed to save port settings": "連結埠設定儲存失敗",
|
||||
"External": "外部控制",
|
||||
"Open URL": "開啟網址",
|
||||
"Replace host, port, secret with %host, %port, %secret": "使用 %host, %port, %secret 表示 主機, 連接埠, 存取金鑰",
|
||||
"Support %host, %port, %secret": "支援 %host, %port, %secret",
|
||||
@@ -343,9 +336,6 @@
|
||||
"Release Version": "正式版",
|
||||
"Alpha Version": "預覽版",
|
||||
"Please enter your root password": "請輸入您的 root 密碼",
|
||||
"Open UWP tool": "UWP 工具",
|
||||
"Open UWP tool Info": "Windows 8 開始限制 UWP 應用程式(如Microsoft Store)直接存取本機主機的網路服務,使用此工具可繞過該限制",
|
||||
"Update GeoData": "更新 GeoData",
|
||||
"theme.light": "淺色",
|
||||
"theme.dark": "深色",
|
||||
"theme.system": "系統",
|
||||
@@ -401,7 +391,6 @@
|
||||
"Invalid Bypass Format": "無效的代理繞過格式",
|
||||
"Core Version Updated": "內核版本已更新",
|
||||
"Clash Core Restarted": "已重啟 Clash 內核",
|
||||
"GeoData Updated": "已更新 GeoData",
|
||||
"Currently on the Latest Version": "目前已是最新版本",
|
||||
"Import Subscription Successful": "匯入訂閱成功",
|
||||
"WebDAV Server URL": "WebDAV 伺服器位址 http(s)://",
|
||||
@@ -859,6 +848,40 @@
|
||||
"open": "外部跨來源資源共享設定"
|
||||
}
|
||||
},
|
||||
"clash": {
|
||||
"title": "Clash 設定",
|
||||
"items": {
|
||||
"allowLan": "區域網路連線",
|
||||
"dnsOverwrite": "DNS 覆寫",
|
||||
"ipv6": "IPv6",
|
||||
"unifiedDelay": "統一延遲",
|
||||
"logLevel": "日誌等級",
|
||||
"portConfig": "連接埠設定",
|
||||
"external": "外部控制",
|
||||
"webUI": "網頁介面",
|
||||
"clashCore": "Clash 內核",
|
||||
"openUwpTool": "UWP 工具",
|
||||
"updateGeoData": "更新 GeoData"
|
||||
},
|
||||
"tooltips": {
|
||||
"networkInterface": "網路介面",
|
||||
"unifiedDelay": "開啟統一延遲時,會進行兩次延遲測試,以消除連線握手等帶來的不同類型節點的延遲差異",
|
||||
"logLevel": "僅對日誌目錄 Service 資料夾下的內核日誌檔案生效",
|
||||
"openUwpTool": "Windows 8 開始限制 UWP 應用程式(如Microsoft Store)直接存取本機主機的網路服務,使用此工具可繞過該限制"
|
||||
},
|
||||
"options": {
|
||||
"logLevel": {
|
||||
"debug": "Debug",
|
||||
"info": "Info",
|
||||
"warning": "Warn",
|
||||
"error": "Error",
|
||||
"silent": "Silent"
|
||||
}
|
||||
},
|
||||
"messages": {
|
||||
"geoDataUpdated": "已更新 GeoData"
|
||||
}
|
||||
},
|
||||
"verge": {
|
||||
"basic": {
|
||||
"title": "Verge 基礎設定",
|
||||
|
||||
Reference in New Issue
Block a user