chore(i18n): components.settings.sysproxy.*
This commit is contained in:
@@ -80,7 +80,7 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
);
|
||||
try {
|
||||
await enhanceProfiles();
|
||||
showNotice("success", t("Settings Applied"));
|
||||
showNotice("success", t("components.settings.tun.messages.applied"));
|
||||
} catch (err: any) {
|
||||
showNotice("error", err.message || err.toString());
|
||||
}
|
||||
@@ -95,7 +95,9 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
open={open}
|
||||
title={
|
||||
<Box display="flex" justifyContent="space-between" gap={1}>
|
||||
<Typography variant="h6">{t("Tun Mode")}</Typography>
|
||||
<Typography variant="h6">
|
||||
{t("components.settings.tun.title")}
|
||||
</Typography>
|
||||
<Button
|
||||
variant="outlined"
|
||||
size="small"
|
||||
@@ -128,7 +130,7 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
);
|
||||
}}
|
||||
>
|
||||
{t("Reset to Default")}
|
||||
{t("components.settings.tun.actions.reset")}
|
||||
</Button>
|
||||
</Box>
|
||||
}
|
||||
@@ -141,7 +143,7 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
>
|
||||
<List>
|
||||
<ListItem sx={{ padding: "5px 2px" }}>
|
||||
<ListItemText primary={t("Stack")} />
|
||||
<ListItemText primary={t("components.settings.tun.fields.stack")} />
|
||||
<StackModeSwitch
|
||||
value={values.stack}
|
||||
onChange={(value) => {
|
||||
@@ -154,7 +156,7 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</ListItem>
|
||||
|
||||
<ListItem sx={{ padding: "5px 2px" }}>
|
||||
<ListItemText primary={t("Device")} />
|
||||
<ListItemText primary={t("components.settings.tun.fields.device")} />
|
||||
<TextField
|
||||
autoComplete="new-password"
|
||||
size="small"
|
||||
@@ -171,7 +173,9 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</ListItem>
|
||||
|
||||
<ListItem sx={{ padding: "5px 2px" }}>
|
||||
<ListItemText primary={t("Auto Route")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.tun.fields.autoRoute")}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
checked={values.autoRoute}
|
||||
@@ -180,7 +184,9 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</ListItem>
|
||||
|
||||
<ListItem sx={{ padding: "5px 2px" }}>
|
||||
<ListItemText primary={t("Strict Route")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.tun.fields.strictRoute")}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
checked={values.strictRoute}
|
||||
@@ -189,7 +195,9 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</ListItem>
|
||||
|
||||
<ListItem sx={{ padding: "5px 2px" }}>
|
||||
<ListItemText primary={t("Auto Detect Interface")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.tun.fields.autoDetectInterface")}
|
||||
/>
|
||||
<Switch
|
||||
edge="end"
|
||||
checked={values.autoDetectInterface}
|
||||
@@ -200,7 +208,9 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</ListItem>
|
||||
|
||||
<ListItem sx={{ padding: "5px 2px" }}>
|
||||
<ListItemText primary={t("DNS Hijack")} />
|
||||
<ListItemText
|
||||
primary={t("components.settings.tun.fields.dnsHijack")}
|
||||
/>
|
||||
<TextField
|
||||
autoComplete="new-password"
|
||||
size="small"
|
||||
@@ -209,7 +219,7 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
spellCheck="false"
|
||||
sx={{ width: 250 }}
|
||||
value={values.dnsHijack.join(",")}
|
||||
placeholder="Please use , to separate multiple DNS servers"
|
||||
placeholder={t("components.settings.tun.tooltips.dnsHijack")}
|
||||
onChange={(e) =>
|
||||
setValues((v) => ({ ...v, dnsHijack: e.target.value.split(",") }))
|
||||
}
|
||||
@@ -217,7 +227,7 @@ export function TunViewer({ ref }: { ref?: Ref<DialogRef> }) {
|
||||
</ListItem>
|
||||
|
||||
<ListItem sx={{ padding: "5px 2px" }}>
|
||||
<ListItemText primary={t("MTU")} />
|
||||
<ListItemText primary={t("components.settings.tun.fields.mtu")} />
|
||||
<TextField
|
||||
autoComplete="new-password"
|
||||
size="small"
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "أيقونة",
|
||||
"Test URL": "رابط الاختبار",
|
||||
"Settings": "الإعدادات",
|
||||
"Tun Mode": "وضع TUN",
|
||||
"Reset to Default": "إعادة تعيين إلى الافتراضي",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "مكدس TUN",
|
||||
"Device": "اسم الجهاز",
|
||||
"Auto Route": "توجيه تلقائي",
|
||||
"Strict Route": "توجيه صارم",
|
||||
"Auto Detect Interface": "الكشف التلقائي عن الواجهة",
|
||||
"DNS Hijack": "اختطاف DNS",
|
||||
"MTU": "وحدة الإرسال القصوى",
|
||||
"Service Mode": "وضع الخدمة",
|
||||
"active": "نشط",
|
||||
"unknown": "غير معروف",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "مطابقة الكلمة بأكملها",
|
||||
"Use Regular Expression": "استخدام التعبيرات العادية",
|
||||
"Profile Imported Successfully": "تم استيراد الملف الشخصي بنجاح",
|
||||
"Settings Applied": "تم تطبيق الإعدادات",
|
||||
"Stopping Core...": "Stopping Core...",
|
||||
"Restarting Core...": "Restarting Core...",
|
||||
"Installing Service...": "جاري تثبيت الخدمة...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "تعديل PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "وضع TUN",
|
||||
"actions": {
|
||||
"reset": "إعادة تعيين إلى الافتراضي"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "مكدس TUN",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "توجيه تلقائي",
|
||||
"strictRoute": "توجيه صارم",
|
||||
"autoDetectInterface": "الكشف التلقائي عن الواجهة",
|
||||
"dnsHijack": "اختطاف DNS",
|
||||
"mtu": "وحدة الإرسال القصوى"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "تم تطبيق الإعدادات"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "Symbol",
|
||||
"Test URL": "Test-URL",
|
||||
"Settings": "Einstellungen",
|
||||
"Tun Mode": "Virtual Network Interface-Modus",
|
||||
"Reset to Default": "Auf Standardwerte zurücksetzen",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "TUN-Modus-Stack",
|
||||
"Device": "TUN-Netzwerkkartenname",
|
||||
"Auto Route": "Globale Routing automatisch einstellen",
|
||||
"Strict Route": "Strenges Routing",
|
||||
"Auto Detect Interface": "Netzwerkschnittstelle automatisch auswählen",
|
||||
"DNS Hijack": "DNS-Hijacking",
|
||||
"MTU": "Maximale Übertragungseinheit",
|
||||
"Service Mode": "Service-Modus",
|
||||
"active": "Aktiviert",
|
||||
"unknown": "Unbekannt",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "Ganzes Wort übereinstimmen",
|
||||
"Use Regular Expression": "Regulären Ausdruck verwenden",
|
||||
"Profile Imported Successfully": "Abonnement erfolgreich importiert",
|
||||
"Settings Applied": "Einstellungen angewendet",
|
||||
"Stopping Core...": "Kern wird gestoppt...",
|
||||
"Restarting Core...": "Kern wird neu gestartet...",
|
||||
"Installing Service...": "Service wird installiert...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "Bearbeiten PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Virtual Network Interface-Modus",
|
||||
"actions": {
|
||||
"reset": "Auf Standardwerte zurücksetzen"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "TUN-Modus-Stack",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "Globale Routing automatisch einstellen",
|
||||
"strictRoute": "Strenges Routing",
|
||||
"autoDetectInterface": "Netzwerkschnittstelle automatisch auswählen",
|
||||
"dnsHijack": "DNS-Hijacking",
|
||||
"mtu": "Maximale Übertragungseinheit"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "Einstellungen angewendet"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "Icon",
|
||||
"Test URL": "Test URL",
|
||||
"Settings": "Settings",
|
||||
"Tun Mode": "Tun Mode",
|
||||
"Reset to Default": "Reset to Default",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "Tun Stack",
|
||||
"Device": "Device Name",
|
||||
"Auto Route": "Auto Route",
|
||||
"Strict Route": "Strict Route",
|
||||
"Auto Detect Interface": "Auto Detect Interface",
|
||||
"DNS Hijack": "DNS Hijack",
|
||||
"MTU": "Max Transmission Unit",
|
||||
"Service Mode": "Service Mode",
|
||||
"active": "active",
|
||||
"unknown": "unknown",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "Match Whole Word",
|
||||
"Use Regular Expression": "Use Regular Expression",
|
||||
"Profile Imported Successfully": "Profile Imported Successfully",
|
||||
"Settings Applied": "Settings Applied",
|
||||
"Stopping Core...": "Stopping Core...",
|
||||
"Restarting Core...": "Restarting Core...",
|
||||
"Installing Service...": "Installing Service...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "Edit PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Tun Mode",
|
||||
"actions": {
|
||||
"reset": "Reset to Default"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "Tun Stack",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "Auto Route",
|
||||
"strictRoute": "Strict Route",
|
||||
"autoDetectInterface": "Auto Detect Interface",
|
||||
"dnsHijack": "DNS Hijack",
|
||||
"mtu": "Max Transmission Unit"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "Settings Applied"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "Icono",
|
||||
"Test URL": "URL de prueba",
|
||||
"Settings": "Ajustes",
|
||||
"Tun Mode": "Modo de interfaz virtual (TUN)",
|
||||
"Reset to Default": "Restablecer a los valores predeterminados",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "Pila del modo TUN",
|
||||
"Device": "Nombre de la interfaz TUN",
|
||||
"Auto Route": "Configurar enrutamiento global automáticamente",
|
||||
"Strict Route": "Enrutamiento estricto",
|
||||
"Auto Detect Interface": "Detectar automáticamente la interfaz de salida del tráfico",
|
||||
"DNS Hijack": "Secuestro de DNS",
|
||||
"MTU": "Unidad máxima de transmisión",
|
||||
"Service Mode": "Modo de servicio",
|
||||
"active": "Activado",
|
||||
"unknown": "Desconocido",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "Coincidencia exacta de palabras",
|
||||
"Use Regular Expression": "Usar expresiones regulares",
|
||||
"Profile Imported Successfully": "Suscripción importada con éxito",
|
||||
"Settings Applied": "Ajustes aplicados",
|
||||
"Stopping Core...": "Deteniendo núcleo...",
|
||||
"Restarting Core...": "Reiniciando núcleo...",
|
||||
"Installing Service...": "Instalando servicio...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "Editar PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Modo de interfaz virtual (TUN)",
|
||||
"actions": {
|
||||
"reset": "Restablecer a los valores predeterminados"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "Pila del modo TUN",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "Configurar enrutamiento global automáticamente",
|
||||
"strictRoute": "Enrutamiento estricto",
|
||||
"autoDetectInterface": "Detectar automáticamente la interfaz de salida del tráfico",
|
||||
"dnsHijack": "Secuestro de DNS",
|
||||
"mtu": "Unidad máxima de transmisión"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "Ajustes aplicados"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "آیکون",
|
||||
"Test URL": "آدرس آزمون",
|
||||
"Settings": "تنظیمات",
|
||||
"Tun Mode": "Tun (کارت شبکه مجازی)",
|
||||
"Reset to Default": "بازنشانی به پیشفرض",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "انباشته Tun",
|
||||
"Device": "نام دستگاه",
|
||||
"Auto Route": "مسیر خودکار",
|
||||
"Strict Route": "مسیر دقیق",
|
||||
"Auto Detect Interface": "تشخیص خودکار رابط",
|
||||
"DNS Hijack": "ربایش DNS",
|
||||
"MTU": "واحد حداکثر انتقال",
|
||||
"Service Mode": "حالت سرویس",
|
||||
"active": "فعال",
|
||||
"unknown": "ناشناخته",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "تطبیق کل کلمه",
|
||||
"Use Regular Expression": "استفاده از عبارت منظم",
|
||||
"Profile Imported Successfully": "پروفایل با موفقیت وارد شد",
|
||||
"Settings Applied": "تنظیمات اعمال شد",
|
||||
"Stopping Core...": "Stopping Core...",
|
||||
"Restarting Core...": "Restarting Core...",
|
||||
"Installing Service...": "در حال نصب سرویس...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "ویرایش PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Tun (کارت شبکه مجازی)",
|
||||
"actions": {
|
||||
"reset": "بازنشانی به پیشفرض"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "انباشته Tun",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "مسیر خودکار",
|
||||
"strictRoute": "مسیر دقیق",
|
||||
"autoDetectInterface": "تشخیص خودکار رابط",
|
||||
"dnsHijack": "ربایش DNS",
|
||||
"mtu": "واحد حداکثر انتقال"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "تنظیمات اعمال شد"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "Ikon",
|
||||
"Test URL": "URL Tes",
|
||||
"Settings": "Pengaturan",
|
||||
"Tun Mode": "Mode Tun (NIC Virtual)",
|
||||
"Reset to Default": "Setel Ulang ke Default",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "Tumpukan Tun",
|
||||
"Device": "Nama Perangkat",
|
||||
"Auto Route": "Rute Otomatis",
|
||||
"Strict Route": "Rute Ketat",
|
||||
"Auto Detect Interface": "Deteksi Antarmuka Otomatis",
|
||||
"DNS Hijack": "Pembajakan DNS",
|
||||
"MTU": "Unit Transmisi Maksimum",
|
||||
"Service Mode": "Mode Layanan",
|
||||
"active": "aktif",
|
||||
"unknown": "tidak diketahui",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "Cocokkan Kata Utuh",
|
||||
"Use Regular Expression": "Gunakan Ekspresi Reguler",
|
||||
"Profile Imported Successfully": "Profil Berhasil Diimpor",
|
||||
"Settings Applied": "Pengaturan Diterapkan",
|
||||
"Stopping Core...": "Stopping Core...",
|
||||
"Restarting Core...": "Restarting Core...",
|
||||
"Installing Service...": "Memasang Layanan...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "Ubah PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Mode Tun (NIC Virtual)",
|
||||
"actions": {
|
||||
"reset": "Setel Ulang ke Default"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "Tumpukan Tun",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "Rute Otomatis",
|
||||
"strictRoute": "Rute Ketat",
|
||||
"autoDetectInterface": "Deteksi Antarmuka Otomatis",
|
||||
"dnsHijack": "Pembajakan DNS",
|
||||
"mtu": "Unit Transmisi Maksimum"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "Pengaturan Diterapkan"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "アイコン",
|
||||
"Test URL": "テストURL",
|
||||
"Settings": "設定",
|
||||
"Tun Mode": "仮想ネットワークカードモード",
|
||||
"Reset to Default": "デフォルト値にリセット",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "TUNモードスタック",
|
||||
"Device": "TUNネットワークカード名",
|
||||
"Auto Route": "グローバルルートを自動設定",
|
||||
"Strict Route": "厳格なルート",
|
||||
"Auto Detect Interface": "トラフィックの出口インターフェースを自動選択",
|
||||
"DNS Hijack": "DNSハイジャック",
|
||||
"MTU": "最大転送単位",
|
||||
"Service Mode": "サービスモード",
|
||||
"active": "アクティブ",
|
||||
"unknown": "不明",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "完全一致",
|
||||
"Use Regular Expression": "正規表現を使用する",
|
||||
"Profile Imported Successfully": "プロファイルのインポートに成功しました。",
|
||||
"Settings Applied": "設定が適用されました。",
|
||||
"Stopping Core...": "コアを停止中...",
|
||||
"Restarting Core...": "コアを再起動中...",
|
||||
"Installing Service...": "サービスをインストール中...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "編集 PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "仮想ネットワークカードモード",
|
||||
"actions": {
|
||||
"reset": "デフォルト値にリセット"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "TUNモードスタック",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "グローバルルートを自動設定",
|
||||
"strictRoute": "厳格なルート",
|
||||
"autoDetectInterface": "トラフィックの出口インターフェースを自動選択",
|
||||
"dnsHijack": "DNSハイジャック",
|
||||
"mtu": "最大転送単位"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "設定が適用されました。"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "아이콘",
|
||||
"Test URL": "테스트 URL",
|
||||
"Settings": "설정",
|
||||
"Tun Mode": "Tun 모드",
|
||||
"Reset to Default": "Reset to Default",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "스택",
|
||||
"Device": "Device Name",
|
||||
"Auto Route": "자동 라우팅",
|
||||
"Strict Route": "Strict Route",
|
||||
"Auto Detect Interface": "인터페이스 자동 감지",
|
||||
"DNS Hijack": "DNS Hijack",
|
||||
"MTU": "MTU",
|
||||
"Service Mode": "서비스 모드",
|
||||
"active": "active",
|
||||
"unknown": "unknown",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "Match Whole Word",
|
||||
"Use Regular Expression": "Use Regular Expression",
|
||||
"Profile Imported Successfully": "Profile Imported Successfully",
|
||||
"Settings Applied": "Settings Applied",
|
||||
"Stopping Core...": "Stopping Core...",
|
||||
"Restarting Core...": "Restarting Core...",
|
||||
"Installing Service...": "Installing Service...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "편집 PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Tun 모드",
|
||||
"actions": {
|
||||
"reset": "Reset to Default"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "스택",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "자동 라우팅",
|
||||
"strictRoute": "Strict Route",
|
||||
"autoDetectInterface": "인터페이스 자동 감지",
|
||||
"dnsHijack": "DNS Hijack",
|
||||
"mtu": "MTU"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "Settings Applied"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "Иконка",
|
||||
"Test URL": "URL проверка",
|
||||
"Settings": "Настройки",
|
||||
"Tun Mode": "Режим TUN",
|
||||
"Reset to Default": "Сбросить настройки",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "Стек",
|
||||
"Device": "Имя устройства",
|
||||
"Auto Route": "Автоматическая маршрутизация",
|
||||
"Strict Route": "Строгая маршрутизация",
|
||||
"Auto Detect Interface": "Автоопределение интерфейса",
|
||||
"DNS Hijack": "DNS-перехват",
|
||||
"MTU": "MTU",
|
||||
"Service Mode": "Режим системной службы",
|
||||
"active": "Активированный",
|
||||
"unknown": "неизвестный",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "Полное совпадение слова",
|
||||
"Use Regular Expression": "Использовать регулярные выражения",
|
||||
"Profile Imported Successfully": "Профиль успешно импортирован",
|
||||
"Settings Applied": "Настройки применены",
|
||||
"Stopping Core...": "Stopping Core...",
|
||||
"Restarting Core...": "Restarting Core...",
|
||||
"Installing Service...": "Установка службы...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "Редактировать PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Режим TUN",
|
||||
"actions": {
|
||||
"reset": "Сбросить настройки"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "Стек",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "Автоматическая маршрутизация",
|
||||
"strictRoute": "Строгая маршрутизация",
|
||||
"autoDetectInterface": "Автоопределение интерфейса",
|
||||
"dnsHijack": "DNS-перехват",
|
||||
"mtu": "MTU"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "Настройки применены"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "Simge",
|
||||
"Test URL": "Test URL'si",
|
||||
"Settings": "Ayarlar",
|
||||
"Tun Mode": "Tun Modu",
|
||||
"Reset to Default": "Varsayılana Sıfırla",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "Tun Yığını",
|
||||
"Device": "Cihaz Adı",
|
||||
"Auto Route": "Otomatik Yönlendirme",
|
||||
"Strict Route": "Katı Yönlendirme",
|
||||
"Auto Detect Interface": "Arayüzü Otomatik Algıla",
|
||||
"DNS Hijack": "DNS Ele Geçirme",
|
||||
"MTU": "Maksimum İletim Birimi",
|
||||
"Service Mode": "Hizmet Modu",
|
||||
"active": "aktif",
|
||||
"unknown": "bilinmiyor",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "Tam Kelime Eşleştir",
|
||||
"Use Regular Expression": "Düzenli İfade Kullan",
|
||||
"Profile Imported Successfully": "Profil Başarıyla İçe Aktarıldı",
|
||||
"Settings Applied": "Ayarlar Uygulandı",
|
||||
"Stopping Core...": "Stopping Core...",
|
||||
"Restarting Core...": "Restarting Core...",
|
||||
"Installing Service...": "Hizmet Kuruluyor...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "Düzenle PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Tun Modu",
|
||||
"actions": {
|
||||
"reset": "Varsayılana Sıfırla"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "Tun Yığını",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "Otomatik Yönlendirme",
|
||||
"strictRoute": "Katı Yönlendirme",
|
||||
"autoDetectInterface": "Arayüzü Otomatik Algıla",
|
||||
"dnsHijack": "DNS Ele Geçirme",
|
||||
"mtu": "Maksimum İletim Birimi"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "Ayarlar Uygulandı"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "Иконка",
|
||||
"Test URL": "Тест URL-ы",
|
||||
"Settings": "Көйләүләр",
|
||||
"Tun Mode": "Tun режимы (виртуаль челтәр адаптеры)",
|
||||
"Reset to Default": "Башлангычка кайтару",
|
||||
"TUN Mode automatically disabled due to service unavailable": "TUN Mode automatically disabled due to service unavailable",
|
||||
"Failed to disable TUN Mode automatically": "Failed to disable TUN Mode automatically",
|
||||
"Core communication error": "Core communication error",
|
||||
"Stack": "Стек",
|
||||
"Device": "Җайланма исеме",
|
||||
"Auto Route": "Авто-маршрутлау",
|
||||
"Strict Route": "Катгый маршрутлау",
|
||||
"Auto Detect Interface": "Интерфейсны автоматик ачыклау",
|
||||
"DNS Hijack": "DNS'ны үзгәртеп тоту (hijack)",
|
||||
"MTU": "MTU (макс. тапшыру берәмлеге)",
|
||||
"Service Mode": "Сервис режимы",
|
||||
"active": "Актив",
|
||||
"unknown": "Билгесез",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "Сүзнең тулы туры килүе",
|
||||
"Use Regular Expression": "Регуляр выражениеләр куллану",
|
||||
"Profile Imported Successfully": "Профиль уңышлы импортланды",
|
||||
"Settings Applied": "Көйләүләр кулланылды",
|
||||
"Stopping Core...": "Stopping Core...",
|
||||
"Restarting Core...": "Restarting Core...",
|
||||
"Installing Service...": "Хезмәт урнаштырыла...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "Үзгәртү PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "Tun режимы (виртуаль челтәр адаптеры)",
|
||||
"actions": {
|
||||
"reset": "Башлангычка кайтару"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "Стек",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "Авто-маршрутлау",
|
||||
"strictRoute": "Катгый маршрутлау",
|
||||
"autoDetectInterface": "Интерфейсны автоматик ачыклау",
|
||||
"dnsHijack": "DNS'ны үзгәртеп тоту (hijack)",
|
||||
"mtu": "MTU (макс. тапшыру берәмлеге)"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "Көйләүләр кулланылды"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "图标",
|
||||
"Test URL": "测试地址",
|
||||
"Settings": "设置",
|
||||
"Tun Mode": "虚拟网卡模式",
|
||||
"Reset to Default": "重置为默认值",
|
||||
"TUN Mode automatically disabled due to service unavailable": "由于服务不可用,TUN 模式已自动关闭",
|
||||
"Failed to disable TUN Mode automatically": "自动关闭 TUN 模式失败",
|
||||
"Core communication error": "内核通信错误",
|
||||
"Stack": "TUN 模式堆栈",
|
||||
"Device": "TUN 网卡名称",
|
||||
"Auto Route": "自动设置全局路由",
|
||||
"Strict Route": "严格路由",
|
||||
"Auto Detect Interface": "自动选择流量出口接口",
|
||||
"DNS Hijack": "DNS 劫持",
|
||||
"MTU": "最大传输单元",
|
||||
"Service Mode": "服务模式",
|
||||
"active": "已激活",
|
||||
"unknown": "未知",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "全字匹配",
|
||||
"Use Regular Expression": "使用正则表达式",
|
||||
"Profile Imported Successfully": "导入订阅成功",
|
||||
"Settings Applied": "设置已应用",
|
||||
"Stopping Core...": "停止内核中...",
|
||||
"Restarting Core...": "重启内核中...",
|
||||
"Installing Service...": "安装服务中...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "编辑 PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "虚拟网卡模式",
|
||||
"actions": {
|
||||
"reset": "重置为默认值"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "TUN 模式堆栈",
|
||||
"device": "虚拟网卡名称",
|
||||
"autoRoute": "自动设置全局路由",
|
||||
"strictRoute": "严格路由",
|
||||
"autoDetectInterface": "自动选择流量出口接口",
|
||||
"dnsHijack": "DNS 劫持",
|
||||
"mtu": "最大传输单元"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "多个 DNS 服务器请使用 , 分隔"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "设置已应用"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -275,18 +275,10 @@
|
||||
"Icon": "圖示",
|
||||
"Test URL": "測試網址",
|
||||
"Settings": "設定",
|
||||
"Tun Mode": "虛擬網路介面卡模式",
|
||||
"Reset to Default": "重設為預設值",
|
||||
"TUN Mode automatically disabled due to service unavailable": "由於服務不可使用,虛擬網路介面卡模式已自動停用",
|
||||
"Failed to disable TUN Mode automatically": "自動停用虛擬網路介面卡模式失敗",
|
||||
"Core communication error": "內核通信錯誤",
|
||||
"Stack": "虛擬網路介面卡模式堆疊",
|
||||
"Device": "虛擬網路介面卡名稱",
|
||||
"Auto Route": "自動設定全域路由",
|
||||
"Strict Route": "嚴格路由",
|
||||
"Auto Detect Interface": "自動偵測流量輸出介面",
|
||||
"DNS Hijack": "DNS 綁架",
|
||||
"MTU": "最大傳輸單位",
|
||||
"Service Mode": "服務模式",
|
||||
"active": "作用中",
|
||||
"unknown": "未知",
|
||||
@@ -333,7 +325,6 @@
|
||||
"Match Whole Word": "完整字詞配對",
|
||||
"Use Regular Expression": "使用正規表示式",
|
||||
"Profile Imported Successfully": "匯入設定檔成功",
|
||||
"Settings Applied": "設定已套用",
|
||||
"Stopping Core...": "內核停止中...",
|
||||
"Restarting Core...": "內核重啟中...",
|
||||
"Installing Service...": "安裝服務中...",
|
||||
@@ -1056,6 +1047,27 @@
|
||||
"actions": {
|
||||
"editPac": "編輯 PAC"
|
||||
}
|
||||
},
|
||||
"tun": {
|
||||
"title": "虛擬網路介面卡模式",
|
||||
"actions": {
|
||||
"reset": "重設為預設值"
|
||||
},
|
||||
"fields": {
|
||||
"stack": "虛擬網路介面卡模式堆疊",
|
||||
"device": "Device Name",
|
||||
"autoRoute": "自動設定全域路由",
|
||||
"strictRoute": "嚴格路由",
|
||||
"autoDetectInterface": "自動偵測流量輸出介面",
|
||||
"dnsHijack": "DNS 綁架",
|
||||
"mtu": "最大傳輸單位"
|
||||
},
|
||||
"tooltips": {
|
||||
"dnsHijack": "Please use , to separate multiple DNS servers"
|
||||
},
|
||||
"messages": {
|
||||
"applied": "設定已套用"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user