chore(i18n): components.home.systemInfo.*
This commit is contained in:
@@ -217,11 +217,11 @@ export const SystemInfoCard = () => {
|
||||
<>
|
||||
<AdminPanelSettingsOutlined
|
||||
sx={{ color: "primary.main", fontSize: 16 }}
|
||||
titleAccess={t("Administrator Mode")}
|
||||
titleAccess={t("components.home.systemInfo.badges.adminMode")}
|
||||
/>
|
||||
<DnsOutlined
|
||||
sx={{ color: "success.main", fontSize: 16, ml: 0.5 }}
|
||||
titleAccess={t("Service Mode")}
|
||||
titleAccess={t("components.home.systemInfo.badges.serviceMode")}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
@@ -229,21 +229,21 @@ export const SystemInfoCard = () => {
|
||||
return (
|
||||
<AdminPanelSettingsOutlined
|
||||
sx={{ color: "primary.main", fontSize: 16 }}
|
||||
titleAccess={t("Administrator Mode")}
|
||||
titleAccess={t("components.home.systemInfo.badges.adminMode")}
|
||||
/>
|
||||
);
|
||||
} else if (isSidecarMode) {
|
||||
return (
|
||||
<ExtensionOutlined
|
||||
sx={{ color: "info.main", fontSize: 16 }}
|
||||
titleAccess={t("Sidecar Mode")}
|
||||
titleAccess={t("components.home.systemInfo.badges.sidecarMode")}
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
return (
|
||||
<DnsOutlined
|
||||
sx={{ color: "success.main", fontSize: 16 }}
|
||||
titleAccess={t("Service Mode")}
|
||||
titleAccess={t("components.home.systemInfo.badges.serviceMode")}
|
||||
/>
|
||||
);
|
||||
}
|
||||
@@ -254,13 +254,13 @@ export const SystemInfoCard = () => {
|
||||
if (isAdminMode) {
|
||||
// 判断是否同时处于服务模式
|
||||
if (!isSidecarMode) {
|
||||
return t("Administrator + Service Mode");
|
||||
return t("components.home.systemInfo.badges.adminServiceMode");
|
||||
}
|
||||
return t("Administrator Mode");
|
||||
return t("components.home.systemInfo.badges.adminMode");
|
||||
} else if (isSidecarMode) {
|
||||
return t("Sidecar Mode");
|
||||
return t("components.home.systemInfo.badges.sidecarMode");
|
||||
} else {
|
||||
return t("Service Mode");
|
||||
return t("components.home.systemInfo.badges.serviceMode");
|
||||
}
|
||||
};
|
||||
|
||||
@@ -269,11 +269,15 @@ export const SystemInfoCard = () => {
|
||||
|
||||
return (
|
||||
<EnhancedCard
|
||||
title={t("System Info")}
|
||||
title={t("components.home.systemInfo.title")}
|
||||
icon={<InfoOutlined />}
|
||||
iconColor="error"
|
||||
action={
|
||||
<IconButton size="small" onClick={goToSettings} title={t("Settings")}>
|
||||
<IconButton
|
||||
size="small"
|
||||
onClick={goToSettings}
|
||||
title={t("components.home.systemInfo.actions.settings")}
|
||||
>
|
||||
<SettingsOutlined fontSize="small" />
|
||||
</IconButton>
|
||||
}
|
||||
@@ -281,7 +285,7 @@ export const SystemInfoCard = () => {
|
||||
<Stack spacing={1.5}>
|
||||
<Stack direction="row" justifyContent="space-between">
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
{t("OS Info")}
|
||||
{t("components.home.systemInfo.fields.osInfo")}
|
||||
</Typography>
|
||||
<Typography variant="body2" fontWeight="medium">
|
||||
{systemState.osInfo}
|
||||
@@ -294,19 +298,23 @@ export const SystemInfoCard = () => {
|
||||
alignItems="center"
|
||||
>
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
{t("Auto Launch")}
|
||||
{t("components.home.systemInfo.fields.autoLaunch")}
|
||||
</Typography>
|
||||
<Stack direction="row" spacing={1} alignItems="center">
|
||||
{isAdminMode && (
|
||||
<Tooltip
|
||||
title={t("Administrator mode may not support auto launch")}
|
||||
title={t("components.home.systemInfo.tooltips.autoLaunchAdmin")}
|
||||
>
|
||||
<WarningOutlined sx={{ color: "warning.main", fontSize: 20 }} />
|
||||
</Tooltip>
|
||||
)}
|
||||
<Chip
|
||||
size="small"
|
||||
label={autoLaunchEnabled ? t("Enabled") : t("Disabled")}
|
||||
label={
|
||||
autoLaunchEnabled
|
||||
? t("components.home.systemInfo.labels.enabled")
|
||||
: t("components.home.systemInfo.labels.disabled")
|
||||
}
|
||||
color={autoLaunchEnabled ? "success" : "default"}
|
||||
variant={autoLaunchEnabled ? "filled" : "outlined"}
|
||||
onClick={toggleAutoLaunch}
|
||||
@@ -321,7 +329,7 @@ export const SystemInfoCard = () => {
|
||||
alignItems="center"
|
||||
>
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
{t("Running Mode")}
|
||||
{t("components.home.systemInfo.fields.runningMode")}
|
||||
</Typography>
|
||||
<Typography
|
||||
variant="body2"
|
||||
@@ -336,7 +344,7 @@ export const SystemInfoCard = () => {
|
||||
<Divider />
|
||||
<Stack direction="row" justifyContent="space-between">
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
{t("Last Check Update")}
|
||||
{t("components.home.systemInfo.fields.lastCheckUpdate")}
|
||||
</Typography>
|
||||
<Typography
|
||||
variant="body2"
|
||||
@@ -354,7 +362,7 @@ export const SystemInfoCard = () => {
|
||||
<Divider />
|
||||
<Stack direction="row" justifyContent="space-between">
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
{t("Verge Version")}
|
||||
{t("components.home.systemInfo.fields.vergeVersion")}
|
||||
</Typography>
|
||||
<Typography variant="body2" fontWeight="medium">
|
||||
v{appVersion}
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Active Connections",
|
||||
"Rule": "قاعدة",
|
||||
"Icon": "أيقونة",
|
||||
"Settings": "الإعدادات",
|
||||
"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",
|
||||
"Service Mode": "وضع الخدمة",
|
||||
"active": "نشط",
|
||||
"unknown": "غير معروف",
|
||||
"Install": "تثبيت",
|
||||
"Uninstall": "إلغاء التثبيت",
|
||||
"System Proxy": "وكيل النظام",
|
||||
"Enabled": "ممكّن",
|
||||
"Disabled": "معطّل",
|
||||
"Auto Launch": "إطلاق تلقائي",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Network Interface": "واجهة الشبكة",
|
||||
"Ip Address": "عنوان IP",
|
||||
"Mac Address": "عنوان MAC",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Entry Lightweight Mode",
|
||||
"Runtime Config": "تكوين وقت التشغيل",
|
||||
"Exit": "خروج",
|
||||
"Verge Version": "إصدار Verge",
|
||||
"ReadOnly": "للقراءة فقط",
|
||||
"Filter conditions": "شروط التصفية",
|
||||
"Match Case": "مطابقة الحالة",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "يتطلب Clash Verge امتيازات المسؤول لإعادة تثبيت خدمة النظام",
|
||||
"Website Tests": "Website Tests",
|
||||
"System Info": "System Info",
|
||||
"OS Info": "OS Info",
|
||||
"Running Mode": "Running Mode",
|
||||
"Sidecar Mode": "User Mode",
|
||||
"Administrator Mode": "Administrator Mode",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Last Check Update",
|
||||
"Click to import subscription": "Click to import subscription",
|
||||
"Unknown": "Unknown",
|
||||
"Update with Clash proxy successfully": "Update with Clash proxy successfully",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Uptime",
|
||||
"rulesCount": "Rules Count"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "System Info",
|
||||
"fields": {
|
||||
"osInfo": "OS Info",
|
||||
"autoLaunch": "إطلاق تلقائي",
|
||||
"runningMode": "Running Mode",
|
||||
"lastCheckUpdate": "Last Check Update",
|
||||
"vergeVersion": "إصدار Verge"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "الإعدادات"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "ممكّن",
|
||||
"disabled": "معطّل"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Administrator mode may not support auto launch"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Administrator Mode",
|
||||
"serviceMode": "وضع الخدمة",
|
||||
"sidecarMode": "User Mode",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Aktive Verbindungen",
|
||||
"Rule": "Regel",
|
||||
"Icon": "Symbol",
|
||||
"Settings": "Einstellungen",
|
||||
"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",
|
||||
"Service Mode": "Service-Modus",
|
||||
"active": "Aktiviert",
|
||||
"unknown": "Unbekannt",
|
||||
"Install": "Installieren",
|
||||
"Uninstall": "Deinstallieren",
|
||||
"System Proxy": "Systemproxy",
|
||||
"Enabled": "Aktiviert",
|
||||
"Disabled": "Deaktiviert",
|
||||
"Auto Launch": "Beim Start automatisch starten",
|
||||
"Administrator mode may not support auto launch": "Der Administrator-Modus unterstützt möglicherweise keine automatische Startfunktion.",
|
||||
"Network Interface": "Netzwerkschnittstelle",
|
||||
"Ip Address": "IP-Adresse",
|
||||
"Mac Address": "MAC-Adresse",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Leichtgewichtigen Modus betreten",
|
||||
"Runtime Config": "Aktuelle Konfiguration",
|
||||
"Exit": "Beenden",
|
||||
"Verge Version": "Verge-Version",
|
||||
"ReadOnly": "Schreibgeschützt",
|
||||
"Filter conditions": "Filterbedingungen",
|
||||
"Match Case": "Groß-/Kleinschreibung beachten",
|
||||
@@ -379,13 +372,6 @@
|
||||
"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.",
|
||||
"Website Tests": "Website-Tests",
|
||||
"System Info": "Systeminformationen",
|
||||
"OS Info": "Betriebssysteminformationen",
|
||||
"Running Mode": "Betriebsmodus",
|
||||
"Sidecar Mode": "Benutzermodus",
|
||||
"Administrator Mode": "Administrator-Modus",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Letzte Aktualitätsprüfung",
|
||||
"Click to import subscription": "Klicken Sie hier, um ein Abonnement zu importieren.",
|
||||
"Unknown": "Unbekannt",
|
||||
"Update with Clash proxy successfully": "Aktualisierung mit Clash-Proxy erfolgreich",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Laufzeit",
|
||||
"rulesCount": "Anzahl der Regeln"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "Systeminformationen",
|
||||
"fields": {
|
||||
"osInfo": "Betriebssysteminformationen",
|
||||
"autoLaunch": "Beim Start automatisch starten",
|
||||
"runningMode": "Betriebsmodus",
|
||||
"lastCheckUpdate": "Letzte Aktualitätsprüfung",
|
||||
"vergeVersion": "Verge-Version"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "Einstellungen"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "Aktiviert",
|
||||
"disabled": "Deaktiviert"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Der Administrator-Modus unterstützt möglicherweise keine automatische Startfunktion."
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Administrator-Modus",
|
||||
"serviceMode": "Service-Modus",
|
||||
"sidecarMode": "Benutzermodus",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Active Connections",
|
||||
"Rule": "Rule",
|
||||
"Icon": "Icon",
|
||||
"Settings": "Settings",
|
||||
"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",
|
||||
"Service Mode": "Service Mode",
|
||||
"active": "active",
|
||||
"unknown": "unknown",
|
||||
"Install": "Install",
|
||||
"Uninstall": "Uninstall",
|
||||
"System Proxy": "System Proxy",
|
||||
"Enabled": "Enabled",
|
||||
"Disabled": "Disabled",
|
||||
"Auto Launch": "Auto Launch",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Network Interface": "Network Interface",
|
||||
"Ip Address": "IP Address",
|
||||
"Mac Address": "MAC Address",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Entry Lightweight Mode",
|
||||
"Runtime Config": "Runtime Config",
|
||||
"Exit": "Exit",
|
||||
"Verge Version": "Verge Version",
|
||||
"ReadOnly": "ReadOnly",
|
||||
"Filter conditions": "Filter conditions",
|
||||
"Match Case": "Match Case",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "Clash Verge requires administrator privileges to reinstall the system service",
|
||||
"Website Tests": "Website Tests",
|
||||
"System Info": "System Info",
|
||||
"OS Info": "OS Info",
|
||||
"Running Mode": "Running Mode",
|
||||
"Sidecar Mode": "User Mode",
|
||||
"Administrator Mode": "Administrator Mode",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Last Check Update",
|
||||
"Click to import subscription": "Click to import subscription",
|
||||
"Unknown": "Unknown",
|
||||
"Update with Clash proxy successfully": "Update with Clash proxy successfully",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Uptime",
|
||||
"rulesCount": "Rules Count"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "System Info",
|
||||
"fields": {
|
||||
"osInfo": "OS Info",
|
||||
"autoLaunch": "Auto Launch",
|
||||
"runningMode": "Running Mode",
|
||||
"lastCheckUpdate": "Last Check Update",
|
||||
"vergeVersion": "Verge Version"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "Settings"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "Enabled",
|
||||
"disabled": "Disabled"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Administrator mode may not support auto launch"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Administrator Mode",
|
||||
"serviceMode": "Service Mode",
|
||||
"sidecarMode": "User Mode",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Conexiones activas",
|
||||
"Rule": "Regla",
|
||||
"Icon": "Icono",
|
||||
"Settings": "Ajustes",
|
||||
"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",
|
||||
"Service Mode": "Modo de servicio",
|
||||
"active": "Activado",
|
||||
"unknown": "Desconocido",
|
||||
"Install": "Instalar",
|
||||
"Uninstall": "Desinstalar",
|
||||
"System Proxy": "Proxy del sistema",
|
||||
"Enabled": "Habilitado",
|
||||
"Disabled": "Deshabilitado",
|
||||
"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.",
|
||||
"Network Interface": "Interfaz de red",
|
||||
"Ip Address": "Dirección IP",
|
||||
"Mac Address": "Dirección MAC",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Entrar en modo ligero",
|
||||
"Runtime Config": "Configuración actual",
|
||||
"Exit": "Salir",
|
||||
"Verge Version": "Versión de Verge",
|
||||
"ReadOnly": "Solo lectura",
|
||||
"Filter conditions": "Condiciones de filtrado",
|
||||
"Match Case": "Distinguir mayúsculas y minúsculas",
|
||||
@@ -379,13 +372,6 @@
|
||||
"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",
|
||||
"Website Tests": "Pruebas de sitios web",
|
||||
"System Info": "Información del sistema",
|
||||
"OS Info": "Información del sistema operativo",
|
||||
"Running Mode": "Modo de ejecución",
|
||||
"Sidecar Mode": "Modo de usuario",
|
||||
"Administrator Mode": "Modo de administrador",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Última comprobación de actualizaciones",
|
||||
"Click to import subscription": "Haga clic para importar una suscripción",
|
||||
"Unknown": "Desconocido",
|
||||
"Update with Clash proxy successfully": "Actualización con el proxy de Clash exitosa",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Tiempo de actividad",
|
||||
"rulesCount": "Número de reglas"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "Información del sistema",
|
||||
"fields": {
|
||||
"osInfo": "Información del sistema operativo",
|
||||
"autoLaunch": "Inicio automático al arrancar el sistema",
|
||||
"runningMode": "Modo de ejecución",
|
||||
"lastCheckUpdate": "Última comprobación de actualizaciones",
|
||||
"vergeVersion": "Versión de Verge"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "Ajustes"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "Habilitado",
|
||||
"disabled": "Deshabilitado"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "El modo de administrador puede no admitir el inicio automático."
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Modo de administrador",
|
||||
"serviceMode": "Modo de servicio",
|
||||
"sidecarMode": "Modo de usuario",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Active Connections",
|
||||
"Rule": "قانون",
|
||||
"Icon": "آیکون",
|
||||
"Settings": "تنظیمات",
|
||||
"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",
|
||||
"Service Mode": "حالت سرویس",
|
||||
"active": "فعال",
|
||||
"unknown": "ناشناخته",
|
||||
"Install": "نصب",
|
||||
"Uninstall": "حذف نصب",
|
||||
"System Proxy": "پراکسی سیستم",
|
||||
"Enabled": "توانایی فعال شد",
|
||||
"Disabled": "غیرفعال شد",
|
||||
"Auto Launch": "راهاندازی خودکار",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Network Interface": "رابط شبکه",
|
||||
"Ip Address": "آدرس IP",
|
||||
"Mac Address": "آدرس MAC",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Entry Lightweight Mode",
|
||||
"Runtime Config": "پیکربندی زمان اجرا",
|
||||
"Exit": "خروج",
|
||||
"Verge Version": "نسخه Verge",
|
||||
"ReadOnly": "فقط خواندنی",
|
||||
"Filter conditions": "شرایط فیلتر",
|
||||
"Match Case": "تطبیق حروف کوچک و بزرگ",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "Clash Verge برای نصب مجدد سرویس سیستم به امتیازات مدیر نیاز دارد",
|
||||
"Website Tests": "Website Tests",
|
||||
"System Info": "System Info",
|
||||
"OS Info": "OS Info",
|
||||
"Running Mode": "Running Mode",
|
||||
"Sidecar Mode": "User Mode",
|
||||
"Administrator Mode": "Administrator Mode",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Last Check Update",
|
||||
"Click to import subscription": "Click to import subscription",
|
||||
"Unknown": "Unknown",
|
||||
"Update with Clash proxy successfully": "Update with Clash proxy successfully",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Uptime",
|
||||
"rulesCount": "Rules Count"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "System Info",
|
||||
"fields": {
|
||||
"osInfo": "OS Info",
|
||||
"autoLaunch": "راهاندازی خودکار",
|
||||
"runningMode": "Running Mode",
|
||||
"lastCheckUpdate": "Last Check Update",
|
||||
"vergeVersion": "نسخه Verge"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "تنظیمات"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "توانایی فعال شد",
|
||||
"disabled": "غیرفعال شد"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Administrator mode may not support auto launch"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Administrator Mode",
|
||||
"serviceMode": "حالت سرویس",
|
||||
"sidecarMode": "User Mode",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Active Connections",
|
||||
"Rule": "Aturan",
|
||||
"Icon": "Ikon",
|
||||
"Settings": "Pengaturan",
|
||||
"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",
|
||||
"Service Mode": "Mode Layanan",
|
||||
"active": "aktif",
|
||||
"unknown": "tidak diketahui",
|
||||
"Install": "Instal",
|
||||
"Uninstall": "Copot",
|
||||
"System Proxy": "Proksi Sistem",
|
||||
"Enabled": "Diaktifkan",
|
||||
"Disabled": "Dinonaktifkan",
|
||||
"Auto Launch": "Peluncuran Otomatis",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Network Interface": "Antarmuka Jaringan",
|
||||
"Ip Address": "Alamat IP",
|
||||
"Mac Address": "Alamat MAC",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Entry Lightweight Mode",
|
||||
"Runtime Config": "Konfigurasi Runtime",
|
||||
"Exit": "Keluar",
|
||||
"Verge Version": "Versi Verge",
|
||||
"ReadOnly": "Hanya Baca",
|
||||
"Filter conditions": "Kondisi Filter",
|
||||
"Match Case": "Cocokkan Kasus",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "Clash Verge memerlukan hak administrator untuk menginstal ulang layanan sistem",
|
||||
"Website Tests": "Website Tests",
|
||||
"System Info": "System Info",
|
||||
"OS Info": "OS Info",
|
||||
"Running Mode": "Running Mode",
|
||||
"Sidecar Mode": "User Mode",
|
||||
"Administrator Mode": "Administrator Mode",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Last Check Update",
|
||||
"Click to import subscription": "Click to import subscription",
|
||||
"Unknown": "Unknown",
|
||||
"Update with Clash proxy successfully": "Update with Clash proxy successfully",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Uptime",
|
||||
"rulesCount": "Rules Count"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "System Info",
|
||||
"fields": {
|
||||
"osInfo": "OS Info",
|
||||
"autoLaunch": "Peluncuran Otomatis",
|
||||
"runningMode": "Running Mode",
|
||||
"lastCheckUpdate": "Last Check Update",
|
||||
"vergeVersion": "Versi Verge"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "Pengaturan"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "Diaktifkan",
|
||||
"disabled": "Dinonaktifkan"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Administrator mode may not support auto launch"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Administrator Mode",
|
||||
"serviceMode": "Mode Layanan",
|
||||
"sidecarMode": "User Mode",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "アクティブな接続",
|
||||
"Rule": "ルール",
|
||||
"Icon": "アイコン",
|
||||
"Settings": "設定",
|
||||
"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",
|
||||
"Service Mode": "サービスモード",
|
||||
"active": "アクティブ",
|
||||
"unknown": "不明",
|
||||
"Install": "インストール",
|
||||
"Uninstall": "アンインストール",
|
||||
"System Proxy": "システムプロキシ",
|
||||
"Enabled": "有効",
|
||||
"Disabled": "無効",
|
||||
"Auto Launch": "起動時に自動起動",
|
||||
"Administrator mode may not support auto launch": "管理者モードでは起動時の自動起動がサポートされない場合があります。",
|
||||
"Network Interface": "ネットワークインターフェース",
|
||||
"Ip Address": "IPアドレス",
|
||||
"Mac Address": "MACアドレス",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "軽量モードに入る",
|
||||
"Runtime Config": "現在の設定",
|
||||
"Exit": "終了",
|
||||
"Verge Version": "Vergeバージョン",
|
||||
"ReadOnly": "読み取り専用",
|
||||
"Filter conditions": "フィルタリング条件",
|
||||
"Match Case": "大文字小文字を区別する",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "上書きファイルにエラーがあります。変更は取り消されました。",
|
||||
"Service Administrator Prompt": "Clash Vergeはシステムサービスをインストールするために管理者権限が必要です。",
|
||||
"Website Tests": "ウェブサイトテスト",
|
||||
"System Info": "システム情報",
|
||||
"OS Info": "オペレーティングシステム情報",
|
||||
"Running Mode": "実行モード",
|
||||
"Sidecar Mode": "ユーザーモード",
|
||||
"Administrator Mode": "管理者モード",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "最後の更新チェック",
|
||||
"Click to import subscription": "クリックしてサブスクリプションをインポート",
|
||||
"Unknown": "不明",
|
||||
"Update with Clash proxy successfully": "Clashプロキシを使用して更新に成功しました。",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "稼働時間",
|
||||
"rulesCount": "ルール数"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "システム情報",
|
||||
"fields": {
|
||||
"osInfo": "オペレーティングシステム情報",
|
||||
"autoLaunch": "起動時に自動起動",
|
||||
"runningMode": "実行モード",
|
||||
"lastCheckUpdate": "最後の更新チェック",
|
||||
"vergeVersion": "Vergeバージョン"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "設定"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "有効",
|
||||
"disabled": "無効"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "管理者モードでは起動時の自動起動がサポートされない場合があります。"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "管理者モード",
|
||||
"serviceMode": "サービスモード",
|
||||
"sidecarMode": "ユーザーモード",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "활성 연결",
|
||||
"Rule": "규칙",
|
||||
"Icon": "아이콘",
|
||||
"Settings": "설정",
|
||||
"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",
|
||||
"Service Mode": "서비스 모드",
|
||||
"active": "active",
|
||||
"unknown": "unknown",
|
||||
"Install": "Install",
|
||||
"Uninstall": "Uninstall",
|
||||
"System Proxy": "시스템 프록시",
|
||||
"Enabled": "Enabled",
|
||||
"Disabled": "Disabled",
|
||||
"Auto Launch": "Auto Launch",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Network Interface": "Network Interface",
|
||||
"Ip Address": "IP Address",
|
||||
"Mac Address": "MAC Address",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Entry Lightweight Mode",
|
||||
"Runtime Config": "Runtime Config",
|
||||
"Exit": "Exit",
|
||||
"Verge Version": "Verge Version",
|
||||
"ReadOnly": "ReadOnly",
|
||||
"Filter conditions": "Filter conditions",
|
||||
"Match Case": "Match Case",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "병합 파일 오류",
|
||||
"Service Administrator Prompt": "Clash Verge requires administrator privileges to reinstall the system service",
|
||||
"Website Tests": "Website Tests",
|
||||
"System Info": "System Info",
|
||||
"OS Info": "OS Info",
|
||||
"Running Mode": "Running Mode",
|
||||
"Sidecar Mode": "User Mode",
|
||||
"Administrator Mode": "Administrator Mode",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Last Check Update",
|
||||
"Click to import subscription": "Click to import subscription",
|
||||
"Unknown": "Unknown",
|
||||
"Update with Clash proxy successfully": "Clash 프록시로 업데이트 성공",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Uptime",
|
||||
"rulesCount": "Rules Count"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "System Info",
|
||||
"fields": {
|
||||
"osInfo": "OS Info",
|
||||
"autoLaunch": "Auto Launch",
|
||||
"runningMode": "Running Mode",
|
||||
"lastCheckUpdate": "Last Check Update",
|
||||
"vergeVersion": "Verge Version"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "설정"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "Enabled",
|
||||
"disabled": "Disabled"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Administrator mode may not support auto launch"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Administrator Mode",
|
||||
"serviceMode": "서비스 모드",
|
||||
"sidecarMode": "User Mode",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Активные соединения",
|
||||
"Rule": "Правило",
|
||||
"Icon": "Иконка",
|
||||
"Settings": "Настройки",
|
||||
"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",
|
||||
"Service Mode": "Режим системной службы",
|
||||
"active": "Активированный",
|
||||
"unknown": "неизвестный",
|
||||
"Install": "Установить",
|
||||
"Uninstall": "Удалить",
|
||||
"System Proxy": "Системный прокси",
|
||||
"Enabled": "Включено",
|
||||
"Disabled": "Отключено",
|
||||
"Auto Launch": "Автозапуск",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Network Interface": "Сетевой интерфейс",
|
||||
"Ip Address": "IP адрес",
|
||||
"Mac Address": "MAC адрес",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Вход в LightWeight Mode",
|
||||
"Runtime Config": "Используемый конфиг",
|
||||
"Exit": "Выход",
|
||||
"Verge Version": "Версия Clash Verge Rev",
|
||||
"ReadOnly": "Только для чтения",
|
||||
"Filter conditions": "Условия фильтрации",
|
||||
"Match Case": "Учитывать регистр",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "Ошибка Merge File, откат изменений",
|
||||
"Service Administrator Prompt": "Clash Verge требует прав администратора для переустановки системной службы",
|
||||
"Website Tests": "Проверка доступности веб-сайтов",
|
||||
"System Info": "Информация о системе",
|
||||
"OS Info": "Версия ОС",
|
||||
"Running Mode": "Режим работы",
|
||||
"Sidecar Mode": "Пользовательский режим",
|
||||
"Administrator Mode": "Administrator Mode",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Последняя проверка обновлений",
|
||||
"Click to import subscription": "Нажмите, чтобы импортировать подписку",
|
||||
"Unknown": "Unknown",
|
||||
"Update with Clash proxy successfully": "Update with Clash proxy successfully",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Время работы",
|
||||
"rulesCount": "Количество правил"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "Информация о системе",
|
||||
"fields": {
|
||||
"osInfo": "Версия ОС",
|
||||
"autoLaunch": "Автозапуск",
|
||||
"runningMode": "Режим работы",
|
||||
"lastCheckUpdate": "Последняя проверка обновлений",
|
||||
"vergeVersion": "Версия Clash Verge Rev"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "Настройки"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "Включено",
|
||||
"disabled": "Отключено"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Administrator mode may not support auto launch"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Administrator Mode",
|
||||
"serviceMode": "Режим системной службы",
|
||||
"sidecarMode": "Пользовательский режим",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Aktif Bağlantılar",
|
||||
"Rule": "Kural",
|
||||
"Icon": "Simge",
|
||||
"Settings": "Ayarlar",
|
||||
"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",
|
||||
"Service Mode": "Hizmet Modu",
|
||||
"active": "aktif",
|
||||
"unknown": "bilinmiyor",
|
||||
"Install": "Kur",
|
||||
"Uninstall": "Kaldır",
|
||||
"System Proxy": "Sistem Vekil'i",
|
||||
"Enabled": "Etkin",
|
||||
"Disabled": "Devre Dışı",
|
||||
"Auto Launch": "Otomatik Başlatma",
|
||||
"Administrator mode may not support auto launch": "Yönetici modu otomatik başlatmayı desteklemeyebilir",
|
||||
"Network Interface": "Ağ Arayüzü",
|
||||
"Ip Address": "IP Adresi",
|
||||
"Mac Address": "MAC Adresi",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Hafif Moda Gir",
|
||||
"Runtime Config": "Çalışma Zamanı Yapılandırması",
|
||||
"Exit": "Çıkış",
|
||||
"Verge Version": "Verge Sürümü",
|
||||
"ReadOnly": "Salt Okunur",
|
||||
"Filter conditions": "Filtre koşulları",
|
||||
"Match Case": "Büyük/Küçük Harf Eşleştir",
|
||||
@@ -379,13 +372,6 @@
|
||||
"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",
|
||||
"Website Tests": "Web Sitesi Testleri",
|
||||
"System Info": "Sistem Bilgisi",
|
||||
"OS Info": "İşletim Sistemi Bilgisi",
|
||||
"Running Mode": "Çalışma Modu",
|
||||
"Sidecar Mode": "Kullanıcı Modu",
|
||||
"Administrator Mode": "Yönetici Modu",
|
||||
"Administrator + Service Mode": "Yönetici + Hizmet Modu",
|
||||
"Last Check Update": "Son Güncelleme Kontrolü",
|
||||
"Click to import subscription": "Abonelik içe aktarmak için tıklayın",
|
||||
"Unknown": "Bilinmiyor",
|
||||
"Update with Clash proxy successfully": "Clash vekil ile güncelleme başarılı",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Çalışma Süresi",
|
||||
"rulesCount": "Kural Sayısı"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "Sistem Bilgisi",
|
||||
"fields": {
|
||||
"osInfo": "İşletim Sistemi Bilgisi",
|
||||
"autoLaunch": "Otomatik Başlatma",
|
||||
"runningMode": "Çalışma Modu",
|
||||
"lastCheckUpdate": "Son Güncelleme Kontrolü",
|
||||
"vergeVersion": "Verge Sürümü"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "Ayarlar"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "Etkin",
|
||||
"disabled": "Devre Dışı"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Yönetici modu otomatik başlatmayı desteklemeyebilir"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Yönetici Modu",
|
||||
"serviceMode": "Hizmet Modu",
|
||||
"sidecarMode": "Kullanıcı Modu",
|
||||
"adminServiceMode": "Yönetici + Hizmet Modu"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "Active Connections",
|
||||
"Rule": "Кагыйдә",
|
||||
"Icon": "Иконка",
|
||||
"Settings": "Көйләүләр",
|
||||
"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",
|
||||
"Service Mode": "Сервис режимы",
|
||||
"active": "Актив",
|
||||
"unknown": "Билгесез",
|
||||
"Install": "Урнаштыру",
|
||||
"Uninstall": "Салдыру",
|
||||
"System Proxy": "Системалы прокси",
|
||||
"Enabled": "Кушылган",
|
||||
"Disabled": "Сүнгән",
|
||||
"Auto Launch": "Автостарт",
|
||||
"Administrator mode may not support auto launch": "Administrator mode may not support auto launch",
|
||||
"Network Interface": "Челтәр интерфейсы",
|
||||
"Ip Address": "IP адресы",
|
||||
"Mac Address": "MAC адресы",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "Entry Lightweight Mode",
|
||||
"Runtime Config": "Агымдагы конфигурация",
|
||||
"Exit": "Чыгу",
|
||||
"Verge Version": "Verge версиясе",
|
||||
"ReadOnly": "Уку режимы гына",
|
||||
"Filter conditions": "Фильтр шартлары",
|
||||
"Match Case": "Регистрны исәпкә алу",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "Merge file error, changes reverted",
|
||||
"Service Administrator Prompt": "Clash Verge система хезмәтен яңадан урнаштыру өчен администратор хокукларын таләп итә",
|
||||
"Website Tests": "Website Tests",
|
||||
"System Info": "System Info",
|
||||
"OS Info": "OS Info",
|
||||
"Running Mode": "Running Mode",
|
||||
"Sidecar Mode": "User Mode",
|
||||
"Administrator Mode": "Administrator Mode",
|
||||
"Administrator + Service Mode": "Admin + Service Mode",
|
||||
"Last Check Update": "Last Check Update",
|
||||
"Click to import subscription": "Click to import subscription",
|
||||
"Unknown": "Unknown",
|
||||
"Update with Clash proxy successfully": "Update with Clash proxy successfully",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "Uptime",
|
||||
"rulesCount": "Rules Count"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "System Info",
|
||||
"fields": {
|
||||
"osInfo": "OS Info",
|
||||
"autoLaunch": "Автостарт",
|
||||
"runningMode": "Running Mode",
|
||||
"lastCheckUpdate": "Last Check Update",
|
||||
"vergeVersion": "Verge версиясе"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "Көйләүләр"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "Кушылган",
|
||||
"disabled": "Сүнгән"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "Administrator mode may not support auto launch"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "Administrator Mode",
|
||||
"serviceMode": "Сервис режимы",
|
||||
"sidecarMode": "User Mode",
|
||||
"adminServiceMode": "Admin + Service Mode"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "活跃连接",
|
||||
"Rule": "规则",
|
||||
"Icon": "图标",
|
||||
"Settings": "设置",
|
||||
"Reset to Default": "重置为默认值",
|
||||
"TUN Mode automatically disabled due to service unavailable": "由于服务不可用,TUN 模式已自动关闭",
|
||||
"Failed to disable TUN Mode automatically": "自动关闭 TUN 模式失败",
|
||||
"Core communication error": "内核通信错误",
|
||||
"Service Mode": "服务模式",
|
||||
"active": "已激活",
|
||||
"unknown": "未知",
|
||||
"Install": "安装",
|
||||
"Uninstall": "卸载",
|
||||
"System Proxy": "系统代理",
|
||||
"Enabled": "已启用",
|
||||
"Disabled": "未启用",
|
||||
"Auto Launch": "开机自启",
|
||||
"Administrator mode may not support auto launch": "管理员模式可能不支持开机自启",
|
||||
"Network Interface": "网络接口",
|
||||
"Ip Address": "IP 地址",
|
||||
"Mac Address": "MAC 地址",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "进入轻量模式",
|
||||
"Runtime Config": "当前配置",
|
||||
"Exit": "退出",
|
||||
"Verge Version": "Verge 版本",
|
||||
"ReadOnly": "只读",
|
||||
"Filter conditions": "过滤条件",
|
||||
"Match Case": "区分大小写",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "覆写文件错误,变更已撤销",
|
||||
"Service Administrator Prompt": "Clash Verge 需要管理员权限安装系统服务",
|
||||
"Website Tests": "网站测试",
|
||||
"System Info": "系统信息",
|
||||
"OS Info": "操作系统信息",
|
||||
"Running Mode": "运行模式",
|
||||
"Sidecar Mode": "用户模式",
|
||||
"Administrator Mode": "管理员模式",
|
||||
"Administrator + Service Mode": "管理员 + 服务模式",
|
||||
"Last Check Update": "最后检查更新",
|
||||
"Click to import subscription": "点击导入订阅",
|
||||
"Unknown": "未知",
|
||||
"Update with Clash proxy successfully": "使用 Clash 代理更新成功",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "运行时间",
|
||||
"rulesCount": "规则数量"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "系统信息",
|
||||
"fields": {
|
||||
"osInfo": "操作系统信息",
|
||||
"autoLaunch": "开机自启",
|
||||
"runningMode": "运行模式",
|
||||
"lastCheckUpdate": "最后检查更新",
|
||||
"vergeVersion": "Verge 版本"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "设置"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "已启用",
|
||||
"disabled": "未启用"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "管理员模式可能不支持开机自启"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "管理员模式",
|
||||
"serviceMode": "服务模式",
|
||||
"sidecarMode": "用户模式",
|
||||
"adminServiceMode": "管理员 + 服务模式"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
@@ -279,21 +279,15 @@
|
||||
"Active Connections": "作用中連線",
|
||||
"Rule": "規則",
|
||||
"Icon": "圖示",
|
||||
"Settings": "設定",
|
||||
"Reset to Default": "重設為預設值",
|
||||
"TUN Mode automatically disabled due to service unavailable": "由於服務不可使用,虛擬網路介面卡模式已自動停用",
|
||||
"Failed to disable TUN Mode automatically": "自動停用虛擬網路介面卡模式失敗",
|
||||
"Core communication error": "內核通信錯誤",
|
||||
"Service Mode": "服務模式",
|
||||
"active": "作用中",
|
||||
"unknown": "未知",
|
||||
"Install": "安裝",
|
||||
"Uninstall": "解除安裝",
|
||||
"System Proxy": "系統代理",
|
||||
"Enabled": "已啟用",
|
||||
"Disabled": "已停用",
|
||||
"Auto Launch": "開機自啟",
|
||||
"Administrator mode may not support auto launch": "管理員模式可能不支援開機自啟",
|
||||
"Network Interface": "網路介面",
|
||||
"Ip Address": "IP 位址",
|
||||
"Mac Address": "MAC 位址",
|
||||
@@ -322,7 +316,6 @@
|
||||
"entry_lightweight_mode": "進入輕量模式",
|
||||
"Runtime Config": "執行期設定",
|
||||
"Exit": "離開",
|
||||
"Verge Version": "Verge 版本",
|
||||
"ReadOnly": "唯讀",
|
||||
"Filter conditions": "篩選條件",
|
||||
"Match Case": "區分大小寫",
|
||||
@@ -379,13 +372,6 @@
|
||||
"Merge File Error": "覆寫檔案錯誤,變更已撤銷",
|
||||
"Service Administrator Prompt": "Clash Verge 需要管理員權限安裝系統服務",
|
||||
"Website Tests": "網站測試",
|
||||
"System Info": "系統資訊",
|
||||
"OS Info": "作業系統資訊",
|
||||
"Running Mode": "執行模式",
|
||||
"Sidecar Mode": "使用者模式",
|
||||
"Administrator Mode": "管理員模式",
|
||||
"Administrator + Service Mode": "系統管理員 + 服務模式",
|
||||
"Last Check Update": "最後檢查更新",
|
||||
"Click to import subscription": "點擊匯入訂閱",
|
||||
"Unknown": "未知",
|
||||
"Update with Clash proxy successfully": "使用 Clash 代理更新成功",
|
||||
@@ -613,6 +599,32 @@
|
||||
"uptime": "執行時間",
|
||||
"rulesCount": "規則數量"
|
||||
}
|
||||
},
|
||||
"systemInfo": {
|
||||
"title": "系統資訊",
|
||||
"fields": {
|
||||
"osInfo": "作業系統資訊",
|
||||
"autoLaunch": "開機自啟",
|
||||
"runningMode": "執行模式",
|
||||
"lastCheckUpdate": "最後檢查更新",
|
||||
"vergeVersion": "Verge 版本"
|
||||
},
|
||||
"actions": {
|
||||
"settings": "設定"
|
||||
},
|
||||
"labels": {
|
||||
"enabled": "已啟用",
|
||||
"disabled": "已停用"
|
||||
},
|
||||
"tooltips": {
|
||||
"autoLaunchAdmin": "管理員模式可能不支援開機自啟"
|
||||
},
|
||||
"badges": {
|
||||
"adminMode": "管理員模式",
|
||||
"serviceMode": "服務模式",
|
||||
"sidecarMode": "使用者模式",
|
||||
"adminServiceMode": "系統管理員 + 服務模式"
|
||||
}
|
||||
}
|
||||
},
|
||||
"connection": {
|
||||
|
||||
Reference in New Issue
Block a user