mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-24 20:07:13 +00:00
effcccceac
* feat(amneziawg): add native AmneziaWG protocol backend AmneziaWG (WireGuard plus DPI-resistant obfuscation) needs no Docker here — it runs as a genuine kernel interface via awg-quick/awg, managed the same way internal/mtproto manages mtg: one Inbound row is one desired Instance, and a Manager reconciles running interfaces toward the database every 10s (internal/web/job/amneziawg_job.go) plus immediately after a client edit (applyLocalAmneziaWG). Clients reuse model.Client verbatim (the same PrivateKey/PublicKey/ PreSharedKey/AllowedIPs fields WireGuard already uses), so bulk operations, the QR/share-link modal and subscriptions come from the shared inbound infrastructure instead of a parallel implementation. internal/amneziawg owns the obfuscation param generator/validator (ported from coinman-dev/3ax-ui, upgraded to AmneziaWG 2.0's S3/S4 padding and I1 signature packet) and the exec wrapper around awg-quick/awg, with fingerprint-based reconcile (noop / reload-via- syncconf / full restart) mirroring mtproto.Manager so a same-protocol edit doesn't force an unnecessary interface bounce that would drop every peer's connection. Frontend and install.sh's DKMS/awg-tools setup are tracked separately; this is backend-only. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): add frontend support and fix a Go->Zod generator gap Wires the amneziawg protocol through the panel UI the same way every other protocol is registered: a Zod settings schema (nested {server, clients}, matching the Go JSON exactly), the protocol enum, the inbound-form's per-protocol fields component and its tab-visibility allowlist, the default-settings factory, the client schema dispatcher, and the sniffing-capability exclusion (no Xray inbound exists for amneziawg, same as mtproto). Client key/allowedIPs fields are reused rather than duplicated: since AmneziaWG clients are wire-identical to WireGuard clients (same model.Client fields), ClientFormModal renders one shared field block for both, switching only the visible label by which protocol is active. The private-key input also gets a live public-key sync via a new useEffect, because unlike WireGuard's Xray-native inbound (which re-derives its public key at runtime and never stores one), AmneziaWG's server.publicKey is a real persisted field the Go backend reads directly — free-typing a new private key without this would silently save a mismatched keypair. Adds a downloadable per-client .conf (amneziawgConfig.ts, mirroring wireguardConfig.ts) with the obfuscation lines, and an InboundOption.AwgServer field on the Go side so the config builder gets the full server block in one round trip. Along the way, running tools/openapigen surfaced a real bug: it doesn't flatten anonymously-embedded Go structs the way encoding/json does, so ServerSettings embedding Obfuscation20 produced a Zod schema with a nested `obfuscation20` key that never matches the real wire JSON. Fixed by un-embedding (flat fields + an accessor method) and registering internal/amneziawg in the generator's own package list, which had been silently emitting a dangling schema reference. English and Russian translations are complete; the other 10 locale files still fall back to English for the new keys. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): complete frontend parity for the Inbounds list page The Clients page (form, CRUD, QR/config) already worked from the prior commit; this closes the remaining gap on the Inbounds side and in a couple of protocol allowlists that a plain search for existing wireguard/mtproto handling turned up. lib/xray/inbound-link.ts gets amneziawg-specific link/config builders (genAmneziaWGLink/genAmneziaWGConfig, plus the *s fan-out variants) mirroring the wireguard ones — AmneziaWG has no legacy peers-array to fall back to, so these read settings.clients directly and add the obfuscation lines every client must share with the server. Wired into genInboundLinks generically, and into three consumers that call the wireguard builders directly rather than through that dispatcher: QrCodeModal, InboundInfoModal, and InboundsPage's bulk export. ClientInfoModal, ClientBulkAddModal, and the bulk attach/detach modals each had their own protocol allowlist that needed amneziawg added alongside wireguard/mtproto. Two real gaps surfaced by grepping every remaining 'wireguard' / Protocols.WIREGUARD hit in frontend/src rather than trusting the checklist was exhaustive: - useInbounds.ts's TRACKED_PROTOCOLS gates the deactive/depleted/ expiring/online client counts shown per inbound on the list page; without amneziawg those counts would silently read zero. - inbound-tag.ts is an explicit client-side mirror of the Go backend's port_conflict.go (the file says so itself: "Keep in sync"). It still only special-cased wireguard for UDP, so an amneziawg inbound would have fallen through to the TCP default and disagreed with the backend's own port-conflict math. Also finishes translating the AmneziaWG UI strings into the 11 locale files that were still falling back to English (ar-EG, es-ES, fa-IR, id-ID, ja-JP, pt-BR, tr-TR, uk-UA, vi-VN, zh-CN, zh-TW), matching en-US/ru-RU key-for-key (26 new keys, verified by count in every file). Not run anywhere: npm run typecheck / build. This machine has neither Node nor npm, so nothing here has compiled — reviewed by hand plus brace/paren balance checks and cross-referencing the generated Zod/TS types. Treat this as needing a real typecheck before shipping. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * docs(install): note that AmneziaWG kernel module install is still manual Tracked separately (not yet ported into this script) — see coinman-dev/3ax-ui's install_amneziawg for the reference approach (ppa:amnezia/ppa). Also serves as a real, path-filter-matching change to get the previous empty commit's CI trigger to actually fire — release.yml's push trigger is paths-scoped and an empty commit changes no files, so it never matched. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): add a button to randomize obfuscation parameters Mirrors the existing key-regenerate button next to the private key field. Client-side randomization matches the ranges/constraints of GenerateObfuscation20's "default" preset (internal/amneziawg/params.go) closely enough for a form suggestion — the user can still hand-edit any field afterward. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(install): auto-install the AmneziaWG DKMS module + amneziawg-tools Ports install_amneziawg from coinman-dev/3ax-ui's install.sh, adapted to this script's broader distro coverage and NONINTERACTIVE convention: - Ubuntu/Debian/Armbian: ppa:amnezia/ppa (primary, tested path), with a reachability pre-check for the Launchpad PPA host — often blocked by hosting providers, especially Russian VPS — so a flaky network skips the feature instead of hanging apt through several retries. - Fedora/RHEL-family, Arch/Manjaro/Parch: best-effort fallback to plain wireguard-tools (+ AUR amneziawg-dkms via yay/paru when available), with a manual-install pointer. - Everything else: manual-install pointer only. Also installs ndppd and persists IPv4/IPv6 forwarding (for the future IPv6/NDP phase, not yet wired into the panel) and adds a Secure Boot warning at the end of the run, since a DKMS-built module is unsigned and won't load while it's enabled — a common trap on cloud VPS images. Never fatal: the panel installs and runs fine either way, an AmneziaWG inbound just won't bring up its tunnel until the module is present. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): resolve all 3 real CI failures (typecheck/lint/codegen) Found by checking the fork's Actions tab after the last two pushes — the release build passed (it doesn't run these checks) but the separate CI workflow caught three real issues: - golangci-lint (noctx): every internal/amneziawg/manager.go exec.Command call is now exec.CommandContext with a 30s timeout, so a hung awg-quick/awg invocation can't block the reconcile job indefinitely (mirrors internal/mtproto/process.go's own CommandContext usage). - tsc --noEmit: frontend/src/schemas/client.ts's hand-maintained InboundOptionSchema (used by the useClients hook, separate from the auto-generated one in generated/) never got an awgServer field added when the AmneziaWG frontend work was done — every read of inbound.awgServer.* in amneziawgConfig.ts was typing as {}. Added AwgServerOptionSchema, nested (not flattened like wg*) to match what amneziawgConfig.ts already expects. Also guarded server.publicKey in inbound-link.ts's genAmneziaWGLink against the schema's optional type. - codegen staleness: frontend/public/openapi.json is produced by a Node script (gen:api) this machine can't run; hand-applied the exact diff the CI failure log already showed (amneziawg protocol enum entry, ServerSettings schema, InboundOption.awgServer, one example payload), verified as valid JSON. Also confirmed independently by this run: install_amneziawg (previous commit) installed and loaded the DKMS module successfully on both amd64 and arm64 CI runners. The two "Deploy Smoke Tests" failures are unrelated to this change — this fork has only ever published the dev-latest pre-release, and GitHub's /releases/latest API deliberately excludes pre-releases, so the smoke test's no-argument install path (which resolves "latest") has nothing to find. Not a regression; needs an actual tagged release whenever that's wanted. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): Phase 2a — IPv6 support + NDP proxy Adds native dual-stack IPv6 to AmneziaWG inbounds, ported from coinman-dev/3ax-ui's approach: - ServerSettings gets ipv6Enabled/ipv6Subnet/ipv6ExternalInterface; Instance carries the server's own IPv6 address (first host of the subnet) alongside its IPv4 one. - defaultAmneziaWGClients allocates an IPv6 host address per client (second AllowedIPs entry) when the server has IPv6 enabled, reusing allocateWireguardAddress — which needed a real fix along the way: it always suffixed "/32" regardless of address family, which is wrong for an IPv6 host address (needs /128). Now family-aware. - generateServerConfig's PostUp/PostDown gains IPv6 forward-accept rules, proxy_ndp sysctl, and one `ip -6 neigh add/del proxy` entry per enabled peer with an IPv6 address — the lightweight per-client method, not the ndppd-daemon whole-subnet method (not worth the config-file-management complexity at this scale; ndppd itself is still installed by install.sh in case that changes later). - ValidateIPv6Subnet rejects a malformed subnet before save. - Frontend: ipv6Enabled/ipv6Subnet/ipv6ExternalInterface fields on the AmneziaWG inbound form, EN+RU translations, openapi.json/generated/* regenerated (the latter via `go run ./tools/openapigen`, pure Go). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): fill in IPv6 fields missed by the Phase 2a commit Two real gaps the CI caught (both new fields, both my miss): - inbound-defaults.ts's createDefaultAmneziawgInboundSettings() built a server object literal predating ipv6Enabled/ipv6Subnet/ ipv6ExternalInterface — AmneziawgServer's inferred type now requires them (zod .default() fields are non-optional post-parse), so this didn't typecheck at all. - openapi.json's ipv6Enabled property was missing the description the real generator attaches (the Go doc comment covering all three IPv6 fields is attached to the first one) — a one-line diff, but git diff --exit-code doesn't care how small. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): Phase 2b — per-client port-forwarding Admins can now set a per-client ForwardedPorts string (e.g. "80, 443, 8000-8100") that gets DNAT'd + FORWARD'd to that peer's tunnel address via iptables rules in PostUp/PostDown, ported and simplified from coinman-dev/3ax-ui's shared/portfwd. Two decisions worth flagging for future readers: - The iptables --comment tag on each rule is awg-fwd-<fnv32a(email)>, not the raw client email. Email is admin/API-supplied free text that ends up embedded in a shell-executed PostUp/PostDown line; a hash can never carry a shell metacharacter through where raw interpolation could. - The reconcile manager gained a third fingerprint (portFwdFP, next to the existing structural/peers ones). `awg syncconf` only touches the WireGuard peer table — it never re-applies PostUp/PostDown iptables rules — so a port-forward-only change has to force a full awg-quick down+up bounce, same as a structural change, rather than the lighter sync a plain peer add/remove can use. Also fixes a real pre-existing bug found while wiring up IPv6 client allocation in the previous commit's spirit: allocateWireguardAddress always suffixed "/32" regardless of address family, which produced invalid host bits for IPv6 (needs "/128"). ForwardedPorts flows through model.Client -> model.ClientRecord (gorm column wg_forwarded_ports, auto-migrated) -> ToRecord/ToClient/ MergeClientRecord, mirroring the awgServer field's earlier lesson that new fields need checking against a second, hand-maintained persistence-layer struct. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): route a client's traffic through Xray via the Routing page Every enabled AmneziaWG inbound gets its own Xray TPROXY bridge automatically, with no toggle to enable first: a loopback dokodemo-door inbound (sockopt.tproxy) tagged with the AmneziaWG inbound's own real tag, so it's already selectable in the existing Routing page's inbound-tag picker — the same trick the mtproto sidecar's own bridge already relies on (InboundService.GetInboundTags is a plain, protocol-blind SELECT over every inbound row's tag, no dedicated UI plumbing needed). internal/amneziawg's defaultPostUpDown TPROXYs every peer's traffic into that bridge unconditionally; the bridge's port is derived deterministically from the inbound's id (EgressPortForInbound) so the kernel-side reconcile loop and the Xray-config generator never need to negotiate a runtime value between them. injectAmneziawgEgress never generates a routing rule itself — whether a client's traffic goes anywhere beyond Xray's default routing is entirely up to whatever rules the admin adds through the existing Routing UI (pick the AmneziaWG inbound's tag as source, optionally a specific peer's IP via that page's own Source-IP field, and an outbound), exactly the same workflow as routing any other protocol. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): recover orphaned interfaces after an ungraceful exit Two gaps left an AmneziaWG interface stuck outside the manager's control after a crash (kill -9/OOM/panic skips StopAll): - ensureRestart's teardown was gated on the in-memory `exists` map, which is always empty on a fresh process, so a survived interface never got interfaceDown before interfaceUp tried `ip link add` against a name the kernel already had — failing forever and never populating m.ifaces, so traffic accounting silently stopped and the inbound could never be removed. Gate on isInterfaceUp instead, which checks real kernel state rather than this process's own bookkeeping. - An inbound deleted from the database entirely while the panel was down has no entry in `desired` ever again, so it never reaches the per-id cleanup loop in Reconcile (which only walks m.ifaces). Add a one-time sweepOrphansLocked scan of configDir, mirroring mtproto.Manager.sweepOrphansLocked, that tears down and removes any leftover interface/config not in the current desired set. Found by the automated review on MHSanaei/3x-ui#6105 (Finding 1). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * i18n(amneziawg): backfill IPv6/obfuscation/port-forwarding keys in 11 locales Only en-US/ru-RU ever got these 9 keys as each AmneziaWG feature landed (the regenerate-obfuscation button, then Phase 2a's IPv6 fields, then Phase 2b's per-client ForwardedPorts) — the other 11 locale files were never backfilled, so i18next has been silently falling back to English for all of them since Phase 1. Cosmetic-only (never broke anything), but now closed for every shipped locale. * fix(amneziawg): resolve 7 Medium findings from the automated PR review Each is independently reproducible; fixed together since one review pass found all of them. - manager.go: the shared "ip rule add fwmark" policy route had no existence check, so it duplicated in "ip rule show" on every interface bounce (which hostRulesFingerprint forces on any client add/remove/ re-IP). Now checked via "ip rule list | grep -q ..." first. (Finding 2) - params.go: ExternalInterface, IPv6ExternalInterface, and subnetIp/ subnetCidr are interpolated unescaped into a shell-executed PostUp/ PostDown line, but only obfuscation and the IPv6 subnet were validated before save. Added ValidateInterfaceName (a strict charset+length pattern) and ValidateSubnetIPv4 (netip.ParsePrefix), wired into normalizeAmneziaWGSettings. (Finding 3) - amneziawg_job.go: IsAwgInstalled() existed but nothing ever called it, so a host without awg/awg-quick (the Docker image, RHEL, Arch, a failed install.sh PPA step) logged a reconcile failure every 10s forever. Now checked once an inbound actually needs it, warning once instead of spamming. (Finding 4) - client_inbound_apply.go: the WireGuard/AmneziaWG credential carry-forward (added so a metadata-only client edit doesn't rotate keys) never covered ForwardedPorts, so a partial edit -- an API call or Telegram-bot toggle that omits the field -- silently wiped a client's port-forwarding spec. Carried forward and written back the same way the key fields already are. (Finding 5) - manager.go: hostRulesFingerprint keyed each peer on its IPv4 address only, and structuralFingerprint omitted IPv6Enabled/IPv6ExternalInterface entirely, so an IPv6-only change could pick the syncconf reload path (which never re-runs PostUp, leaving a stale NDP-proxy entry) or be a complete no-op. Both fingerprints now cover the IPv6 fields. (Finding 6) - port_conflict.go: the AmneziaWG egress bridge (injectAmneziawgEgress) binds 127.0.0.1:63100+id with no collision check anywhere, since it isn't a database row the ordinary port-conflict query can see -- same blind spot the reserved Xray API port already has its own check for. Added the equivalent check for the AmneziaWG bridge port. (Finding 7) - install.sh: install_amneziawg ran unconditionally for every install/ update, building a DKMS kernel module and enabling host-wide IPv4/IPv6 forwarding whether or not the feature is ever used. Gated behind a new should_install_amneziawg (XUI_INSTALL_AMNEZIAWG=true/false, or an interactive y/N prompt defaulting to no). Also replaced the deprecated apt-key adv with a dedicated keyring + signed-by= on the Debian branch, and guarded its sources.list appends against duplication on a retried install. (Finding 8) Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): make the Xray TPROXY bridge a per-inbound opt-in Addresses Finding 10 from the automated PR review: an always-on TPROXY bridge makes every AmneziaWG tunnel hard-depend on Xray being up (all traffic, including DNS, drops whenever Xray restarts), and forces a full awg-quick down+up bounce on any client add/remove/re-IP, permanently losing the syncconf fast path. Adds ServerSettings.RouteThroughXray (off by default): - defaultPostUpDown only emits the TPROXY/policy-route rules when it's on; a plain AmneziaWG tunnel now has zero Xray dependency out of the box. - structuralFingerprint covers it (toggling it changes whether PostUp/ PostDown contain any TPROXY rules at all -- structural, not a per-peer host-rule). hostRulesFingerprint's IPv4 tracking is now itself conditional on RouteThroughXray (and IPv6 tracking on IPv6Enabled), so an instance that never uses either keeps the syncconf fast path for a plain peer re-IP. - injectAmneziawgEgress only creates a bridge for inbounds that opted in; checkAmneziawgEgressConflict (the Finding-7 fix) now parses each candidate through InstanceFromInbound so a non-routed inbound's port is correctly never treated as reserved. - New inbound-level Switch in the AmneziaWG form; the actual outbound decision is still made entirely through the panel's stock Routing page, same as before -- only whether the bridge exists at all is now a choice. Translation keys added to all 13 locales in the same commit this time, not backfilled later (see Finding 9's lesson). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): resolve 4 Low findings from the automated PR review - manager.go: serverAddress assumed subnetIp always ends in ".0"; a base like "10.8.1.5" was used verbatim as the server's own address, eventually colliding with peer allocation (which starts at .2 upward). Now derives the first host of the actual subnetIp/subnetCidr network via netip, matching serverAddressV6's own approach. A /32 base (no host bits at all) is still used as-is. (Finding 12, partial -- the /16 pool-widening half of this finding only exists on the upstream-pr/amneziawg branch's merged client_wireguard.go, not here; handled separately on that branch.) - manager.go: ensureLocked carried the previous per-peer traffic counters (`last`) forward even through a full restart, but awg-quick down+up resets the kernel's own counters to zero -- the next CollectTraffic computed a large negative delta (clamped to 0), silently discarding real traffic. Extracted the decision into nextTrafficBaseline: only a reload (syncconf) preserves the baseline. (Finding 13) - portfwd.go: exported ForwardedPortsInclude; inbound_amneziawg.go's new checkForwardedPortsConflict uses it to reject, at save time, a client's forwardedPorts that would DNAT the panel's own port or another enabled inbound's port to the tunnel client -- portForwardLines has no destination restriction, so this collision was previously silent. Wired into both the single-client update path and the add-client path (client_inbound_apply.go), plus normalizeAmneziaWGSettings for the whole-inbound save path. (Finding 14) - inbound.go: InboundOption.AwgServer sent the whole ServerSettings struct including PrivateKey to GetInboundOptions callers -- a shared, admin-wide dropdown-filling endpoint the frontend's own AwgServerOptionSchema never reads that field from. Redacted it before assigning. (Finding 11) Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): don't widen the peer address pool past AmneziaWG's own subnet Completes Finding 12 from the automated PR review (the serverAddress half of this finding was already fixed on main and cherry-picked here). This half is specific to this branch: allocateWireguardAddress's /16 pool-widening fallback is an independent addition from upstream's own main that this branch inherited during the cherry-pick rebase -- it doesn't exist on the fork's own main at all, so this fix can't be cherry-picked the normal way and is committed directly here. Widening is safe for WireGuard's own Xray-native inbound (AllowedIPs isn't tied to a strict kernel interface subnet), but AmneziaWG's kernel interface Address is exactly the configured subnet -- an address allocated from the containing /16 once the /24 fills up would be silently unroutable. allocateWireguardAddress now takes an explicit allowWidening bool: WireGuard's own caller passes true (unchanged behavior), AmneziaWG's passes false (fails loudly on exhaustion instead). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * docs(docker): note that AmneziaWG doesn't work in this image Investigated: the image is Alpine-based, and AmneziaWG's own packaging (DKMS module + amneziawg-tools) doesn't target Alpine/musl at all -- unlike the Debian/Ubuntu/Fedora/Arch paths install.sh already handles, there's no package to apk add even with full host network/capabilities. The panel already degrades gracefully (IsAwgInstalled() logs one warning instead of retrying forever), so no code change is needed -- just made the reason explicit at the point where a user would reach for cap_add/ network_mode to try to work around it. * fix(sub): include amneziawg inbounds in subscription links getInboundsBySubId's SQL protocol allowlist never had 'amneziawg' added, so every AmneziaWG client was silently excluded from all three subscription formats (plain/individual links, JSON, Clash) and from the Telegram bot's QR/individual-link buttons, which fetch through the same path. genAmneziaWGLink itself was already fully implemented and already wired into GetLink's dispatch switch -- it just never got a chance to run. Same bug shape as the earlier TRACKED_PROTOCOLS frontend gap: a hardcoded protocol list one entry short. Found while investigating whether the Telegram bot needed AmneziaWG- specific client-management code -- it doesn't (the bot itself is fully protocol-agnostic), but this is the actual root cause of "can't share an AmneziaWG client's config via the bot." Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(inbound): enforce node-eligibility server-side, not just in the UI Investigated multi-node interaction with AmneziaWG: the master's own reconcile (DesiredAmneziaWGInstances) and Xray config generation (injectAmneziawgEgress, the GenXrayInboundConfig protocol skip) all correctly filter on NodeID IS NULL, so a node-assigned AmneziaWG (or MTProto) inbound would never be managed by the master. But nothing stopped one from being created that way: NODE_ELIGIBLE_PROTOCOLS (frontend/src/pages/inbounds/form/InboundFormModal.tsx) only hides the node picker client-side -- a direct API call could set nodeId on an AmneziaWG inbound, which every node then reconciles as an ordinary local inbound (nodes run the identical binary, full cron suite included), leaving it running unmanaged and untracked by the master's own AmneziaWG bookkeeping. Added isNodeEligibleProtocol (inbound_protocol.go), mirroring the frontend's allowlist, and enforced it in both AddInbound (the actually exploitable path -- nodeId comes straight from the request) and UpdateInbound (defense in depth; NodeID is already restored from the stored row there before this check, so it mainly guards against a protocol change on an existing node-hosted inbound). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): allow TPROXY-marked traffic through a default-deny INPUT chain TPROXY never rewrites a packet's own destination address, only the routing decision. A default-deny firewall whose INPUT chain sanity-checks "is this destination actually local" (UFW's ufw-not-local, via addrtype --dst-type LOCAL, is a concrete example) silently drops the redirected packet before Xray's socket ever sees it -- RouteThroughXray looked fully configured (TPROXY rule present and counting, Xray listening with IP_TRANSPARENT set) yet every peer's traffic vanished with no trace on either side. Adds an idempotent, never-torn-down "iptables -I INPUT 1 -m mark --mark <fwmark> -j ACCEPT" alongside the existing shared policy route, so this works regardless of which firewall manager owns the rest of the INPUT chain. * fix(frontend): give AmneziaWG the same UDP tag and its own tag color The Inbounds list only special-cased isWireguard/isHysteria for the "UDP" network badge, so an AmneziaWG row showed just the bare protocol tag with no transport badge next to it. Added the missing isAmneziawg flag (mirrors isWireguard exactly) and wired it into the same branch. Client-row protocol-color maps in ClientsPage/HostList had no amneziawg entry, silently falling back to grey -- ClientInfoModal already had amneziawg: 'yellow' from earlier work, these two just never got it. * feat(logs): show which AmneziaWG client an access-log line belongs to The dokodemo-door TPROXY bridge every AmneziaWG peer's traffic is routed through has no per-user identity, so Xray's own access log never carries an "email:" token for these lines -- the Access Logs modal showed a blank Email column for every in-*-udp row, even though every other protocol's rows show the client normally. The peer's decapsulated tunnel IP does survive as the log's "from" address, and that IP deterministically maps to exactly one configured peer. Builds a "<inbound tag>|<ip>" -> email index from the same AmneziaWG inbounds already parsed elsewhere (amneziawg.InstanceFromInbound), and fills in Email from it whenever the raw log line didn't have one. * fix(amneziawg): enable sniffing on the TPROXY bridge Domain-based Routing rules could never match RouteThroughXray traffic: an AmneziaWG peer resolves DNS itself, through the tunnel, before ever sending a packet, so the decapsulated traffic TPROXY hands to the bridge is already a bare destination IP with no domain name attached at the network layer. Every other inbound recovers this via sniffing (confirmed working for the stock wireguard inbound, which does have it configured); the bridge never got a sniffing block at all, so only tag/IP/network-based rules could ever match it -- any domain rule above it in the list was silently unreachable. * docs: add an AmneziaWG config page and list it as a supported protocol Closes the PR checklist gap: the feature shipped with zero mention on the docs site. Mirrors reality.mdx's structure (key settings, setup steps, config excerpt) and notes the Docker/multi-node/Telegram-bot caveats the PR itself is honest about not having confirmed. * fix: address the fresh review round on PR #6105 (8 findings) 1. hostRulesFingerprint didn't account for ForwardedPorts when RouteThroughXray was off, so re-IPing a peer with port-forwarding configured left stale DNAT rules pointing at an address the next peer could be handed. 2. Server/client config values (keys, email, I1) were never validated for control characters before being written into the generated .conf; a newline could smuggle a PostUp hook into awg-quick's parser. Added ValidateConfigValue at save time and a sanitizeConfigValue backstop at render time. 3. checkForwardedPortsConflict didn't scope to node_id IS NULL, so a port used only on a different node produced a false collision; also hoisted the panel-port/inbounds lookup out of the per-client loop (portConflictContext) so N clients cost one query, not N. 4. PostDown commands were ";"-joined and abort on the first failure; appendOrTrue makes teardown best-effort so an external firewall flush can't leave DNAT rules to accumulate across bounces. 5. The "ip rule list | grep -q" existence check could SIGPIPE under pipefail and re-add a duplicate rule; switched to grep -c >/dev/null. 6. Ported the vpn:// share-link format (base64url of the plain .conf text, matching the real AmneziaVPN app) onto this branch -- it had only ever landed on our own fork's main, so this PR branch was still on the old amneziawg://+query-params scheme our own docs no longer described. Also corrected the docs' install.sh claim (opt-in/ interactive, not automatic) and stale pre-opt-in comments in route_egress.go. 7. install.sh: Arch's ndppd install used pacman -Syu (full system upgrade) instead of -Sy like every other call in the script; and should_install_amneziawg re-prompted on every `x-ui update` even when awg was already installed. 8. CollectTraffic could clobber a concurrent restart's freshly-reset (empty) traffic baseline with stale pre-restart counters, since getPeerStats runs lock-free; now checks pointer identity before writing back. sweepOrphansLocked permanently disabled itself on a transient os.ReadDir failure instead of allowing a retry. go build/vet/test and frontend typecheck/lint/build/vitest all pass. * fix(install.sh): check the live sysctl value, not sysctl.conf text Reviewer feedback (cherts, PR #6105): grepping /etc/sysctl.conf for the setting name is unreliable -- many distros split sysctl config across /etc/sysctl.d/*.conf, and /etc/sysctl.conf can be a symlink into that directory, so the check can miss an already-active setting (harmless duplicate append) or match a disabled/commented line (forwarding silently stays off). Query the live value via `sysctl -n` instead, which is accurate regardless of which file set it. Applied the same fix to both the IPv6 and IPv4 checks for consistency. * fix: update inbound_amneziawg.go to the split buildInboundForLocalRuntime Same fork-only-file blind spot as the one caught on our own main after the 3.6.0 sync: upstream split buildRuntimeInboundForAPI into buildInboundForNodePush / buildInboundForLocalRuntime (part of the node-sync client-deletion fix,5bc81dfd), updating every call site it could see. This file doesn't exist upstream, so it kept calling the old name even after the branch merged in that commit. * fix(frontend): recognize AmneziaWG's vpn:// scheme in share-link labels The shared link-tag/label helper (used by the client info modal, QR modal, and subscription page) had no entry for the vpn:// scheme AmneziaWG links use, so it fell through to the generic fallback: a plain "Vpn" tag with no color, and an empty remark/port that made the row's title fall back to "Link N" instead of the inbound's actual name:port — unlike every other protocol, which shows its real tag and label. vpn:// links are base64url of a plain .conf text (matching the real AmneziaVPN app's own share-link format), not a structured URL, so there's no query string or #hash to read a remark/port from. Decode the payload and pull the remark/endpoint back out of the .conf text directly instead. * fix(xray): force a full restart for TPROXY inbounds, never hot-add them Real incident: an AmneziaWG inbound with RouteThroughXray enabled lost all internet on that connection after a migration. Root-caused on the live box -- iptables TPROXY counters were incrementing (packets correctly redirected to 127.0.0.1:63110), but nothing was actually listening there (ss showed nothing on that port) until a full `systemctl restart x-ui`, after which the bridge came up immediately. Xray-core's gRPC AddInbound reports success for a new sockopt.tproxy inbound (internal/amneziawg's own Xray egress bridge is the only kind this fork ever generates) but doesn't reliably bind a working listener for it outside of process startup -- the bridge silently never comes up, and RouteThroughXray traffic goes nowhere until the next full restart happens to occur for an unrelated reason. diffInbounds already has this exact defensive pattern for REALITY inbounds ("a gRPC remove+add does not reliably rebuild the REALITY authenticator"), just never extended to TPROXY, and only in the already-existing-then-changed branch -- the "brand new inbound" branch had no such guard at all, which is exactly the path a freshly-enabled RouteThroughXray bridge takes. Added inboundUsesTproxy and wired it into both branches. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): flag Xray for resync when a peer edit changes qualifying state Real production bug, root-caused on iiadmin-vps: updateAmneziaWGInbound/ AddInbound/DelInbound only ever updated the kernel interface via amneziawg.GetManager() -- they never called SetNeedRestart the way every other protocol's mutation path does (client_crud.go, inbound.go, etc. all do). injectAmneziawgEgress's TPROXY bridge inbound depends on InstanceFromInbound finding at least one qualifying peer plus RouteThroughXray, so an edit that flips that (first peer added, last one removed, RouteThroughXray toggled on) previously required a full panel restart before the bridge actually got created, with no error anywhere: the kernel interface would handshake fine, but traffic redirected into the bridge's TPROXY port went nowhere because nothing was listening there. diffInbounds/inboundUsesTproxy already correctly force a full restart for a brand new TPROXY inbound (bdee0a20) -- that part was never the bug. The gap was entirely upstream: nothing ever told Xray a resync was even needed. * fix(clients): reject AllowedIPs already used on another WireGuard/AmneziaWG inbound defaultWireguardClients/defaultAmneziaWGClients only ever checked uniqueness against their own inbound's client list, so two inbounds sharing a subnet (same protocol or not) could silently hand out or accept the same address -- the exact scenario behind a real duplicate-IP incident where a WireGuard and an AmneziaWG client both ended up on the same address. otherTunnelAllowedIPs now collects every address already claimed on every other tunnel inbound and folds it into both the auto-allocation pool and the manual-entry collision check, naming the other inbound in the error when it fires. * fix(frontend): add the missing AmneziaWG config download on the sub page The subscription page already gave WireGuard links their own "Config" block (copy/download/QR of the actual .conf, via wireguardConfigFromLink reversing the wireguard:// query params) but had no equivalent for AmneziaWG's vpn:// links -- its isWireguardLink gate never matched them, and no reverse-parse helper existed for this page specifically. Every other surface (InboundInfoModal, ClientInfoModal, ClientQrModal) already had this parity; this was the one page that didn't. Fixed by adding amneziawgConfigFromLink (inbound-link.ts), simpler than its WireGuard counterpart since a vpn:// payload already *is* the plain .conf text -- just base64url-decode it, no query-param reconstruction needed -- and wiring it into SubPage.tsx alongside the existing WireGuard block, reusing the same pages.clients.amneziaWgConfig label the other three surfaces already use. * fix(xray): force a full restart for password-auth SOCKS5 hot-apply Real production incident: editing a client under an AmneziaWG inbound left its embedded SOCKS5 relay's settings byte-different (a new account list), and Xray's gRPC remove+add hot swap silently dropped the account for a peer whose email contained non-ASCII characters -- its tunnel kept handshaking fine but all its traffic got rejected at the SOCKS5 layer, while every other peer on the same relay was unaffected. A full restart (reading the same JSON straight from disk) always produced the correct account list. socks isn't in userDiffableProtocols (that only covers vless/vmess/trojan's clients+email shape, not accounts+user), so any settings drift on this inbound fell through to the generic remove+add path. Forces a restart instead, the same defensive choice already made for REALITY and TPROXY -- scoped to auth:"password" specifically so the other, noauth SOCKS5 bridges (panel/node/mtproto egress) keep the cheaper hot path. * Fix Attach reusing one identity's address across wg/awg inbounds ClientService.Attach deliberately copies one identity's stored AllowedIPs into every WireGuard/AmneziaWG inbound it's attached to in the same call, so the same person gets the same tunnel address on every protocol they use. Its loop calls addInboundClient once per inbound, and each of those independently computes otherTunnelAllowedIPs -- so by the second inbound in the batch, the first inbound's just-written copy of this identity's own address looked like a cross-inbound collision against itself. Real production symptom this caused: detaching then re-attaching a client to both wg and awg failed with "wireguard: allowedIPs entry X is already used by a client on inbound 'awg' (#N)" -- the exact address the identity is supposed to keep, rejected as if it belonged to someone else. Add a selfEmails exclusion to otherTunnelAllowedIPs and populate it from the client(s) being processed at the one real call site. Safe unconditionally: ClientRecord.Email is globally unique, so a match can only ever be this same identity's own entry on a sibling inbound, never a genuine different client's address. Reproduced the underlying mechanism live (manual entry correctly rejected as a cross-inbound collision; fresh auto-allocation correctly avoided a used address) before writing the fix, to confirm the guard itself works and the bug is specifically in how Attach's per-inbound calls interact with it. * Attach: allocate fresh when re-attaching with no active tunnel The previous fix (82cc69f5) made Attach's own address-reuse correctly not collide with itself across inbounds -- but it still always reused an identity's stored AllowedIPs verbatim, even when that identity currently has zero WireGuard/AmneziaWG attachments at all. A real report from testing this live: an identity fully detached from both its wg and awg inbounds, then re-attached, got its old address back even though several lower addresses were free -- because nothing about being fully detached ever cleared the stored value Attach copies from. Add hasTunnelAttachment, checked once against the identity's CURRENT inbound set before Attach's loop runs: if none of its current inbounds is WireGuard/AmneziaWG, clear the stored AllowedIPs so this attach allocates fresh (matching what a brand-new client would get) instead of resurrecting an address nothing reserves anymore. Left alone when the identity already has an active tunnel elsewhere, so extending it to a second protocol still keeps a consistent address. * Fix TestOtherTunnelAllowedIPsExcludesSelfEmail's own test setup CI caught this: the "genuinely different client" (other@wg) was seeded onto the SAME inbound passed as excludeID, which otherTunnelAllowedIPs already excludes entirely regardless of the selfEmails fix -- so the assertion that its address is still reported could never have passed, proving nothing either way. Move it onto the sibling inbound alongside shared@id, which is what the test actually needs to exercise (two clients on one sibling, one excluded by email, one not). * Attach: never inherit an address that doesn't fit the target inbound hasTunnelAttachment (from the earlier fix, commit 51067f16) only asked "does this identity have ANY tunnel attachment", treating that as license to reuse its stored address verbatim on every inbound being attached. Real production case this missed: an identity's stored address came from WireGuard's own fallback subnet (10.0.0.0/24, used when that inbound has no other clients to infer a base from), then got attached to a second, AmneziaWG inbound configured for a completely different subnet (10.8.1.0/24). defaultAmneziaWGClients's already-set-AllowedIPs branch only checks for collisions, never subnet membership, so the mismatched address was accepted silently -- producing a peer that can never actually connect, since an AmneziaWG address must fall inside the kernel interface's own configured subnet to be routable at all. Add addressesFitAmneziaWGInbound, checked per inbound inside Attach's loop: if the inherited address doesn't fit the SPECIFIC inbound being attached, clear it just for that one so it gets a fresh, valid allocation instead, while other already-attached inbounds keep their existing values. WireGuard has no equivalent strict subnet requirement (allocateWireguardAddress can widen to a fallback pool for it), so this only ever constrains AmneziaWG targets. * Give WireGuard an explicit, admin-configurable subnet field WireGuard previously had no configurable subnet at all -- only an implicit one, either inferred from existing clients' own addresses (wireguardAllocationBase) or a hardcoded 10.0.0.0/24 fallback when none exist yet. AmneziaWG, by contrast, has always had a real server.subnetIp/subnetCidr field in its settings, editable in the UI. User request: give WireGuard the same treatment. Backend: explicitWireguardSubnetBase reads an optional subnetIp/ subnetCidr pair from the inbound's own settings JSON (mirroring AmneziaWG's defaultAmneziaWGSubnetBases). defaultWireguardClients checks it first; only when unset does it fall back to today's inference-from-existing-clients behavior, so an inbound saved before this field existed keeps working exactly as it always has. Frontend: subnetIp/subnetCidr added to WireguardInboundSettingsSchema and the inbound form (mirroring AmneziaWG's own field layout/labels), with a real default (10.0.0.0/24, the same value the backend already fell back to) seeded for newly created inbounds so the field starts populated and editable rather than blank. Translated across all 13 locales. This also structurally closes the class of bug fixed in 82cc69f5/291c47b3: with wg and awg subnets explicit and independently controllable, an admin who wants matching addresses across both protocols can configure them to actually agree, instead of one silently inheriting the other's incompatible range. * Split the client edit form's AllowedIPs into per-protocol fields A client attached to both WireGuard and AmneziaWG shared one AllowedIPs form field with a dynamically-switching label, so its two genuinely different addresses could never both be shown or edited correctly. Worse, Update/Create broadcast that one shared value to every attached wg/awg inbound with no subnet-fit check, so an ordinary edit save could silently overwrite one protocol's address with the other's -- the same bug class already fixed for Attach, but reachable from any client edit. model.Client gains an optional AllowedIPsByInbound map so a caller can send distinct values per inbound; Update/Create honor it and, when it's absent, clear a shared value that doesn't fit an AmneziaWG inbound's own subnet instead of writing it through. A new TunnelAllowedIPsByInbound read path feeds the real per-inbound address to the client edit form via GET, which now renders two separate, correctly-labeled fields whenever both protocols are attached (unchanged single dynamic field otherwise). * Regenerate openapi.json for the new allowedIPsByInbound field Follow-up to 878ee839: gen:zod (frontend/src/generated) was already regenerated and committed, but gen:api (frontend/public/openapi.json) wasn't, so CI's codegen drift check failed. * Fix build breakage from merging upstream main: Update() gained a limitHwid param Two of our own AllowedIPs tests (not present upstream, so the merge never flagged them as conflicting) still called the old 3-arg Update(inboundSvc, id, client) -- upstream's hardware-ID-limit feature added a required limitHwid parameter that every other caller in this package already passes. Also drop createDefaultInboundSettings from InboundsPage.tsx: the merge conflict resolution kept the import, but upstream's clone-payload refactor (buildClonePayload, inbound-clone.ts) already calls it internally now -- this file doesn't need it directly anymore. * Fix real bug: AmneziaWG clients rejected as "empty client ID" in 3 places Three switch statements on inbound.Protocol handle "wireguard" explicitly (checking client.PublicKey) but fall through to the default case for "amneziawg" (checking client.ID, which AmneziaWG clients never set -- they use PublicKey/Email like WireGuard, not the VMess/VLESS UUID field). This is what the 4 AllowedIPs tests were actually catching: UpdateInboundClient's newClientId derivation hit this same default branch, so every Update() on an AmneziaWG client returned "empty client ID" before ever reaching the AllowedIPs logic being tested. Fixed by adding "amneziawg" alongside "wireguard" in each switch: addInboundClient's per-client validation, UpdateInboundClient's newClientId derivation, and AddInbound's per-client validation (the third one wasn't hit by these tests, but has the identical bug -- creating a brand-new AmneziaWG inbound with a client attached would fail the same way). * refactor(amneziawg): rename Obfuscation20 to Obfuscation31, drop the dead mobile preset Mechanical rename ahead of the AmneziaWG 3.1 parameter work: the type, generator and prose all said 2.0, and the "mobile" generator preset was reachable only from its own test. No behavior change. * feat(amneziawg): AmneziaWG 3.1 obfuscation parameters (backend + generated schemas) Adds the 3.1 parameter surface to the inbound settings and both Go config emitters: I2-I5 signature packets, HeaderProtectionKey (base64 32-byte, shared server<->client), ContentPaddingAddition, the five handshake-timing randomization ranges (RekeyAfterTime/RekeyTimeout/RejectAfterTime/ KeepaliveTimeout/MaxHandshakeAttempts), and the RandomTrailers/ DisableCookies switches. Freshly generated sets fill everything except I2-I5 (matching Amnezia's own generator) with jittered ranges bracketing WireGuard's stock timing constants; every reject window starts >= 30s above the rekey window by construction. Empty fields stay off the wire, so blanking a field disables just that feature. Validation generalizes the H1-H4 range checker for the new uint32-range fields, requires min 1 on timers, cross-checks rekey-vs-reject, and demands a real 32-byte base64 header-protection key. The manager warns once per process when the installed awg tools predate 3.1 but an inbound uses 3.1 parameters (awg-quick rejects unknown keys with a generic error otherwise); apply still proceeds. Requires amneziawg-tools v3.1.20260812+ / module or amneziawg-go v3.1.20260814+ on the host. * feat(amneziawg): emit and randomize 3.1 parameters in the frontend Both client-config emitters (the vpn:// link builder and the clients-page .conf builder) now carry the 3.1 [Interface] lines in the same order as the Go emitters. The obfuscation randomizer moves out of InboundFormModal into a shared lib/xray/amneziawg-obfuscation.ts that also fills the new fields, and createDefaultAmneziawgInboundSettings switches from static values to that generator — a fresh inbound now really gets the unique fingerprint the docs promise instead of the same jc=5/jmin=10 set on every install. Schema parse-time defaults for the new fields stay ''/false on purpose: real values come only from the generator, so resaving an inbound never mutates its stored parameters. A new parity test pins the hand-written AmneziawgServerSchema to the generated ServerSettings key set, so a field added on one side can no longer silently vanish from configs. * feat(amneziawg): 3.1 form fields and translations Inbound form gains inputs for I2-I5, HeaderProtectionKey (filled by the existing obfuscation Regenerate button), ContentPaddingAddition, the five timing ranges, and the RandomTrailers/DisableCookies switches; the MTU input picks up the min=1 its schema already enforced. All 13 locales get the 19 new keys and drop the "2.0" branding from the s3/s4/i1 labels. * docs(amneziawg): document 3.1 parameters; install.sh kernel/version notes The AmneziaWG page's obfuscation section moves from the 2.0 to the 3.1 parameter set: table rows for I2-I5, HeaderProtectionKey, ContentPaddingAddition, the timing-randomization ranges and the RandomTrailers/DisableCookies switches, a requirements callout (tools v3.1.20260812+, module/awg-go v3.1.20260814+, Linux 6.7+ for the DKMS path), and a sample client .conf that matches what the panel actually emits (including the DNS defaults and PersistentKeepalive it always had). install.sh warns before a DKMS build on a pre-6.7 kernel and after any install that left pre-3.1 amneziawg-tools on PATH. Also updates the hosts API operation paths ({id} -> {groupId}) in the stale ru/zh/fa reference pages: syncing docs/public/openapi.json for the new AmneziaWG schema fields surfaced that rename, which had never been copied over, and the docs build fails on paths missing from the spec. * fix(amneziawg): reject control characters and canonicalize 3.1 range values Adversarial review of the 3.1 work surfaced a validation gap: base64.DecodeString silently ignores CR/LF, so a header-protection key that picked up a line wrap in transit decoded to a valid 32 bytes, passed validation, and was emitted verbatim into every client config — where the orphan second line breaks the import while the server (whose emitter strips control chars) keeps running with the correct key. The key and range validators now reject control characters outright. Also from the same review: range values are canonicalized on save ("110 - 140" -> "110-140", whitespace-only collapses to feature-off, closing a case where the server conf rendered an invalid blank-value line the client emitters omitted); the rekey/reject invariant is now enforced against WireGuard's 120s/180s defaults when only one side is set; and the structural fingerprint joins on "\n" instead of "|", which is a legal I1-I5 character and made adjacent free-text fields join-ambiguous. * fix(install): resolve latest release tag via web redirect to dodge API rate limits The non-interactive install smoke test resolved the release version through the unauthenticated GitHub API (api.github.com/.../releases/latest), which allows only 60 requests/hour per IP. The test installs twice in one run, and on shared CI runner IPs the second call gets rate-limited, returns no tag_name, and install.sh treats an empty version as fatal (exit 1) — the same "Failed to fetch x-ui version" real users hit behind CGNAT/shared addresses. resolve_latest_tag() now reads the tag from the github.com releases/latest web redirect (not subject to the API rate limit), falling back to the API only if the redirect yields nothing. Verified with the real deploy/test/smoke-noninteractive.sh (two installs, both green). * fix(amneziawg): three review findings on #6105, plus a comment trim 1. A peer's allowedIPs reached the generated .conf unvalidated and unsanitized, unlike email/publicKey/preSharedKey which normalizeAmneziaWGSettings already guards. A newline in an entry let a following "[Interface]" re-open the interface section, whose "PostUp = ..." awg-quick then runs as root on the next apply. Reproduced end to end against generateServerConfig. The save path now rejects and canonicalizes through normalizeWireguardAllowedIPs, and the render path sanitizes as a backstop for rows predating the validation (an upgrade, a restored backup, a direct DB edit). H1-H4 get the same render-time sanitize, and the two NIC name fields a plausibility check, since stripping control characters alone would still let a shell metacharacter into a root-executed PostUp line. 2. EgressPortForInbound is 63100 + inbound id, so an id past 2435 derives a port above 65535 -- and Xray rejects the whole generated config over one invalid port, taking every other protocol down with it. It now reports ok=false past the range, and both the Xray bridge and its TPROXY rules are skipped instead of emitting an impossible port. 3. The downloadable AmneziaWG .conf read ClientRecord.allowedIPs, a single shared column that holds the WireGuard address for an identity attached to both protocols -- the exact ambiguity tunnelAllowedIPs was added to resolve for the edit form. The info and QR modals already hydrate that field, so they now pass this inbound's own address to the builder. Also trims the comment blocks in the files touched here to the 2-line guidance in CLAUDE.md: internal/amneziawg alone carried 423 comment lines in over-long blocks against 118 for the comparable internal/mtproto, and is now at 110. Every non-obvious constraint is kept (the kernel S1/S2 rule, why PostDown is best-effort, why grep -c and not -q, why the fingerprints split three ways); the narration is gone. Two hot_diff.go comments pointed at an internal/amneziawgnet package and an injectAmneziawgnetSocks function that exist nowhere in the tree; the checks themselves are unchanged. * feat(logs): add an AmneziaWG log view to the overview The overview has an access-log view for Xray but nothing for AmneziaWG, so when a tunnel misbehaves there is no way to see it from the panel at all. A kernel tunnel logs no per-request lines, so the equivalent view is built from the two things it does expose: - Live per-peer activity from `awg show <iface> dump`, joined to the client email through the desired peer set: last handshake, endpoint, allowed IPs, cumulative transfer and online state, newest handshake first. - The panel's own AmneziaWG event lines (interface up/down, awg-quick failures, the pre-3.1 tools warning), which are what actually explain a peer being absent from the table. POST /panel/api/server/amneziawglogs/:count serves both, with the same count + filter contract GetXrayLogs uses, and the modal mirrors XrayLogModal's toolbar, auto-update, mobile cards and download. The action-bar button is gated on a new status.amneziawg.configured, which stays true while an inbound exists but its interface is down -- exactly when the event lines matter. Verified against a running panel: the endpoint returns the peer table and real event lines ("awg/awg-quick not found on PATH", "create config dir: permission denied"), and count and filter both narrow as documented. One of those lines surfaced a Debugf that had been rendering as "for inbound1:amneziawg:"; fixed here since it is now user-visible. * fix(amneziawg): stop double-counting a routed inbound's traffic injectAmneziawgEgress tags its Xray bridge with the AmneziaWG inbound's own tag, so the stock Routing page can target it. Xray therefore reports that bridge's bytes under the inbound's tag, and XrayTrafficJob feeds them to AddTraffic -- which accumulates -- on top of the same bytes AmneziaWGJob already reported from `awg show dump`. An inbound with routeThroughXray on counted roughly twice its real traffic, which also inflates the quota checks that read the same counters. The awg counters are the complete measure: every peer, whether or not TPROXY routed it, and the same wire bytes the per-client totals are built from, so they stay and the Xray rows are dropped. Per-client stats were never affected -- a dokodemo-door bridge has no per-user identity, so Xray emits no user>>>email rows for it. Filtering happens before every consumer, so the DB totals, the external traffic inform and the dashboard's live speed all read one source per inbound. The set of bridge tags now comes from a predicate shared with injectAmneziawgEgress itself, with a test that pins the two together -- naming one tag too few doubles the traffic again, one too many makes real traffic vanish. * fix(amneziawg): align the three .conf emitters on one peer field order The panel builds an AmneziaWG client .conf in three independent places, and they disagreed: buildAmneziaWGClientConfig put PresharedKey right after PublicKey (wg-quick(8)'s own order, and what both WireGuard emitters on the clients side already use), while genAmneziaWGConfig and the Go amneziaWGConfigText put it after Endpoint. A user comparing a subscription link against a downloaded .conf sees the difference immediately, and the generators are exactly the kind of parallel implementation CLAUDE.md warns about drifting. Moves the two outliers onto the wg-quick order. Also drops the stray trailing newline that only appeared when PersistentKeepalive was set, so a config now always ends on its last set field whichever that is -- the same shape all three emitters produce for the same client. Parsing is unaffected either way (the format is order-insensitive, and the AmneziaVPN app reads it as a flat key-value bag), so this changes only the rendered text. Adds a test on each side that pins the peer block's field order, since nothing previously asserted it. * refactor(amneziawg): switch to the embedded amneziawg-go/gVisor architecture Replaces the kernel-module (DKMS) + awg-quick + TPROXY backend with the fork's own embedded design: amneziawg-go runs in-process over a userspace gVisor netstack, and each peer's decapsulated traffic relays into its own loopback Xray SOCKS5 inbound, so Xray's native stats/sniffing/routing work for free instead of through hand-rolled bridges. No kernel module, no DKMS, no Secure Boot conflicts, works the same in a container as on bare metal. - internal/amneziawgnet: new package (Device/UAPI, gVisor netstack, TCP/UDP forwarding, SOCKS5 relay, peer identity, IPv6 host-alias egress identity, per-client port-forwarding) - amneziawg-go v3.1.20260814 + gvisor. - internal/amneziawg: keep the reusable protocol-shape types/validation (Instance/Peer/Obfuscation, InstanceFromInbound); drop the OS-shellout half (awg-quick, TPROXY policy routing, NDP proxy, peer-stats parsing). - internal/web/service: rewire the 5 integration points (job, runtime, client-apply, web shutdown, xray config) from the old manager to the new one; the AmneziaWG log view is rebuilt on the embedded Device's own UAPI dump (extended to carry endpoint/AllowedIPs) instead of `awg show dump`. - install.sh: drop DKMS/ndppd/TPROXY/Secure-Boot installer code (~250 lines) - an entire recurring class of installer fragility goes away. - frontend: drop the now-meaningless routeThroughXray toggle (the relay is always on); keep the field in the Zod schema, unexposed, so it isn't silently stripped from stored settings on next save - two regression tests deliberately depend on the Go struct still carrying it. - docs/i18n: rewrite amneziawg.mdx for the new architecture; drop the dead routeThroughXray translation keys across all 13 locales. Real production throughput (embedded core datapath, isolated bench, same box the kernel-module path was measured on): ~296 Mbit/s up, ~640 Mbit/s down, vs. 414.69 MB/s (~3.3 Gbit/s) for the kernel module on the same hardware - a real gap, tempered by this being single-stream/no-SOCKS5-hop and most VPN traffic being latency-bound rather than throughput-saturating. * fix(amneziawg): restore the branch's own Obfuscation31 shape + 2 CodeQL findings The previous push's wholesale-copy of types.go/params.go from the fork's main branch pulled in that branch's own independent (and incompatible) naming for the same AWG 3.1 feature set: Obfuscation20/GenerateObfuscation20 instead of this branch's already-shipped Obfuscation31/GenerateObfuscation31, and a missing CanonicalizeUintRange -- broke every Go CI job (the whole matrix fails to compile when any one package doesn't, which is why govulncheck/ golangci/postgres-durable-first/race all failed identically, not just go-test). Restores params.go/params_test.go verbatim from this branch's own last commit (a strict superset of validation: it already cross-checks rekey vs. reject timing windows, which the copied version never did) and folds the 3.0/3.1 fields (HeaderProtectionKey, ContentPaddingAddition, the 5 timing fields, RandomTrailers/DisableCookies) into Obfuscation31 itself, matching the original struct exactly instead of as separate top-level Instance fields. instance.go, the two amneziawgnet call sites, and 7 amneziawgnet test files updated to match. Also drops the one test (sanitizeConfigValue) that only ever served the retired kernel-module .conf writer -- correctly not ported, so the test testing it shouldn't have been copied either. Also fixes 2 CodeQL findings the same push surfaced: a clamped uint64->int64 conversion for the new log view's live byte counters (server.go), and an unneeded len+len sum feeding a slice pre-size in the v6-egress outbound merge (xray.go) -- append already grows correctly without it. * chore(amneziawg): regenerate frontend schemas for updated doc comments npm run gen was missed after the previous commit's types.go doc-comment edits (Obfuscation20 -> Obfuscation31, ValidateHeaderProtection -> ValidateObfuscation in the prose) -- openapigen bakes those comments into the generated schema's description field, so the committed frontend/src/generated/schemas.ts and openapi.json still had the old wording. codegen's git-diff-exit-code check caught it correctly. * fix(amneziawg): narrow 2 test fixtures that collided with MaxForwardedPorts TestCheckForwardedPortsConflict_CollidesWithEnabledInboundPort and ..._NoCollisionWhenPortsDontOverlap used "8000-8100"/"9000-9100" as their ForwardedPorts fixture -- 101 ports each, one over MaxForwardedPorts (100). The cap check (checkForwardedPortsConflict, added this session alongside the SOCKS-phantom-port check) fires first, so both tests got "more than 100 forwarded ports" instead of ever reaching the collision logic they're actually testing. The cap itself has its own dedicated boundary test already; these two just needed a narrower range that still covers/misses port 8080 as intended -- 8075-8085 and 9075-9085, 11 ports each. * fix(amneziawg): checkAmneziawgnetSocksConflict had no receiver in its new home My merge-conflict resolution kept this as a method call (s.checkAmneziawgnetSocksConflict) inside checkPortConflictTx, a plain function with no *InboundService receiver -- upstream's #6225 fix moved the port-conflict check out of the (s *InboundService) method and into this new tx-scoped free function, and I didn't notice the call site needed to change shape too. CI caught it immediately (undefined: s); nothing in this specific package can be locally verified past internal/database's own unrelated, pre-existing CGO build issue on this dev machine. Since the signature had to change either way, folded in the fix already flagged as a separate follow-up: checkAmneziawgnetSocksConflict now takes the caller's db handle instead of fetching its own via database.GetDB(), so it actually runs inside the same serialized transaction #6225 introduced -- previously it sat right next to that race fix without benefiting from it. * fix: address the review findings on the embedded AmneziaWG PR 5 blocking findings: - Floor S3/S4 at 12 in both obfuscation generators (Go and frontend) and reject a hand-edited value below that when HeaderProtectionKey is set -- IpcSet requires it, and ~39% of previously-generated sets violated it silently. - Guard PrivateKey/PrimaryDNS/SecondaryDNS/remark against newline injection in the AmneziaWG .conf builder (both the Go subscription-link path and the frontend downloadable-config path) -- unguarded, any of them could inject an arbitrary config line into a subscriber's client. - Bound the derived AmneziaWG SOCKS relay port to <= 65535 once an inbound's id is known, and check the reverse direction (does the relay port collide with an existing inbound's port) on both create and update -- previously only port -> relay collisions were checked, not relay -> port. - Gate injectAmneziawgV6Egress on the same V6AliasesActive predicate desiredV6Aliases already uses, so the two can't disagree about whether a peer's IPv6 identity is actually active at the OS level. 2 minor findings: - Fix the forwarded-ports cap check's off-by-one (a spec covering exactly the cap was rejected as if it were over it). - Correct docker-compose.yml's stale comment describing the retired DKMS/kernel-module architecture. * chore: retrigger CI build (armv5) failed on a transient Go module proxy network error (INTERNAL_ERROR stream reset on sagernet/sing), unrelated to this PR's changes. * docs: fix doc comments still describing the retired DKMS/awg-quick design A few doc comments (and one illustrative test log line) survived the embedded-architecture cutover unchanged and now contradict the code they sit next to: - internal/amneziawg/types.go's package comment claimed this package still owns a Manager that reconciles OS-level interfaces via awg-quick/DKMS -- that Manager was removed; the reconcile loop lives in internal/amneziawgnet now, and this package is protocol-shape-only. - internal/amneziawg/params.go's ValidateObfuscation/ValidateConfigValue comments cited "awg-quick up" / "awg-quick executes as root" as the reason to validate -- the server itself never calls awg-quick in this architecture; the same value still reaches a real rendered .conf that a client app or an admin's own awg-quick CLI applies downstream, so the validation is still warranted, just for a different consumer. Mirrored the same fix in inbound_amneziawg.go's matching comment and its test's comment. - internal/amneziawgnet/manager.go's Manager doc comments (x3) pointed readers at "internal/amneziawg.Manager" for comparison -- that type no longer exists in this diff at all. Repointed at internal/mtproto.Manager, the pattern this was actually modeled on and the one that's still real. - Swapped one test's illustrative "awg-quick up awg2 failed" log line for a message shaped like this architecture's actual amneziawgnet logging, so a reader skimming the test doesn't wonder whether the server still shells out to awg-quick. No behavior change. * fix(docs): re-run codegen for xray-settings.mdx after conflict merge The automated conflict-resolution hand-merge for this generated file was content-correct but didn't byte-match a real regen (different YAML long-string folding style). Re-ran npm run gen + docs' gen:api and kept that canonical output instead. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): drop the dead access-log email backfill amneziawgEmailIndex keyed peers by "<tag>|<tunnel IP>", a scheme built for the retired TPROXY bridge where the peer's decapsulated tunnel address survived as the access log's from-address. The embedded architecture relays through a loopback SOCKS5 dial, so every AmneziaWG log line's from-address is 127.0.0.1:<ephemeral> and the lookup could never match: the index was rebuilt on every log view just to miss. Remove the index, its GetXrayLogs wiring and its test. If per-line emails are wanted back, the relay would have to publish a local-port->email registry for the viewer to resolve loopback sources. * fix(api): generate AmneziaWGLogs/PeerActivity schemas instead of hand-writing them The amneziawglogs endpoint's response structs were missing from openapigen's StructAllow, so they were silently absent from every generated schema/example, the endpoints.ts entry carried a hand-written response, and AmneziaWGLogModal.tsx duplicated the shapes as local interfaces - the exact drift the allowlist rule exists to prevent. Allowlist both structs with example tags, point the endpoint at the generated schema, import the generated types in the modal, and sync docs/public/openapi.json. * chore(amneziawg): drop the unreferenced quiccapture package Nothing imports internal/amneziawg/quiccapture and no route exposes it; its package doc justifies the code as a port of frontend/src/lib/xray/i1Generators.ts, which does not exist in this repository, and promises an API round-trip that also does not exist. 1,110 lines of unreachable code with misleading provenance claims. Revert this commit to bring the package back when the live-capture I1 feature and its frontend counterpart actually land. * fix(clients): re-run cross-inbound conflict checks on the serialized writer The new client-level checks - cross-inbound AllowedIPs collisions and AmneziaWG forwardedPorts conflicts - read a fresh DB snapshot, decide, and only then enter runSerializedTx, while lockInbound only serializes writers on the SAME inbound. Two concurrent client creates on two different tunnel inbounds both passed the read and both committed, yielding two peers with one address: the exact check-then-claim race81cfd857(#6225) closed for AddInbound, which this PR's own checkAmneziawgnetSocksReverseConflict already cites. Keep the pre-tx pass for fail-fast UX and re-validate inside the transaction, where the single writer makes the answer authoritative. The race test drives two goroutines at two inbounds and demands exactly one winner; it fails with committed=2 when the in-tx re-check is removed. * fix(amneziawg): hot-apply depletion disables like mtproto does applyTrafficMutationBatch special-cases MTProto so a quota/expiry depletion cuts the sidecar immediately, but AmneziaWG fell through to runtime AddUser/RemoveUser - explicit no-ops for this protocol - so a depleted peer kept tunneling until the next 10s reconcile tick. Route it through applyLocalAmneziaWG, whose own contract (re-read committed settings, filter depleted clients, push to the interface) is exactly this case; the comment claiming it mirrors applyLocalMtproto is now true for the depletion path too. * fix(amneziawg): persist cleared DNS fields instead of resurrecting defaults PrimaryDNS/SecondaryDNS marshaled with omitempty, so clearing them persisted settings with no key at all - and the frontend re-parses stored settings through a Zod schema whose .default('8.8.8.8') / .default('8.8.4.4') fire on missing keys, silently repopulating the form on every load and re-persisting the defaults on the next save. Blank is a documented, meaningful state (no DNS line in client configs); drop omitempty so a cleared value survives the round-trip. The regression test normalizes a server block with cleared DNS and fails when the keys are dropped. * fix(amneziawg): accept cleared numeric obfuscation/subnet fields in the form AntD InputNumber emits null when cleared, Zod .default() only replaces undefined, and unlike wireguard.ts - whose optionalClearedInt comment documents exactly this failure mode - the AmneziaWG schema declared subnetCidr and jc/jmin/jmax/s1-s4 as bare z.number() defaults. Clearing any of the eight fields made safeParse reject the null and block the save until the user retyped a value. Absorb null into undefined while keeping each field's schema default, so a cleared field refills its documented default and legacy blobs with absent keys behave as before. * fix(amneziawg): guard the third .conf emitter against newline injection The review-round fix added the newline guard to amneziaWGConfigText (Go) and buildAmneziaWGClientConfig, but genAmneziaWGConfig in inbound-link.ts - the third of the three emitters its own comment says must not drift - still rendered privateKey/primaryDns/secondaryDns/remark unescaped, so a newline there injected a config line (e.g. a rogue PostUp) into the inbound form's downloaded .conf. Add the same guard, plus the regression tests the original fix shipped without: all four fields on the Go and both frontend emitters go red if any guard is removed. * test(amneziawg): pin the S3/S4 floors the TS drift guard claims to mirror The test's docstring says it mirrors internal/amneziawg/params_test.go, but it asserted S3>=8/S4>=4 while the Go test and both generators pin 12/12 - the floor ValidateObfuscation enforces whenever a header protection key is set, which this generator always sets. A regression narrowing the TS floors into 8-11/4-11 would have passed the drift guard and produced configs the backend rejects on save. * docs: restore the pia repo-map entry and document the AmneziaWG subsystem Merging main dropped CLAUDE.md's internal/pia/ bullet (added by #6272) while resolving the repo-map conflict - the package itself is untouched. Restore it, add the missing map entries for the two packages this branch introduces (internal/amneziawg/, internal/amneziawgnet/), bump the cron count, and give amneziawg_job its row in architecture.md's 5.4 table. * chore(amneziawg): correct comments stranded by the architecture pivot ae77c7e9's cutover to the embedded gVisor path deleted the kernel-module code but left several comments describing it in the present tense: hot_diff.go cited the removed service.amneziawgEgressStreamSettings and wrongly claimed AmneziaWG is the only sockopt.tproxy source (tunnel's TProxy mode is the live one the guard protects), socks_config.go pointed at the deleted EgressBasePort/EgressPortForInbound, manager.go referred to the deleted Manager and its fingerprinting as live code, web.go's cron registration claimed the job scrapes traffic (its own doc says it does not), and types.go capped ContentPaddingAddition at uint16 when validation and upstream both use uint32. * style(lint): satisfy gofumpt/goimports so make verify is green json_service.go's two 'Tag: "proxy"}' literals came in with main's owncc245a90formatting commit and fail the repo's gofumpt gate for everyone; the import grouping in inbound_amneziawg.go is from the serialized-writer fix on this branch. --------- Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> Co-authored-by: Sanaei <ho3ein.sanaei@gmail.com> Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
2253 lines
122 KiB
JSON
2253 lines
122 KiB
JSON
{
|
||
"username": "Username",
|
||
"password": "Password",
|
||
"login": "Log In",
|
||
"confirm": "Confirm",
|
||
"cancel": "Cancel",
|
||
"close": "Close",
|
||
"save": "Save",
|
||
"logout": "Log Out",
|
||
"create": "Create",
|
||
"add": "Add",
|
||
"remove": "Remove",
|
||
"update": "Update",
|
||
"copy": "Copy",
|
||
"copied": "Copied",
|
||
"more": "more",
|
||
"download": "Download",
|
||
"regenerate": "Regenerate",
|
||
"jsonEditor": "JSON editor",
|
||
"downloadImage": "Download Image",
|
||
"sort": "Sort",
|
||
"remark": "Remark",
|
||
"enable": "Enabled",
|
||
"protocol": "Protocol",
|
||
"search": "Search",
|
||
"filter": "Filter",
|
||
"all": "All",
|
||
"from": "From",
|
||
"to": "To",
|
||
"done": "Done",
|
||
"loading": "Loading...",
|
||
"refresh": "Refresh",
|
||
"clear": "Clear",
|
||
"second": "Second",
|
||
"minute": "Minute",
|
||
"hour": "Hour",
|
||
"day": "Day",
|
||
"check": "Check",
|
||
"indefinite": "Indefinite",
|
||
"unlimited": "Unlimited",
|
||
"none": "None",
|
||
"qrCode": "QR Code",
|
||
"info": "More Information",
|
||
"edit": "Edit",
|
||
"delete": "Delete",
|
||
"reset": "Reset",
|
||
"noData": "Nothing here yet",
|
||
"copySuccess": "Copied successfully",
|
||
"sure": "Sure",
|
||
"encryption": "Encryption",
|
||
"transmission": "Transmission",
|
||
"host": "Host",
|
||
"path": "Path",
|
||
"camouflage": "Obfuscation",
|
||
"status": "Status",
|
||
"enabled": "Enabled",
|
||
"disabled": "Disabled",
|
||
"depleted": "Ended",
|
||
"depletingSoon": "Depleting",
|
||
"offline": "Offline",
|
||
"online": "Online",
|
||
"domainName": "Domain Name",
|
||
"monitor": "Listen IP",
|
||
"certificate": "Digital Certificate",
|
||
"fail": "Failed",
|
||
"comment": "Comment",
|
||
"success": "Success",
|
||
"lastOnline": "Last Online",
|
||
"lastSubFetch": "Last Subscription Fetch",
|
||
"getVersion": "Get Version",
|
||
"install": "Install",
|
||
"clients": "Clients",
|
||
"usage": "Usage",
|
||
"twoFactorCode": "Code",
|
||
"remained": "Remaining",
|
||
"security": "Security",
|
||
"emptyDnsDesc": "No added DNS servers.",
|
||
"emptyFakeDnsDesc": "No added Fake DNS servers.",
|
||
"emptyBalancersDesc": "No added balancers.",
|
||
"somethingWentWrong": "Something went wrong",
|
||
"subscription": {
|
||
"title": "Subscription info",
|
||
"subId": "Subscription ID",
|
||
"email": "Email",
|
||
"status": "Status",
|
||
"downloaded": "Downloaded",
|
||
"uploaded": "Uploaded",
|
||
"expiry": "Expiry",
|
||
"totalQuota": "Total quota",
|
||
"individualLinks": "Individual links",
|
||
"active": "Active",
|
||
"inactive": "Inactive",
|
||
"unlimited": "Unlimited",
|
||
"noExpiry": "No expiry",
|
||
"copyAllConfigs": "Copy All Configs",
|
||
"copyAllConfigsCopied": "All configs copied"
|
||
},
|
||
"menu": {
|
||
"theme": "Theme",
|
||
"dashboard": "Overview",
|
||
"inbounds": "Inbounds",
|
||
"clients": "Clients",
|
||
"groups": "Groups",
|
||
"nodes": "Nodes",
|
||
"hosts": "Hosts",
|
||
"settings": "Panel Settings",
|
||
"xray": "Xray Configs",
|
||
"routing": "Routing",
|
||
"outbounds": "Outbounds",
|
||
"apiDocs": "API Docs",
|
||
"donate": "Donate",
|
||
"docs": "Documentation",
|
||
"openMenu": "Open menu",
|
||
"pinSidebar": "Pin sidebar",
|
||
"unpinSidebar": "Unpin sidebar",
|
||
"subFormats": "Sub Formats"
|
||
},
|
||
"pages": {
|
||
"login": {
|
||
"hello": "Hello",
|
||
"title": "Welcome",
|
||
"loginAgain": "Your session has expired, please log in again",
|
||
"toasts": {
|
||
"invalidFormData": "The input data format is invalid.",
|
||
"emptyUsername": "Username is required",
|
||
"emptyPassword": "Password is required",
|
||
"wrongUsernameOrPassword": "Invalid username or password or two-factor code.",
|
||
"successLogin": "You have successfully logged into your account."
|
||
}
|
||
},
|
||
"index": {
|
||
"cpu": "CPU",
|
||
"swap": "Swap",
|
||
"storage": "Storage",
|
||
"memory": "RAM",
|
||
"xrayStatus": "Xray",
|
||
"stopXray": "Stop",
|
||
"restartXray": "Restart",
|
||
"xraySwitch": "Version",
|
||
"xrayUpdates": "Xray Updates",
|
||
"xraySwitchClickDesk": "Choose carefully, as older versions may not be compatible with current configurations.",
|
||
"updatePanel": "Update Panel",
|
||
"panelUpdateDesc": "This will update 3X-UI itself to the latest release and restart the panel service.",
|
||
"currentPanelVersion": "Current panel version",
|
||
"latestPanelVersion": "Latest panel version",
|
||
"panelUpToDate": "Panel is up to date",
|
||
"devChannel": "Dev channel",
|
||
"devChannelWarning": "Dev builds track every commit on main and aren't stable releases — there is no automatic downgrade.",
|
||
"currentCommit": "Current commit",
|
||
"latestCommit": "Latest commit",
|
||
"updateChannelChanged": "Update channel changed",
|
||
"xrayStatusUnknown": "Unknown",
|
||
"xrayStatusRunning": "Running",
|
||
"xrayStatusStop": "Stopped",
|
||
"xrayStatusError": "Error",
|
||
"systemHistoryTitle": "System History",
|
||
"historyTitleCpu": "CPU Usage",
|
||
"historyTitleMem": "Memory Usage",
|
||
"historyTitleNetwork": "Network Bandwidth",
|
||
"historyTitlePackets": "Network Packets",
|
||
"historyTitleDisk": "Disk I/O",
|
||
"historyTitleOnline": "Online Clients",
|
||
"historyTitleLoad": "System Load Average (1m / 5m / 15m)",
|
||
"historyTitleConnections": "Active Connections (TCP / UDP)",
|
||
"historyTitleDiskUsage": "Disk Space Usage",
|
||
"historyTabBandwidth": "Bandwidth",
|
||
"historyTabPackets": "Packets",
|
||
"historyTabDisk": "Disk I/O",
|
||
"historyTabOnline": "Online",
|
||
"historyTabLoad": "Load",
|
||
"historyTabConnections": "Connections",
|
||
"historyTabDiskUsage": "Disk Usage",
|
||
"xrayMetricsTitle": "Xray Metrics",
|
||
"xrayTitleHeap": "Allocated Heap Memory",
|
||
"xrayTitleSys": "Memory Reserved from OS",
|
||
"xrayTitleObjects": "Live Heap Objects",
|
||
"xrayTitleGcCount": "Completed GC Cycles",
|
||
"xrayTitleGcPause": "GC Pause Duration",
|
||
"xrayTitleObservatory": "Outbound Connection Health",
|
||
"xrayTabHeap": "Heap",
|
||
"xrayTabSys": "Sys",
|
||
"xrayTabObjects": "Objects",
|
||
"xrayTabGcCount": "GC Count",
|
||
"xrayTabGcPause": "GC Pause",
|
||
"xrayTabObservatory": "Observatory",
|
||
"xrayMetricsDisabled": "Xray metrics endpoint not configured",
|
||
"xrayMetricsHint": "Add a top-level metrics block to the xray config with tag metrics_out and listen 127.0.0.1:11111, then restart xray.",
|
||
"xrayObservatoryEmpty": "No observatory data yet",
|
||
"xrayObservatoryHint": "Add an observatory block to the xray config listing the outbound tags to probe, then restart xray.",
|
||
"xrayObservatoryTagPlaceholder": "Select outbound",
|
||
"xrayObservatoryAlive": "Alive",
|
||
"xrayObservatoryDead": "Down",
|
||
"xrayObservatoryLastSeen": "Last seen",
|
||
"xrayObservatoryLastTry": "Last try",
|
||
"connectionCount": "Connection Stats",
|
||
"ipAddresses": "IP Addresses",
|
||
"toggleIpVisibility": "Toggle visibility of the IP",
|
||
"overallSpeed": "Overall Speed",
|
||
"upload": "Upload",
|
||
"download": "Download",
|
||
"sent": "Sent",
|
||
"received": "Received",
|
||
"xraySwitchVersionDialog": "Do you really want to change the Xray version?",
|
||
"xraySwitchVersionDialogDesc": "This will change the Xray version to #version#.",
|
||
"xraySwitchVersionPopover": "Xray updated successfully",
|
||
"panelUpdateDialog": "Do you really want to update the panel?",
|
||
"panelUpdateDialogDesc": "This will update 3X-UI to #version# and restart the panel service.",
|
||
"panelUpdateStartedPopover": "Panel update started",
|
||
"panelUpdateFailedTitle": "Panel update failed",
|
||
"panelUpdateFailedDesc": "The update did not finish successfully. Check the server logs, or run 'x-ui update' from the command line.",
|
||
"panelUpdateUnknownTitle": "Couldn't confirm the update finished",
|
||
"panelUpdateUnknownDesc": "The panel didn't report a result in time. Reload to check the current version, or check the server logs.",
|
||
"geofileUpdateDialog": "Do you really want to update the geofile?",
|
||
"geofileUpdateDialogDesc": "This will update the #filename# file.",
|
||
"geofilesUpdateDialogDesc": "This will update all geofiles.",
|
||
"geofilesUpdateAll": "Update all",
|
||
"geofileUpdatePopover": "Geofile updated successfully",
|
||
"geodataTitle": "Geodata Auto-Update",
|
||
"geodataHint": "Xray downloads these files on schedule and hot-reloads them without a restart. URLs must be HTTPS. Each file must already exist in the bin folder once before Xray can update it.",
|
||
"geodataCron": "Schedule (cron)",
|
||
"geodataOutbound": "Download through outbound (optional)",
|
||
"geodataFile": "File name",
|
||
"geodataAddFile": "Add file",
|
||
"geodataSaveRestart": "Save & Restart Xray",
|
||
"geodataConfirmTitle": "Save geodata settings?",
|
||
"geodataConfirmContent": "This updates the Xray config template and restarts Xray.",
|
||
"geodataInvalidUrl": "Each file needs an HTTPS URL.",
|
||
"geodataInvalidFile": "File names must be plain names like geosite_custom.dat (no paths).",
|
||
"geodataInvalidCron": "Cron must have 5 fields, e.g. 0 4 * * *",
|
||
"geodataEmpty": "No files configured. Reference files in routing rules as ext:geosite_custom.dat:category.",
|
||
"dontRefresh": "Installation is in progress, please do not refresh this page",
|
||
"logs": "Logs",
|
||
"accessLogs": "Access Logs",
|
||
"autoUpdate": "Auto Update",
|
||
"amneziawgLogs": "AmneziaWG Logs",
|
||
"amneziawgHandshake": "Last Handshake",
|
||
"amneziawgInterface": "Interface",
|
||
"amneziawgInbound": "Inbound",
|
||
"amneziawgEndpoint": "Endpoint",
|
||
"amneziawgIdle": "Idle",
|
||
"amneziawgEvents": "Events",
|
||
"amneziawgNoPeers": "No AmneziaWG peers are currently up",
|
||
"amneziawgNoEvents": "No AmneziaWG events recorded yet",
|
||
"config": "Config",
|
||
"backupTitle": "Backup & Restore",
|
||
"exportDatabase": "Back Up",
|
||
"exportDatabaseDesc": "Click to download a .db file containing a backup of your current database to your device. The same file can also be restored into a panel running on PostgreSQL.",
|
||
"importDatabase": "Restore",
|
||
"importDatabaseDesc": "Click to select and upload a .db backup or a migration dump (.dump) from your device to restore your database.",
|
||
"importDatabaseSuccess": "The database has been successfully imported.",
|
||
"importDatabaseError": "An error occurred while importing the database.",
|
||
"readDatabaseError": "An error occurred while reading the database.",
|
||
"getDatabaseError": "An error occurred while retrieving the database.",
|
||
"getConfigError": "An error occurred while retrieving the config file.",
|
||
"backupPostgresNote": "This panel runs on PostgreSQL. Back Up downloads a pg_dump archive (.dump) and Restore loads it back with pg_restore. Restore also accepts a SQLite database (.db) or a SQLite migration dump and imports its data into PostgreSQL. The server needs the PostgreSQL client tools (pg_dump and pg_restore) installed.",
|
||
"exportDatabasePgDesc": "Click to download a PostgreSQL dump (.dump) of your current database to your device.",
|
||
"importDatabasePgDesc": "Click to select and upload a PostgreSQL backup (.dump), a SQLite database (.db), or a SQLite migration dump to restore your database. This replaces all current data.",
|
||
"migrationDownload": "Download Migration",
|
||
"migrationDownloadPgDesc": "Click to download a .db SQLite database built from your PostgreSQL data, ready to run this panel on SQLite.",
|
||
"avg": "avg",
|
||
"peak": "peak",
|
||
"free": "free",
|
||
"openSockets": "open sockets",
|
||
"throughputSub": "Interface total",
|
||
"avgWindow": "Avg over window",
|
||
"healthWarm": "{list} — running warm",
|
||
"healthCritical": "{list} — critical",
|
||
"panel": "Panel",
|
||
"threads": "Threads",
|
||
"uptime": "Uptime",
|
||
"logLevelDebug": "Debug",
|
||
"logLevelInfo": "Info",
|
||
"logLevelNotice": "Notice",
|
||
"logLevelWarning": "Warning",
|
||
"logLevelError": "Error",
|
||
"accessDirect": "DIRECT",
|
||
"accessBlocked": "BLOCKED",
|
||
"accessProxy": "PROXY",
|
||
"importKeepHostSettings": "Keep this machine's settings",
|
||
"importKeepHostSettingsDesc": "Keeps this panel's listen addresses, ports, base path, certificates and node identity instead of taking them from the uploaded file."
|
||
},
|
||
"inbounds": {
|
||
"totalDownUp": "Total Sent/Received",
|
||
"totalUsage": "Total Usage",
|
||
"inboundCount": "Total Inbounds",
|
||
"operate": "Menu",
|
||
"enable": "Enabled",
|
||
"remark": "Remark",
|
||
"node": "Node",
|
||
"deployTo": "Deploy to",
|
||
"localPanel": "Local panel",
|
||
"fallbacks": {
|
||
"title": "Fallbacks",
|
||
"empty": "No fallbacks yet",
|
||
"add": "Add fallback",
|
||
"pickInbound": "Pick an inbound",
|
||
"matchAny": "any",
|
||
"destPlaceholder": "auto (child listen:port)",
|
||
"needsTls": "Fallbacks become available once Security is set to TLS or Reality on the Security tab (VLESS/Trojan over RAW only)."
|
||
},
|
||
"protocol": "Protocol",
|
||
"port": "Port",
|
||
"portMap": "Port Mapping",
|
||
"traffic": "Traffic",
|
||
"speed": "Speed",
|
||
"expireDate": "Duration",
|
||
"createdAt": "Created",
|
||
"updatedAt": "Updated",
|
||
"resetTraffic": "Reset Traffic",
|
||
"addInbound": "Add Inbound",
|
||
"generalActions": "General Actions",
|
||
"modifyInbound": "Modify Inbound",
|
||
"deleteConfirmTitle": "Delete inbound \"{remark}\"?",
|
||
"deleteConfirmContent": "This removes the inbound and all its clients. This cannot be undone.",
|
||
"resetConfirmTitle": "Reset traffic for \"{remark}\"?",
|
||
"resetConfirmContent": "Resets up/down counters to 0 for this inbound.",
|
||
"selectedCount": "{count} selected",
|
||
"selectAll": "Select all",
|
||
"bulkDeleteConfirmTitle": "Delete {count} inbounds?",
|
||
"bulkDeleteConfirmContent": "This removes the selected inbounds and all their clients. This cannot be undone.",
|
||
"cloneConfirmTitle": "Clone inbound \"{remark}\"?",
|
||
"cloneConfirmContent": "Creates a copy with a new port and an empty client list.",
|
||
"delAllClients": "Delete All Clients",
|
||
"delAllClientsConfirmTitle": "Delete all {count} clients from \"{remark}\"?",
|
||
"delAllClientsConfirmContent": "This removes every client from this inbound and drops their traffic records. The inbound itself is kept. This cannot be undone.",
|
||
"attachClients": "Attach Clients To…",
|
||
"addClientsToGroup": "Add Clients To Group…",
|
||
"attachClientsTitle": "Attach clients from \"{remark}\"",
|
||
"attachClientsDesc": "Attaches the same {count} clients (same UUID/password and shared traffic) to the selected inbound(s). They stay on this inbound too.",
|
||
"attachClientsTargets": "Target inbounds",
|
||
"attachClientsNoTargets": "No other compatible inbounds available to attach to.",
|
||
"attachClientsResult": "Attached {attached}, skipped {skipped}.",
|
||
"attachClientsResultMixed": "Attached {attached}, skipped {skipped}, errors {errors}.",
|
||
"attachClientsSelectLabel": "Clients to attach",
|
||
"attachClientsSearchPlaceholder": "Search email or comment",
|
||
"attachClientsStatusDisabled": "Disabled",
|
||
"attachClientsSelectedCount": "{selected} of {total} selected",
|
||
"attachExistingClients": "Attach Existing Clients…",
|
||
"attachExistingTitle": "Attach existing clients to \"{remark}\"",
|
||
"attachExistingDesc": "Attaches existing clients ({count} available) to this inbound — same UUID/password and shared traffic. Clients already on it are skipped.",
|
||
"attachExistingNoClients": "No clients exist yet. Create clients first, then attach them here.",
|
||
"attachExistingStatusAttached": "Already attached",
|
||
"detachClients": "Detach Clients",
|
||
"detachClientsTitle": "Detach clients of \"{remark}\"",
|
||
"detachClientsDesc": "Removes the selected client(s) from this inbound only. Client records themselves are kept (use Delete to remove fully). Source has {count} clients in total.",
|
||
"detachClientsResult": "Detached {detached}, skipped {skipped}.",
|
||
"detachClientsResultMixed": "Detached {detached}, skipped {skipped}, errors {errors}.",
|
||
"detachClientsSelectLabel": "Clients to detach",
|
||
"exportLinksTitle": "Export inbound links",
|
||
"exportSubsTitle": "Export subscription links",
|
||
"exportAllLinksTitle": "Export all inbound links",
|
||
"exportAllSubsTitle": "Export all subscription links",
|
||
"exportAllLinksFileName": "All-Inbounds",
|
||
"exportAllSubsFileName": "All-Inbounds-Subs",
|
||
"inboundJsonTitle": "Inbound JSON",
|
||
"resetTrafficContent": "Are you sure you want to reset traffic?",
|
||
"copyLink": "Copy URL",
|
||
"address": "Address",
|
||
"network": "Network",
|
||
"destinationPort": "Destination Port",
|
||
"targetAddress": "Target Address",
|
||
"monitorDesc": "Leave blank to listen on all IPs",
|
||
"meansNoLimit": "= Unlimited. (unit: GB)",
|
||
"totalFlow": "Total Flow",
|
||
"leaveBlankToNeverExpire": "Leave blank to never expire",
|
||
"certificatePath": "File Path",
|
||
"certificateContent": "File Content",
|
||
"publicKey": "Public Key",
|
||
"privatekey": "Private Key",
|
||
"client": "Client",
|
||
"export": "Export All URLs",
|
||
"clone": "Clone",
|
||
"resetAllTraffic": "Reset Traffic for All Inbounds",
|
||
"resetAllTrafficTitle": "Reset Traffic for All Inbounds",
|
||
"resetAllTrafficContent": "Are you sure you want to reset the traffic of all inbounds?",
|
||
"email": "Email",
|
||
"IPLimit": "IP Limit",
|
||
"IPLimitlog": "IP Log",
|
||
"IPLimitlogclear": "Clear the Log",
|
||
"setDefaultCert": "Set Cert from Panel",
|
||
"setDefaultCertEmpty": "No certificate is configured for the panel. Set one under Settings first.",
|
||
"streamTab": "Stream",
|
||
"securityTab": "Security",
|
||
"sniffingTab": "Sniffing",
|
||
"sniffingMetadataOnly": "Metadata only",
|
||
"sniffingRouteOnly": "Route only",
|
||
"sniffingIpsExcluded": "IPs excluded",
|
||
"sniffingDomainsExcluded": "Domains excluded",
|
||
"decryption": "Decryption",
|
||
"encryption": "Encryption",
|
||
"vlessAuthX25519": "X25519 (native)",
|
||
"vlessAuthMlkem768": "ML-KEM-768 (native)",
|
||
"vlessAuthX25519Xorpub": "X25519 (xorpub)",
|
||
"vlessAuthX25519Random": "X25519 (random)",
|
||
"vlessAuthMlkem768Xorpub": "ML-KEM-768 (xorpub)",
|
||
"vlessAuthMlkem768Random": "ML-KEM-768 (random)",
|
||
"vlessAuthCustom": "Custom",
|
||
"vlessAuthSelected": "Selected: {auth}",
|
||
"vlessAuthGenerate": "Generate keys",
|
||
"vlessAuthGenerateButton": "Generate",
|
||
"advanced": {
|
||
"title": "Inbound JSON sections",
|
||
"subtitle": "Full inbound JSON and focused editors for settings, sniffing, and streamSettings.",
|
||
"all": "All",
|
||
"allHelp": "Full inbound object with all fields in one editor.",
|
||
"settings": "Settings",
|
||
"settingsHelp": "Xray settings block wrapper:",
|
||
"sniffing": "Sniffing",
|
||
"sniffingHelp": "Xray sniffing block wrapper:",
|
||
"stream": "Stream",
|
||
"streamHelp": "Xray stream block wrapper:"
|
||
},
|
||
"subSortIndex": "Sub order",
|
||
"inboundInfo": "Inbound Information",
|
||
"exportInbound": "Export Inbound",
|
||
"import": "Import",
|
||
"importInbound": "Import an Inbound",
|
||
"periodicTrafficResetTitle": "Traffic Reset",
|
||
"periodicTrafficResetDay": "Monthly reset day",
|
||
"periodicTrafficReset": {
|
||
"never": "Never",
|
||
"daily": "Daily",
|
||
"weekly": "Weekly",
|
||
"monthly": "Monthly",
|
||
"hourly": "Hourly"
|
||
},
|
||
"toasts": {
|
||
"obtain": "Obtain",
|
||
"updateSuccess": "The update was successful.",
|
||
"logCleanSuccess": "The log has been cleared.",
|
||
"inboundUpdateSuccess": "Inbound has been successfully updated.",
|
||
"inboundCreateSuccess": "Inbound has been successfully created.",
|
||
"bulkDeleted": "{count} inbounds deleted",
|
||
"bulkDeletedMixed": "{ok} deleted, {failed} failed",
|
||
"clonedMany": "{count} inbounds cloned",
|
||
"clonedMixed": "{ok} cloned, {failed} failed",
|
||
"inboundDeleteSuccess": "Inbound has been successfully deleted.",
|
||
"inboundClientAddSuccess": "Inbound client(s) have been added.",
|
||
"inboundClientDeleteSuccess": "Inbound client has been deleted.",
|
||
"inboundClientUpdateSuccess": "Inbound client has been updated.",
|
||
"savedNodeOfflineWillSync": "Saved locally. A backing node is offline or disabled — the change will sync once it reconnects.",
|
||
"resetAllClientTrafficSuccess": "Traffic for all clients has been reset.",
|
||
"resetAllTrafficSuccess": "All traffic has been reset.",
|
||
"resetInboundClientTrafficSuccess": "Traffic has been reset.",
|
||
"resetInboundTrafficSuccess": "Inbound traffic has been reset.",
|
||
"trafficGetError": "Error getting traffic.",
|
||
"getNewX25519CertError": "Error while obtaining the X25519 certificate.",
|
||
"getNewmldsa65Error": "Error while obtaining mldsa65.",
|
||
"getNewVlessEncError": "Error while obtaining VlessEnc.",
|
||
"scanRealityTargetError": "Failed to scan REALITY target.",
|
||
"scanRealityTargetFeasible": "Target is feasible — filled target and SNI.",
|
||
"scanRealityTargetNotFeasible": "Target is reachable but not feasible for REALITY.",
|
||
"scanRealityTargetPrivate": "Target is reachable but sits on a private/local network.",
|
||
"invalidClientField": "Client {client}: {field} — {reason}",
|
||
"invalidField": "{field} — {reason}",
|
||
"moreIssues": "{message} (+{count} more)"
|
||
},
|
||
"form": {
|
||
"moveUp": "Move up",
|
||
"moveDown": "Move down",
|
||
"addAll": "Add all",
|
||
"addAllFallbackTooltip": "Add a fallback row for every eligible inbound not yet wired up",
|
||
"peers": "Peers",
|
||
"addPeer": "Add peer",
|
||
"keepAlive": "Keep-alive",
|
||
"autoSystemRoutesTooltip": "Windows-only. CIDRs added to the system routing table automatically so matching traffic goes through TUN.",
|
||
"autoOutboundsInterface": "Auto outbounds interface",
|
||
"autoOutboundsInterfaceTooltip": "Physical interface for outbound traffic. Use 'auto' to detect; auto-enabled when Auto system routes is set.",
|
||
"rewriteAddress": "Rewrite address",
|
||
"rewritePort": "Rewrite port",
|
||
"allowedNetwork": "Allowed network",
|
||
"followRedirect": "Follow redirect",
|
||
"accounts": "Accounts",
|
||
"allowTransparent": "Allow transparent",
|
||
"encryptionMethod": "Encryption method",
|
||
"fakeTlsDomain": "FakeTLS domain (SNI)",
|
||
"mtprotoSecret": "Secret",
|
||
"mtgDomainFrontingIp": "Domain fronting IP",
|
||
"mtgDomainFrontingPort": "Domain fronting port",
|
||
"mtgDomainFrontingProxyProtocol": "Domain fronting PROXY protocol",
|
||
"mtgDomainFrontingHint": "Where mtg sends non-Telegram traffic — e.g. your NGINX fake site. Leave the IP empty to use the FakeTLS domain via DNS; default port is 443.",
|
||
"mtgProxyProtocolListener": "Accept PROXY protocol (listener)",
|
||
"mtgPreferIp": "IP preference",
|
||
"mtgDebug": "Debug logging",
|
||
"mtgRouteThroughXray": "Route through Xray",
|
||
"mtgRouteThroughXrayHint": "Send this proxy's Telegram traffic through Xray so it follows your routing rules. The mtg sidecar dials out via a loopback SOCKS bridge tagged with this inbound's tag; reference that tag in the Routing tab for advanced rules.",
|
||
"mtgRouteOutbound": "Outbound",
|
||
"mtgRouteOutboundHint": "Optional. Force Telegram traffic out through this outbound (or balancer). Leave empty to let your routing rules decide.",
|
||
"mtgRouteOutboundPlaceholder": "Use routing rules",
|
||
"mtprotoFakeTlsDomainHint": "Default FakeTLS domain used to generate a new client's secret. Each client can front its own domain.",
|
||
"mtgThrottleMaxConnections": "Max connections",
|
||
"mtgThrottleMaxConnectionsHint": "Cap concurrent connections across all users with a fair-share limit. 0 disables throttling.",
|
||
"mtgAdTagInvalid": "Ad-tag must be exactly 32 hexadecimal characters.",
|
||
"mtgPublicIpv4": "Public IPv4",
|
||
"mtgPublicIpv6": "Public IPv6",
|
||
"mtgPublicIpHint": "This server's reachable public address, used by the ad-tag middle proxy. Leave blank to let mtg auto-detect it.",
|
||
"visionTestseed": "Vision testseed",
|
||
"version": "Version",
|
||
"udpIdleTimeout": "UDP idle timeout (s)",
|
||
"masquerade": "Masquerade",
|
||
"type": "Type",
|
||
"upstreamUrl": "Upstream URL",
|
||
"rewriteHost": "Rewrite Host",
|
||
"skipTlsVerify": "Skip TLS verify",
|
||
"directory": "Directory",
|
||
"statusCode": "Status code",
|
||
"body": "Body",
|
||
"headers": "Headers",
|
||
"proxyProtocol": "Proxy Protocol",
|
||
"requestVersion": "Request version",
|
||
"requestMethod": "Request method",
|
||
"requestPath": "Request path",
|
||
"requestHeaders": "Request headers",
|
||
"responseVersion": "Response version",
|
||
"responseStatus": "Response status",
|
||
"responseReason": "Response reason",
|
||
"responseHeaders": "Response headers",
|
||
"heartbeatPeriod": "Heartbeat Period",
|
||
"serviceName": "Service Name",
|
||
"authority": "Authority",
|
||
"multiMode": "Multi Mode",
|
||
"maxBufferedUpload": "Max Buffered Upload",
|
||
"maxUploadSize": "Max Upload Size (Byte)",
|
||
"streamUpServer": "Stream-Up Server",
|
||
"serverMaxHeaderBytes": "Server Max Header Bytes",
|
||
"paddingBytes": "Padding Bytes",
|
||
"uplinkHttpMethod": "Uplink HTTP Method",
|
||
"paddingObfsMode": "Padding Obfs Mode",
|
||
"paddingKey": "Padding Key",
|
||
"paddingHeader": "Padding Header",
|
||
"paddingPlacement": "Padding Placement",
|
||
"paddingMethod": "Padding Method",
|
||
"sessionPlacement": "Session Placement",
|
||
"sessionKey": "Session Key",
|
||
"sessionIDTable": "Session ID Table",
|
||
"sessionIDTableHint": "Charset for generated session IDs: a predefined name (ALPHABET, Base62, hex, number, …) or a literal ASCII string. Leave empty for xray-core's default.",
|
||
"sessionIDLength": "Session ID Length",
|
||
"sessionIDLengthHint": "Length or range (e.g. 8-16) of generated session IDs. Only used when a Session ID Table is set; minimum must be greater than 0.",
|
||
"sequencePlacement": "Sequence Placement",
|
||
"sequenceKey": "Sequence Key",
|
||
"uplinkDataPlacement": "Uplink Data Placement",
|
||
"uplinkDataKey": "Uplink Data Key",
|
||
"noSseHeader": "No SSE Header",
|
||
"ttiMs": "TTI (ms)",
|
||
"uplinkMbps": "Uplink (MB/s)",
|
||
"downlinkMbps": "Downlink (MB/s)",
|
||
"cwndMultiplier": "CWND Multiplier",
|
||
"maxSendingWindow": "Max Sending Window",
|
||
"externalProxy": "External Proxy",
|
||
"forceTls": "Force TLS",
|
||
"fingerprint": "Fingerprint",
|
||
"defaultOption": "Default",
|
||
"routeMark": "Route Mark",
|
||
"tcpKeepAliveInterval": "TCP Keep Alive Interval",
|
||
"tcpKeepAliveIdle": "TCP Keep Alive Idle",
|
||
"tcpMaxSeg": "TCP Max Seg",
|
||
"tcpUserTimeout": "TCP User Timeout",
|
||
"tcpWindowClamp": "TCP Window Clamp",
|
||
"tcpWindowClampHint": "Leave 0 to use the OS default. Non-zero values cap the advertised TCP receive window; values like 600 (from the Xray docs example) can collapse throughput on high-latency links.",
|
||
"tcpFastOpen": "TCP Fast Open",
|
||
"multipathTcp": "Multipath TCP",
|
||
"penetrate": "Penetrate",
|
||
"v6Only": "V6 Only",
|
||
"tcpCongestion": "TCP Congestion",
|
||
"dialerProxy": "Dialer Proxy",
|
||
"trustedXForwardedFor": "Trusted X-Forwarded-For",
|
||
"trustedXForwardedForHint": "Trust this request header for the real client IP (e.g. CF-Connecting-IP behind Cloudflare's CDN). Only honored on WebSocket, HTTPUpgrade, XHTTP and gRPC transports. Leave empty to ignore forwarded headers.",
|
||
"proxyProtocolHint": "Accept the PROXY-protocol header to learn the real client IP from an upstream L4 tunnel or relay (HAProxy, gost, nginx-stream, Xray dokodemo-door) or Cloudflare Spectrum. The upstream MUST emit PROXY protocol. Works on TCP, WebSocket, HTTPUpgrade and gRPC; not on mKCP.",
|
||
"realClientIp": "Real client IP",
|
||
"realClientIpHint": "Capture the visitor's real IP when traffic reaches this inbound through a CDN or relay, instead of recording the intermediary's address. Pick a preset to fill the matching sockopt fields below. These fields are never sent to clients in subscriptions.",
|
||
"realClientIpPresetOff": "Off / direct",
|
||
"realClientIpPresetCloudflare": "Cloudflare CDN",
|
||
"realClientIpPresetProxyProtocol": "L4 relay / Spectrum (PROXY)",
|
||
"realClientIpTrustedHeaderTransportWarn": "Trusted X-Forwarded-For is only honored on WebSocket, HTTPUpgrade and XHTTP. On the current transport this header is ignored.",
|
||
"realClientIpProxyProtocolTransportWarn": "PROXY protocol is not supported on this transport (mKCP). Use TCP/RAW, WebSocket, HTTPUpgrade, gRPC or XHTTP.",
|
||
"addressPortStrategy": "Address+port strategy",
|
||
"tryDelayMs": "Try delay (ms)",
|
||
"prioritizeIPv6": "Prioritize IPv6",
|
||
"interleave": "Interleave",
|
||
"maxConcurrentTry": "Max concurrent try",
|
||
"customSockopt": "Custom sockopt",
|
||
"addCustomOption": "Add custom option",
|
||
"serverNameIndication": "Server Name Indication",
|
||
"cipherSuites": "Cipher Suites",
|
||
"autoOption": "Auto",
|
||
"minMaxVersion": "Min/Max Version",
|
||
"rejectUnknownSni": "Reject Unknown SNI",
|
||
"disableSystemRoot": "Disable System Root",
|
||
"sessionResumption": "Session Resumption",
|
||
"oneTimeLoading": "One Time Loading",
|
||
"usageOption": "Usage Option",
|
||
"buildChain": "Build Chain",
|
||
"echKey": "ECH key",
|
||
"echConfig": "ECH config",
|
||
"echSockopt": "ECH Sockopt",
|
||
"echSockoptTip": "Socket options for the connection Xray uses to fetch the ECH config list (e.g. route the lookup through a dialerProxy outbound). Leave disabled to use defaults.",
|
||
"curvePreferences": "Curve Preferences",
|
||
"curvePreferencesTip": "Restrict the TLS key-exchange curves the server offers, in preference order (e.g. X25519MLKEM768, X25519). Leave empty to use Xray-core defaults.",
|
||
"masterKeyLog": "Master Key Log",
|
||
"masterKeyLogTip": "Path to write TLS master keys (SSLKEYLOGFILE format) for debugging with Wireshark. Leave empty in production — it lets anyone with the file decrypt traffic.",
|
||
"verifyPeerCertByName": "Verify Peer Cert By Name",
|
||
"verifyPeerCertByNameTip": "Tell clients to verify the server certificate against this name instead of the SNI. Comma-separated names. Panel-only — included in share links (vcn). The modern replacement for allowInsecure, which Xray removed after 2026-06-01.",
|
||
"pinnedPeerCertSha256": "Pinned Peer Cert SHA-256",
|
||
"pinnedPeerCertSha256Tip": "SHA-256 hash(es) of the peer certificate as a hex string (e.g. e8e2d3…), comma-separated. Panel-only — not written to the server's xray config, but included in share links so clients can pin the certificate.",
|
||
"pinnedPeerCertSha256Placeholder": "hex hash(es), comma-separated",
|
||
"pinFromCert": "Fill from this inbound's certificate",
|
||
"pinFromRemote": "Fetch the hash by pinging the SNI (xray tls ping)",
|
||
"pinFromRemoteNoSni": "Set the SNI (serverName) first to ping the remote certificate.",
|
||
"pinFromRemoteFailed": "Could not fetch the remote certificate hash.",
|
||
"getNewEchCert": "Get New ECH Cert",
|
||
"show": "Show",
|
||
"xver": "Xver",
|
||
"target": "Target",
|
||
"maxTimeDiff": "Max Time Diff (ms)",
|
||
"minClientVer": "Min Client Ver",
|
||
"maxClientVer": "Max Client Ver",
|
||
"minClientVerHint": "Empty does not mean unrestricted: Xray-core then enforces the built-in minimum of the core build you run (26.3.27 in current releases) and rejects clients that report an older version — including third-party cores such as Mihomo and sing-box. Set 1.0.0 to accept them, at the cost of admitting outdated TLS fingerprints.",
|
||
"maxClientVerHint": "Empty means no upper limit. If set, it must not be lower than the effective minimum — Min Client Ver, or Xray-core's built-in minimum when that field is empty — otherwise every client is rejected.",
|
||
"clientVerInvalid": "Client version must be up to three dot-separated numbers, each 0-255 (e.g. 26.3.27)",
|
||
"maxClientVerBelowMin": "Max Client Ver must not be lower than Min Client Ver",
|
||
"shortIds": "Short IDs",
|
||
"realityTargetHint": "Required. Must include a port (e.g. example.com:443). Without a port Xray-core refuses to start.",
|
||
"realityTargetRequired": "REALITY target is required",
|
||
"realityTargetNeedsPort": "REALITY target must include a port (e.g. example.com:443)",
|
||
"realityTargetInvalidPort": "REALITY target has an invalid port",
|
||
"scan": "Scan",
|
||
"findTargets": "Find Targets",
|
||
"scanModalTitle": "REALITY Target Scanner",
|
||
"scanModalDesc": "Validate a domain, or scan an IP / CIDR range to discover new REALITY targets from their certificates. Leave the box empty to probe common candidates.",
|
||
"scanDiscoverPlaceholder": "IP, CIDR, or domain — leave empty for common candidates",
|
||
"scanStatus": "Status",
|
||
"scanFeasible": "Feasible",
|
||
"scanNotFeasible": "Not feasible",
|
||
"scanCurve": "Key Exchange",
|
||
"scanCert": "Certificate",
|
||
"scanCertInvalid": "Not trusted",
|
||
"scanCertExpiry": "Certificate expires",
|
||
"scanSniUsed": "SNI used",
|
||
"scanPrivateNote": "Checked over a private/local network — this address is not reachable from the internet.",
|
||
"scanPrivateConfirmTitle": "Target on a local network",
|
||
"scanPrivateConfirmContent": "\"{target}\" resolves to a private or loopback address. The check will bypass the panel SSRF guard for this probe only. Continue?",
|
||
"scanLatency": "Latency",
|
||
"scanUse": "Use",
|
||
"scanRescan": "Rescan",
|
||
"spiderX": "SpiderX",
|
||
"spiderXHint": "Per-client seed — the panel derives a unique spx path for each client from it; regenerate to rotate everyone's paths",
|
||
"getNewCert": "Get New Cert",
|
||
"mldsa65Seed": "mldsa65 Seed",
|
||
"mldsa65Verify": "mldsa65 Verify",
|
||
"getNewSeed": "Get New Seed",
|
||
"limitFallback": "Limit Fallback",
|
||
"limitFallbackUpload": "Limit Fallback Upload",
|
||
"limitFallbackDownload": "Limit Fallback Download",
|
||
"afterBytes": "After Bytes",
|
||
"afterBytesTip": "Let the fallback run at full speed for this many bytes, then start throttling. 0 = throttle from the first byte.",
|
||
"bytesPerSec": "Bytes Per Sec",
|
||
"bytesPerSecTip": "Speed cap (bytes/sec) applied to fallback traffic after the threshold, so probes can't use your server as free bandwidth to the target. 0 = no limit (disables this direction).",
|
||
"burstBytesPerSec": "Burst Bytes Per Sec",
|
||
"burstBytesPerSecTip": "Allowance for short bursts above the steady rate (token-bucket size). If lower than Bytes Per Sec it is raised to match.",
|
||
"listenHelp": "You can also enter a Unix socket path (e.g. /run/xray/in.sock), or an abstract socket name prefixed with @ (e.g. @xray/in.sock), to listen on a socket instead of a TCP port — set Port to 0 in that case.",
|
||
"shareAddrStrategy": "Share address strategy",
|
||
"shareAddrStrategyHelp": "Controls which address is written into exported share links, QR codes, and subscription output.",
|
||
"shareAddr": "Custom share address",
|
||
"shareAddrHelp": "Used only when the share address strategy is Custom. Enter a host or IP without a scheme or port.",
|
||
"subSortIndex": "Subscription sort order",
|
||
"subSortIndexHelp": "Position of this inbound's links in subscription output (sub page and client apps). Lower values come first; equal values keep creation order. Does not affect the panel inbound list.",
|
||
"disableFlow": "Disable XTLS flow",
|
||
"disableFlowHelp": "Opt this inbound out of automatic xtls-rprx-vision injection, even when its transport is flow-capable (e.g. a tunneled XHTTP inbound with VLESS encryption). Clients keep Vision on your other capable inbounds in the same subscription. VLESS only.",
|
||
"shareAddrStrategyOptions": {
|
||
"node": "Node address",
|
||
"listen": "Inbound listen",
|
||
"custom": "Custom"
|
||
}
|
||
},
|
||
"info": {
|
||
"mode": "Mode",
|
||
"grpcServiceName": "grpc serviceName",
|
||
"grpcMultiMode": "grpc multiMode",
|
||
"interfaceName": "Interface name",
|
||
"mtu": "MTU",
|
||
"gateway": "Gateway",
|
||
"dns": "DNS",
|
||
"outboundsInterface": "Outbounds interface",
|
||
"autoSystemRoutes": "Auto system routes",
|
||
"followRedirect": "FollowRedirect",
|
||
"auth": "Auth",
|
||
"noKernelTun": "No-kernel TUN",
|
||
"keepAlive": "Keep alive",
|
||
"peerNumber": "Peer {n}",
|
||
"peerNumberConfig": "Peer {n} config"
|
||
},
|
||
"sniffingDestOverride": "Destination override"
|
||
},
|
||
"clients": {
|
||
"tabBasics": "Basics",
|
||
"tabCredentials": "Credentials",
|
||
"tabLinks": "Links",
|
||
"wireguardConfig": "WireGuard config",
|
||
"config": "Config",
|
||
"linksHint": "Add third-party share links and remote subscription URLs to include in this client's subscription.",
|
||
"addExternalLink": "Add External Link",
|
||
"addExternalSubscription": "Add External Subscription",
|
||
"noExternalLinks": "No external links yet.",
|
||
"noExternalSubscriptions": "No external subscriptions yet.",
|
||
"namePrefix": "Name prefix",
|
||
"lastFetchAt": "Last fetch",
|
||
"lastFetchError": "Fetch error",
|
||
"neverFetched": "Not fetched yet",
|
||
"submitEdit": "Save Changes",
|
||
"clientCount": "Number of Clients",
|
||
"bulk": "Add Bulk",
|
||
"selectAll": "Select all",
|
||
"clearAll": "Clear all",
|
||
"method": "Method",
|
||
"first": "First",
|
||
"last": "Last",
|
||
"ipLog": "IP Log",
|
||
"prefix": "Prefix",
|
||
"postfix": "Postfix",
|
||
"delayedStart": "Start After First Use",
|
||
"expireDays": "Duration (days)",
|
||
"renew": "Auto Renew",
|
||
"renewDesc": "Auto-renewal after expiration. (0 = disable)(unit: day)",
|
||
"renewDays": "Auto Renew (days)",
|
||
"searchPlaceholder": "Search email, comment, sub ID, UUID, password, auth, Telegram ID…",
|
||
"filterTitle": "Filter clients",
|
||
"clearAllFilters": "Clear all",
|
||
"filters": {
|
||
"nodes": "Nodes",
|
||
"localPanel": "Local (this panel)"
|
||
},
|
||
"showingCount": "Showing {shown} of {total}",
|
||
"sortOldest": "Oldest first",
|
||
"sortNewest": "Newest first",
|
||
"sortRecentlyUpdated": "Recently updated",
|
||
"sortRecentlyOnline": "Recently online",
|
||
"sortEmailAZ": "Email A→Z",
|
||
"sortEmailZA": "Email Z→A",
|
||
"sortMostTraffic": "Most traffic",
|
||
"sortHighestRemaining": "Highest remaining",
|
||
"sortExpiringSoonest": "Expiring soonest",
|
||
"has": "Has",
|
||
"hasNot": "Doesn't have",
|
||
"actions": "Actions",
|
||
"totalGB": "Traffic Limit (GB)",
|
||
"totalGBDesc": "Data quota for this client. 0 = unlimited.",
|
||
"expiryTime": "Expiry",
|
||
"addClients": "Add Clients",
|
||
"limitIp": "IP Limit",
|
||
"limitIpDesc": "Maximum simultaneous IPs. 0 = unlimited.",
|
||
"limitHwid": "HWID Limit",
|
||
"limitHwidDesc": "Maximum registered devices for subscription requests. 0 = unlimited.",
|
||
"hwidLog": "HWID Devices",
|
||
"hwidDevice": "Registered device",
|
||
"noHwids": "No HWID devices yet",
|
||
"firstSeen": "First seen",
|
||
"lastSeen": "Last seen",
|
||
"deleteHwid": "Remove device",
|
||
"deleteHwidConfirm": "Remove this device? It will need to re-register on its next subscription fetch.",
|
||
"hwidDeleted": "Device removed.",
|
||
"clearHwidsConfirm": "Remove all registered devices? Every device will need to re-register on its next subscription fetch.",
|
||
"limitIpFail2banMissing": "Fail2ban is not installed, so the IP limit cannot be enforced. Install Fail2ban from the x-ui bash menu to enable this option.",
|
||
"limitIpFail2banWindows": "Fail2ban is not available on Windows, so the IP limit cannot be enforced.",
|
||
"limitIpDisabled": "The IP limit feature is disabled on this server.",
|
||
"password": "Password",
|
||
"passwordDesc": "Only used by Trojan and Shadowsocks clients; ignored for VLESS, VMess, Hysteria, and WireGuard.",
|
||
"subId": "Subscription ID",
|
||
"online": "Online",
|
||
"email": "Email",
|
||
"emailInvalidChars": "Email cannot contain spaces, '/', '\\', or control characters",
|
||
"subIdInvalidChars": "Subscription ID cannot contain spaces, '/', '\\', or control characters",
|
||
"group": "Group",
|
||
"groupDesc": "Logical label used to bucket related clients (e.g. team, customer, region). Filterable from the toolbar.",
|
||
"groupPlaceholder": "e.g. customer-a",
|
||
"comment": "Comment",
|
||
"traffic": "Traffic",
|
||
"speed": "Speed",
|
||
"offline": "Offline",
|
||
"addClient": "Add Client",
|
||
"qrCode": "QR Code",
|
||
"clientInfo": "Client Information",
|
||
"editClient": "Edit Client",
|
||
"client": "Client",
|
||
"enabled": "Enabled",
|
||
"remaining": "Remaining",
|
||
"duration": "Duration",
|
||
"attachedInbounds": "Attached inbounds",
|
||
"selectInbound": "Select one or more inbounds",
|
||
"selectAllInbounds": "Select all",
|
||
"clearAllInbounds": "Clear all",
|
||
"noSubId": "This client has no subId, no shareable link.",
|
||
"noLinks": "No shareable links — attach this client to a protocol-capable inbound first.",
|
||
"link": "Link",
|
||
"resetNotPossible": "Attach this client to an inbound first.",
|
||
"resetAllTraffics": "Reset all client traffic",
|
||
"resetAllTrafficsTitle": "Reset all client traffic?",
|
||
"resetAllTrafficsContent": "Every client's up/down counter drops to zero. Quotas and expiry are not affected. This cannot be undone.",
|
||
"deleteConfirmTitle": "Delete client {email}?",
|
||
"deleteConfirmContent": "This removes the client from every attached inbound and drops its traffic record. This cannot be undone.",
|
||
"adjustSelected": "Adjust ({count})",
|
||
"subLinksSelected": "Sub links ({count})",
|
||
"addToGroupTitle": "Add {count} client(s) to a group",
|
||
"addToGroupTooltip": "Pick an existing group or type a new name. Use the Ungroup action to remove clients from their current group.",
|
||
"groupName": "Group name",
|
||
"addToGroupSuccessToast": "Added {count} client(s) to {group}",
|
||
"ungroupSuccessToast": "Cleared group from {count} client(s)",
|
||
"ungroup": "Ungroup",
|
||
"ungroupConfirmTitle": "Remove {count} client(s) from their group?",
|
||
"ungroupConfirmContent": "Clears the group label on each selected client. Clients themselves are kept (use Delete to remove them entirely).",
|
||
"addToGroup": "Add to group",
|
||
"attach": "Attach",
|
||
"adjust": "Adjust",
|
||
"subLinks": "Sub links",
|
||
"enable": "Enable",
|
||
"disable": "Disable",
|
||
"bulkEnableConfirmTitle": "Enable {count} clients?",
|
||
"bulkEnableConfirmContent": "Enables each selected client on every attached inbound. Clients whose quota is exhausted or whose expiry has passed will be disabled again automatically.",
|
||
"bulkDisableConfirmTitle": "Disable {count} clients?",
|
||
"bulkDisableConfirmContent": "Disables each selected client on every attached inbound. They lose access immediately but their records and traffic are kept.",
|
||
"selectedCount": "{count} selected",
|
||
"attachToInboundsTitle": "Attach {count} client(s) to inbound(s)",
|
||
"attachToInboundsDesc": "Attaches the selected {count} client(s) (same UUID/password and shared traffic) to the chosen inbound(s). They keep their existing attachments too.",
|
||
"attachToInboundsTargets": "Target inbounds",
|
||
"attachToInboundsNoTargets": "No multi-user inbounds available to attach to.",
|
||
"detach": "Detach",
|
||
"detachFromInboundsTitle": "Detach {count} client(s) from inbound(s)",
|
||
"detachFromInboundsDesc": "Removes the selected {count} client(s) from the chosen inbound(s). Pairs where the client wasn't attached are silently skipped. Client records are kept (use Delete to remove fully).",
|
||
"detachFromInboundsTargets": "Inbounds to detach from",
|
||
"detachFromInboundsNoTargets": "No multi-user inbounds available.",
|
||
"detachFromInboundsResult": "Detached {detached}, skipped {skipped}.",
|
||
"detachFromInboundsResultMixed": "Detached {detached}, skipped {skipped}, errors {errors}.",
|
||
"subLinksTitle": "Sub links ({count})",
|
||
"subLinkColumn": "Subscription URL",
|
||
"subJsonLinkColumn": "Subscription JSON URL",
|
||
"subLinksCopyAll": "Copy all",
|
||
"subLinksCopiedAll": "Copied {count} link(s)",
|
||
"subLinksEmpty": "None of the selected clients have a subscription ID.",
|
||
"subLinksDisabled": "Subscription service is disabled.",
|
||
"subLinksDisabledHint": "Enable subscription in Panel Settings → Subscription to generate links.",
|
||
"bulkDeleteConfirmTitle": "Delete {count} clients?",
|
||
"bulkDeleteConfirmContent": "Each selected client is removed from every attached inbound and its traffic record is dropped. This cannot be undone.",
|
||
"bulkAdjustTitle": "Adjust {count} clients",
|
||
"bulkAdjustHint": "Positive values extend, negative values reduce. Clients with unlimited expiry or traffic are skipped for that field.",
|
||
"bulkAdjustNothing": "Set days, traffic, or flow before applying.",
|
||
"addDays": "Add days",
|
||
"addTrafficGB": "Add traffic (GB)",
|
||
"bulkFlow": "Set flow",
|
||
"bulkFlowNoChange": "No change",
|
||
"bulkFlowDisable": "Disable (clear flow)",
|
||
"delDepleted": "Delete depleted",
|
||
"delDepletedConfirmTitle": "Delete depleted clients?",
|
||
"delDepletedConfirmContent": "Removes every client whose traffic quota is exhausted or whose expiry has passed. This cannot be undone.",
|
||
"exportClients": "Export clients",
|
||
"importClients": "Import clients",
|
||
"import": "Import",
|
||
"delOrphans": "Delete unattached clients",
|
||
"delOrphansConfirmTitle": "Delete clients without an inbound?",
|
||
"delOrphansConfirmContent": "Removes every client that is not attached to any inbound, along with its traffic record. This cannot be undone.",
|
||
"auth": "Auth",
|
||
"hysteriaAuth": "Hysteria Auth",
|
||
"hysteriaAuthDesc": "Credential used only by Hysteria clients. Trojan and Shadowsocks use the Password field instead.",
|
||
"uuid": "UUID",
|
||
"flow": "Flow",
|
||
"vmessSecurity": "VMess Security",
|
||
"wireguardPrivateKey": "WireGuard Private Key",
|
||
"wireguardPublicKey": "WireGuard Public Key",
|
||
"wireguardPreSharedKey": "WireGuard Pre-Shared Key",
|
||
"wireguardAllowedIPs": "WireGuard Allowed IPs",
|
||
"wireguardAllowedIPsHint": "Leave empty to auto-assign; separate entries with commas",
|
||
"amneziaWgPrivateKey": "AmneziaWG Private Key",
|
||
"amneziaWgPublicKey": "AmneziaWG Public Key",
|
||
"amneziaWgPreSharedKey": "AmneziaWG Pre-Shared Key",
|
||
"amneziaWgAllowedIPs": "AmneziaWG Allowed IPs",
|
||
"amneziaWgAllowedIPsHint": "Leave empty to auto-assign; separate entries with commas",
|
||
"amneziaWgForwardedPorts": "Forwarded Ports",
|
||
"amneziaWgForwardedPortsHint": "Ports/ranges DNAT'd to this client, e.g. 80, 443, 8000-8100. Leave empty for none.",
|
||
"amneziaWgConfig": "AmneziaWG config",
|
||
"mtprotoSecret": "MTProto secret",
|
||
"mtprotoSecretHint": "The client's FakeTLS secret. Regenerate to rotate it.",
|
||
"mtprotoAdTag": "Ad-tag (sponsored channel)",
|
||
"mtprotoAdTagHint": "Optional 32-character hex tag from Telegram's proxy registration. When set, this client is routed through Telegram middle proxies and a sponsored channel appears at the top of their chat list.",
|
||
"reverseTag": "Reverse tag",
|
||
"reverseTagPlaceholder": "Optional reverse tag",
|
||
"telegramId": "Telegram user ID",
|
||
"telegramIdPlaceholder": "Numeric Telegram user ID (0 = none)",
|
||
"ipLimit": "IP limit",
|
||
"toasts": {
|
||
"deleted": "Client deleted",
|
||
"trafficReset": "Traffic reset",
|
||
"allTrafficsReset": "All client traffic reset",
|
||
"bulkDeleted": "{count} clients deleted",
|
||
"bulkDeletedMixed": "{ok} deleted, {failed} failed",
|
||
"bulkEnabled": "{count} clients enabled",
|
||
"bulkEnabledMixed": "{ok} enabled, {failed} failed",
|
||
"bulkDisabled": "{count} clients disabled",
|
||
"bulkDisabledMixed": "{ok} disabled, {failed} failed",
|
||
"bulkCreated": "{count} clients created",
|
||
"bulkCreatedMixed": "{ok} created, {failed} failed",
|
||
"bulkAdjusted": "{count} clients adjusted",
|
||
"bulkAdjustedMixed": "{ok} adjusted, {skipped} skipped",
|
||
"delDepleted": "{count} depleted clients deleted",
|
||
"delOrphans": "{count} unattached clients deleted",
|
||
"imported": "{count} clients imported",
|
||
"importedMixed": "{ok} imported, {failed} skipped"
|
||
},
|
||
"renewMax": "Max renewals",
|
||
"renewMaxDesc": "How many times auto-renew may fire before the client is left to expire. 0 means no limit. Catching up several missed periods spends one renewal per period.",
|
||
"renewOnDay": "Renew on day",
|
||
"renewOnDayDesc": "Renew on this day of every calendar month, at midnight in the panel's time zone, instead of every N days. A month too short for the chosen day renews on its last day. 0 keeps the day-interval mode.",
|
||
"renewsUsed": "Renewals used"
|
||
},
|
||
"groups": {
|
||
"name": "Name",
|
||
"clientCount": "Clients",
|
||
"totalGroups": "Total groups",
|
||
"totalGroupedClients": "Clients with a group",
|
||
"trafficUsed": "Traffic used",
|
||
"upload": "Upload",
|
||
"download": "Download",
|
||
"totalTraffic": "Total traffic",
|
||
"totalUpDown": "Total upload / download",
|
||
"addGroup": "Add Group",
|
||
"createSuccess": "Group \"{name}\" created.",
|
||
"rename": "Rename",
|
||
"renameTitle": "Rename {name}",
|
||
"renameCollision": "A group named \"{name}\" already exists.",
|
||
"renameSuccess": "Renamed group on {count} client(s).",
|
||
"deleteConfirmTitle": "Delete group {name}?",
|
||
"deleteConfirmContent": "This removes the group and clears its label from {count} client(s). The clients themselves are not deleted.",
|
||
"deleteSuccess": "Cleared group from {count} client(s).",
|
||
"resetTraffic": "Reset traffic",
|
||
"resetConfirmTitle": "Reset traffic for group {name}?",
|
||
"resetConfirmContent": "This resets only the group's traffic counter. Individual client counters are not affected.",
|
||
"resetSuccess": "Group {name} traffic reset.",
|
||
"adjustSuccess": "Adjusted {count} client(s) in {name}.",
|
||
"emptyForAction": "This group has no clients yet.",
|
||
"deleteGroupOnly": "Delete group (keep clients)",
|
||
"deleteClients": "Delete clients in group",
|
||
"deleteClientsConfirmTitle": "Delete all clients in {name}?",
|
||
"deleteClientsConfirmContent": "This permanently removes {count} client(s) along with their traffic records. The group label is cleared too. This cannot be undone.",
|
||
"deleteClientsSuccess": "Deleted {count} client(s).",
|
||
"deleteClientsMixed": "{ok} deleted, {failed} skipped",
|
||
"addToGroup": "Add clients…",
|
||
"addToGroupTitle": "Add clients to group \"{name}\"",
|
||
"addToGroupDesc": "Select clients to add to this group. They keep their existing inbound attachments; only the group label changes. Clients already in this group are not listed.",
|
||
"addToGroupEmpty": "No other clients available to add.",
|
||
"addToGroupResult": "Added {count} client(s) to {name}.",
|
||
"removeFromGroup": "Remove clients…",
|
||
"removeFromGroupTitle": "Remove clients from group \"{name}\"",
|
||
"removeFromGroupDesc": "Select members to remove from this group. Clients themselves are kept (use \"Delete clients in group\" to remove them entirely).",
|
||
"removeFromGroupResult": "Removed {count} client(s) from {name}."
|
||
},
|
||
"hosts": {
|
||
"addHost": "Add Host",
|
||
"editHost": "Edit Host",
|
||
"selectInbound": "Select an inbound",
|
||
"selectedCount": "{count} selected",
|
||
"summary": {
|
||
"total": "Total",
|
||
"enabled": "Enabled",
|
||
"disabled": "Disabled"
|
||
},
|
||
"moveUp": "Move up",
|
||
"moveDown": "Move down",
|
||
"bulkEnable": "Enable",
|
||
"bulkDisable": "Disable",
|
||
"bulkDelete": "Delete",
|
||
"bulkDeleteConfirm": "Delete {count} selected host(s)?",
|
||
"deleteConfirmTitle": "Delete host \"{name}\"?",
|
||
"sections": {
|
||
"basic": "Basic",
|
||
"security": "Security",
|
||
"advanced": "Advanced",
|
||
"general": "General",
|
||
"clash": "Clash (mihomo)"
|
||
},
|
||
"fields": {
|
||
"remark": "Remark",
|
||
"serverDescription": "Description",
|
||
"inbound": "Inbounds",
|
||
"address": "Address",
|
||
"port": "Port",
|
||
"endpoint": "Endpoint",
|
||
"enable": "Enable",
|
||
"actions": "Actions",
|
||
"security": "Security",
|
||
"sni": "SNI",
|
||
"overrideSniFromAddress": "Use address as SNI",
|
||
"keepSniBlank": "Keep SNI blank",
|
||
"hostHeader": "Host header",
|
||
"path": "Path",
|
||
"alpn": "ALPN",
|
||
"fingerprint": "Fingerprint",
|
||
"pins": "Pinned cert SHA-256",
|
||
"verifyPeerCertByName": "Verify peer cert by name",
|
||
"allowInsecure": "Allow insecure",
|
||
"echConfigList": "ECH config list",
|
||
"muxParams": "Mux",
|
||
"sockoptParams": "Sockopt",
|
||
"finalMask": "Final Mask",
|
||
"vlessRoute": "VLESS route",
|
||
"mihomoIpVersion": "IP version",
|
||
"mihomoX25519": "Mihomo X25519",
|
||
"shuffleHost": "Shuffle host",
|
||
"tags": "Tags",
|
||
"nodeGuids": "Nodes",
|
||
"excludeFromSubTypes": "Exclude from formats",
|
||
"inheritAddress": "Inherits"
|
||
},
|
||
"hints": {
|
||
"address": "Leave blank to inherit the inbound's own address.",
|
||
"port": "0 inherits the inbound's port.",
|
||
"tags": "Not visible to end users; sent with RAW subscription only. Uppercase letters, digits, _ and : only.",
|
||
"nodeGuids": "Pick nodes which resolved from this host. Only visual assignment.",
|
||
"serverDescription": "Optional note shown under the remark.",
|
||
"allowInsecure": "Skip TLS certificate verification (allowInsecure / skip-cert-verify).",
|
||
"vlessRoute": "Single VLESS route value (0-65535) baked into the UUID, e.g. 443. Leave blank for none.",
|
||
"remark": "A plain label for this host. Shown as the config name only when the inbound has no remark of its own."
|
||
},
|
||
"remarkVars": {
|
||
"title": "Template Variables",
|
||
"intro": "Click a variable to add it. It is replaced per client when the subscription is generated.",
|
||
"preview": "Preview",
|
||
"groups": {
|
||
"client": "Client",
|
||
"traffic": "Traffic",
|
||
"time": "Time & status",
|
||
"connection": "Connection"
|
||
},
|
||
"descEMAIL": "Client email",
|
||
"descINBOUND": "Inbound's own remark (the config name)",
|
||
"descHOST": "Host remark",
|
||
"descID": "Client UUID",
|
||
"descSHORT_ID": "First 8 characters of the UUID",
|
||
"descTELEGRAM_ID": "Client's Telegram ID (empty if unset)",
|
||
"descSUB_ID": "Subscription ID",
|
||
"descCOMMENT": "Client comment",
|
||
"descTRAFFIC_USED": "Used traffic (human readable)",
|
||
"descTRAFFIC_LEFT": "Remaining traffic (hidden if unlimited)",
|
||
"descTRAFFIC_TOTAL": "Total traffic (hidden if unlimited)",
|
||
"descTRAFFIC_USED_BYTES": "Used traffic in bytes",
|
||
"descTRAFFIC_LEFT_BYTES": "Remaining traffic in bytes",
|
||
"descTRAFFIC_TOTAL_BYTES": "Total traffic in bytes",
|
||
"descUP": "Upload traffic",
|
||
"descDOWN": "Download traffic",
|
||
"descSTATUS": "active / expired / disabled / depleted",
|
||
"descSTATUS_EMOJI": "Status as an emoji (✅ ⏳ 🚫)",
|
||
"descDAYS_LEFT": "Days until expiry (hidden if unlimited)",
|
||
"descTIME_LEFT": "Remaining time (e.g. 12d 4h 30m)",
|
||
"descUSAGE_PERCENTAGE": "Used traffic as a percentage (hidden if unlimited)",
|
||
"descEXPIRE_DATE": "Expiry date (YYYY-MM-DD)",
|
||
"descJALALI_EXPIRE_DATE": "Expiry date in the Jalali calendar (YYYY/MM/DD)",
|
||
"descEXPIRE_UNIX": "Expiry as a Unix timestamp (seconds)",
|
||
"descCREATED_UNIX": "Creation time as a Unix timestamp (seconds)",
|
||
"descRESET_DAYS": "Traffic reset period in days",
|
||
"descRESET_DAY": "Calendar renewal day of the month",
|
||
"descPROTOCOL": "Inbound protocol (VLESS, VMess, Trojan, …)",
|
||
"descTRANSPORT": "Transport network (tcp, ws, grpc, …)",
|
||
"descSECURITY": "Transport security (TLS, REALITY, NONE)"
|
||
},
|
||
"toasts": {
|
||
"list": "Failed to load hosts",
|
||
"obtain": "Failed to load host",
|
||
"add": "Host added successfully",
|
||
"update": "Host updated successfully",
|
||
"delete": "Host deleted successfully",
|
||
"badTag": "Invalid tag",
|
||
"badVlessRoute": "Enter a single number between 0 and 65535"
|
||
}
|
||
},
|
||
"nodes": {
|
||
"addNode": "Add Node",
|
||
"editNode": "Edit Node",
|
||
"totalNodes": "Total Nodes",
|
||
"onlineNodes": "Online",
|
||
"offlineNodes": "Offline",
|
||
"avgLatency": "Avg Latency",
|
||
"name": "Name",
|
||
"namePlaceholder": "e.g. de-frankfurt-1",
|
||
"addressPlaceholder": "panel.example.com or 1.2.3.4",
|
||
"remark": "Remark",
|
||
"scheme": "Scheme",
|
||
"address": "Address",
|
||
"port": "Port",
|
||
"basePath": "Base Path",
|
||
"apiToken": "API Token",
|
||
"apiTokenPlaceholder": "Token from the remote panel's Settings page",
|
||
"apiTokenHint": "The remote panel exposes its API token under Authentication → API Token.",
|
||
"apiTokenKeepHint": "Leave blank to keep the current token",
|
||
"allowPrivateAddress": "Allow private address",
|
||
"allowPrivateAddressHint": "Enable only for nodes on a private network or VPN.",
|
||
"outboundTag": "Connection outbound",
|
||
"outboundTagHint": "Route this node's panel API traffic through the selected Xray outbound. A loopback bridge inbound is added to the running config automatically and applied live. Leave empty for a direct connection.",
|
||
"outboundTagPlaceholder": "Direct connection",
|
||
"inboundSyncMode": "Inbound import",
|
||
"inboundSyncModeHint": "Choose which inbounds are imported from this node. Existing nodes default to all inbounds.",
|
||
"allInbounds": "All inbounds",
|
||
"selectedInbounds": "Selected inbounds",
|
||
"inboundTags": "Inbounds",
|
||
"inboundTagsHint": "Selection is matched by the inbound tag. An empty selection imports none.",
|
||
"inboundTagsPlaceholder": "Load and select inbounds",
|
||
"loadInbounds": "Load inbounds from node",
|
||
"inboundsLoaded": "Loaded {{count}} inbounds",
|
||
"inboundsLoadFailed": "Failed to load inbounds",
|
||
"enable": "Enabled",
|
||
"status": "Status",
|
||
"cpu": "CPU",
|
||
"mem": "Memory",
|
||
"netUp": "Net Up (KB/s)",
|
||
"netDown": "Net Down (KB/s)",
|
||
"uptime": "Uptime",
|
||
"latency": "Latency",
|
||
"lastHeartbeat": "Last Heartbeat",
|
||
"xrayVersion": "Xray Version",
|
||
"panelVersion": "Panel Version",
|
||
"actions": "Actions",
|
||
"probe": "Probe Now",
|
||
"updatePanel": "Update Panel",
|
||
"updateSelected": "Update Selected ({count})",
|
||
"updateAvailable": "Update available",
|
||
"updateConfirmTitle": "Update {count} node(s) to the latest version?",
|
||
"updateConfirmContent": "Each selected node downloads the latest release and restarts onto it. Only enabled, online nodes are updated.",
|
||
"updateDevChannel": "Update to Dev channel (latest commit)",
|
||
"testConnection": "Test Connection",
|
||
"connectionOk": "Connection OK ({ms} ms)",
|
||
"connectionFailed": "Connection failed",
|
||
"never": "never",
|
||
"justNow": "just now",
|
||
"subNode": "Sub-node",
|
||
"subNodeTip": "Read-only: a downstream node reached through {parent}. Manage it from {parent}'s own panel.",
|
||
"deleteConfirmTitle": "Delete node \"{name}\"?",
|
||
"deleteConfirmContent": "This stops monitoring the node. The remote panel itself is unaffected.",
|
||
"statusValues": {
|
||
"online": "Online",
|
||
"offline": "Offline",
|
||
"unknown": "Unknown",
|
||
"xrayError": "Xray Error",
|
||
"xrayStopped": "Stopped"
|
||
},
|
||
"toasts": {
|
||
"list": "Failed to load nodes",
|
||
"obtain": "Failed to load node",
|
||
"add": "Add node",
|
||
"update": "Update node",
|
||
"delete": "Delete node",
|
||
"deleted": "Node deleted",
|
||
"test": "Test connection",
|
||
"fillRequired": "Name, address, port and API token are required",
|
||
"probeFailed": "Probe failed",
|
||
"updateStarted": "Panel update started",
|
||
"updateResult": "Update triggered on {ok} node(s), {failed} failed",
|
||
"updateNoneEligible": "Select at least one online, enabled node",
|
||
"saveMtls": "Save node mTLS",
|
||
"reloadMtls": "Reload master mTLS credential"
|
||
},
|
||
"tlsVerifyMode": "TLS verification",
|
||
"tlsVerifyModeHint": "How the panel validates the node's HTTPS certificate. Pin or Skip are for self-signed certs (https nodes only).",
|
||
"tlsVerify": "Verify (default CA)",
|
||
"tlsPin": "Pin certificate (SHA-256)",
|
||
"tlsSkip": "Skip verification",
|
||
"tlsMtls": "Mutual TLS (client certificate)",
|
||
"mtlsFormHint": "This node authenticates the panel with a client certificate. Copy this panel's CA from the Node mTLS section onto the node, set its Trusted parent CA, then restart it.",
|
||
"mtls": {
|
||
"title": "Node mTLS",
|
||
"intro": "Mutual TLS adds a client-certificate factor on top of the API token for node-to-node calls. It is opt-in: leave it empty to keep token-only auth.",
|
||
"copyCa": "Copy this panel's CA",
|
||
"copyCaHint": "Hand this CA to the nodes this panel manages, then set their TLS verification to Mutual TLS.",
|
||
"caCopied": "CA certificate copied to clipboard",
|
||
"caFailed": "Failed to obtain the CA certificate",
|
||
"trustLabel": "Trusted parent CA",
|
||
"trustHint": "When this panel is itself a node, paste the managing panel's CA here to require its client certificate. Restart the panel to apply.",
|
||
"trustPlaceholder": "-----BEGIN CERTIFICATE-----",
|
||
"save": "Save trust CA",
|
||
"saved": "Trust CA saved — restart the panel to apply"
|
||
},
|
||
"tlsSkipWarning": "Skipping verification removes protection against man-in-the-middle attacks — the API token could be intercepted. Prefer pinning the certificate.",
|
||
"pinnedCert": "Pinned certificate SHA-256",
|
||
"pinnedCertHint": "Base64 or hex SHA-256 of the node's certificate. Use Fetch to read it from the node now.",
|
||
"pinnedCertPlaceholder": "base64 or hex SHA-256",
|
||
"fetchPin": "Fetch",
|
||
"pinFetched": "Fetched the node's current certificate",
|
||
"pinFetchFailed": "Could not fetch the certificate"
|
||
},
|
||
"settings": {
|
||
"defaultTag": "Default",
|
||
"title": "Panel Settings",
|
||
"save": "Save",
|
||
"infoDesc": "Every change made here needs to be saved. Please restart the panel to apply changes.",
|
||
"restartPanel": "Restart Panel",
|
||
"restartPanelDesc": "Are you sure you want to restart the panel? If you cannot access the panel after restarting, please view the panel log info on the server.",
|
||
"restartPanelSuccess": "The panel was successfully restarted.",
|
||
"actions": "Actions",
|
||
"resetDefaultConfig": "Reset to Default",
|
||
"panelSettings": "General",
|
||
"securitySettings": "Authentication",
|
||
"securityWarnings": "Security warnings",
|
||
"panelExposed": "Your panel may be exposed:",
|
||
"warnHttp": "Panel is served over plain HTTP — set up TLS for production.",
|
||
"warnDefaultPort": "Default port 2053 is well-known — change it to a random port.",
|
||
"warnDefaultBasePath": "Default base path \"/\" is well-known — change it to a random path.",
|
||
"warnDefaultSubPath": "Default subscription path \"/sub/\" is well-known — change it.",
|
||
"warnDefaultJsonPath": "Default JSON subscription path \"/json/\" is well-known — change it.",
|
||
"TGBotSettings": "Telegram Bot",
|
||
"panelListeningIP": "Listen IP",
|
||
"panelListeningIPDesc": "The IP address for the web panel. (leave blank to listen on all IPs)",
|
||
"panelListeningDomain": "Listen Domain",
|
||
"panelListeningDomainDesc": "The domain name for the web panel. (leave blank to listen on all domains and IPs)",
|
||
"panelPort": "Listen Port",
|
||
"panelPortDesc": "The port number for the web panel. (must be an unused port)",
|
||
"publicKeyPath": "Public Key Path",
|
||
"publicKeyPathDesc": "The public key file path for the web panel. (begins with ‘/‘)",
|
||
"privateKeyPath": "Private Key Path",
|
||
"privateKeyPathDesc": "The private key file path for the web panel. (begins with ‘/‘)",
|
||
"panelUrlPath": "URI Path",
|
||
"panelUrlPathDesc": "The URI path for the web panel. (begins with ‘/‘ and concludes with ‘/‘)",
|
||
"pageSize": "Pagination Size",
|
||
"pageSizeDesc": "Define page size for inbounds table. (0 = disable)",
|
||
"panelOutbound": "Panel Traffic Outbound",
|
||
"panelOutboundDesc": "Routes the panel's own requests — panel/Xray version checks and downloads, Telegram, and the normal geo-file update — through this Xray outbound to bypass server-side filtering of GitHub/Telegram. A loopback bridge inbound is added to the running config automatically and applied live. The Xray-native Geodata Auto-Update is not affected; it has its own download outbound. Leave empty for a direct connection.",
|
||
"panelOutboundPh": "Direct connection",
|
||
"remarkTemplate": "Remark Template",
|
||
"remarkTemplateDesc": "When set, this replaces the remark model for every subscription link — write your own format with the variable tokens (use the button to insert them). Leave empty to use the model above.",
|
||
"subShowIdentityOnAllLinks": "Show identity on every link",
|
||
"subShowIdentityOnAllLinksDesc": "When enabled, {{EMAIL}} and {{USERNAME}} stay on every subscription-body remark. Usage tokens still appear on the first link only.",
|
||
"datepicker": "Calendar Type",
|
||
"datepickerPlaceholder": "Select date",
|
||
"datepickerDescription": "Scheduled tasks will run based on this calendar.",
|
||
"oldUsername": "Current Username",
|
||
"currentPassword": "Current Password",
|
||
"newUsername": "New Username",
|
||
"newPassword": "New Password",
|
||
"telegramBotEnable": "Enable Telegram Bot",
|
||
"telegramBotEnableDesc": "Enables the Telegram bot.",
|
||
"telegramToken": "Telegram Token",
|
||
"telegramTokenDesc": "The Telegram bot token obtained from '{'@'}BotFather'.",
|
||
"telegramProxy": "SOCKS Proxy",
|
||
"telegramProxyDesc": "Enables SOCKS5 proxy for connecting to Telegram. (adjust settings as per guide)",
|
||
"telegramAPIServer": "Telegram API Server",
|
||
"telegramAPIServerDesc": "The Telegram API server to use. Leave blank to use the default server.",
|
||
"telegramChatId": "Admin Chat ID",
|
||
"telegramChatIdDesc": "The Telegram Admin Chat ID(s). (comma-separated)(get it here {'@'}userinfobot) or (use '/id' command in the bot)",
|
||
"telegramNotifyTime": "Notification Time",
|
||
"telegramNotifyTimeDesc": "How often the Telegram bot sends periodic reports. Pick a preset interval, or choose Custom to enter a raw crontab expression.",
|
||
"notifyTime": {
|
||
"every": "@every — repeat at an interval",
|
||
"hourly": "@hourly — every hour",
|
||
"daily": "@daily — every day at 00:00",
|
||
"weekly": "@weekly — every week",
|
||
"monthly": "@monthly — every month",
|
||
"custom": "Custom (crontab)",
|
||
"seconds": "Seconds",
|
||
"minutes": "Minutes",
|
||
"hours": "Hours",
|
||
"interval": "Interval",
|
||
"unit": "Unit"
|
||
},
|
||
"tgNotifyBackup": "Database Backup",
|
||
"tgNotifyBackupDesc": "Send a database backup file with a report.",
|
||
"tgNotifyLogin": "Login Notification",
|
||
"tgNotifyLoginDesc": "Get notified about the username, IP address, and time whenever someone attempts to log into your web panel.",
|
||
"sessionMaxAge": "Session Duration",
|
||
"sessionMaxAgeDesc": "The duration for which you can stay logged in. (unit: minute)",
|
||
"expireTimeDiff": "Expiration Date Notification",
|
||
"expireTimeDiffDesc": "Get notified about expiration date when reaching this threshold. (unit: day)",
|
||
"trafficDiff": "Traffic Cap Notification",
|
||
"trafficDiffDesc": "Get notified about traffic cap when reaching this threshold. (unit: GB)",
|
||
"tgNotifyCpu": "CPU Load Notification",
|
||
"tgNotifyCpuDesc": "Get notified if CPU load exceeds this threshold. (unit: %)",
|
||
"timeZone": "Time Zone",
|
||
"timeZoneDesc": "Scheduled tasks will run based on this time zone.",
|
||
"subSettings": "Subscription",
|
||
"subEnable": "Subscription Service",
|
||
"subEnableDesc": "Enable/Disable the subscription service.",
|
||
"subJsonEnable": "Enable/Disable the JSON subscription endpoint independently.",
|
||
"subJsonEnableTitle": "JSON subscription",
|
||
"subClashEnableTitle": "Clash / Mihomo subscription",
|
||
"subFormatsTipTitle": "Format-specific subscription settings",
|
||
"subFormatsTipDesc": "Configure JSON and Clash / Mihomo URL paths, reverse URLs, and client auto-detection separately.",
|
||
"subFormatsTipAction": "Open Sub Formats",
|
||
"subJsonAutoDetect": "Auto-detect Xray JSON clients",
|
||
"subJsonAutoDetectDesc": "When enabled, recognized compatible clients requesting the standard subscription URL receive an Xray JSON configuration array automatically. Other clients keep the raw/base64 response. Requires JSON subscription to be enabled and a panel restart to apply.",
|
||
"subJsonAlwaysArray": "Always return a JSON array",
|
||
"subJsonAlwaysArrayDesc": "Return the explicit JSON subscription endpoint as an array even when it contains one profile, as required by the XTLS subscription standard. Auto-detected JSON responses always use arrays. Leave disabled to preserve the legacy single-object response.",
|
||
"subJsonUserAgentRegex": "Xray JSON User-Agent regex",
|
||
"subJsonUserAgentRegexDesc": "Go RE2 regular expression matched against the client's User-Agent to auto-select the Xray JSON format on the standard subscription URL. Empty by default, so auto-detection stays off until you set a pattern for the clients you want to serve. Other clients keep the raw/base64 response. Restart the panel after changes.",
|
||
"subClashAutoDetect": "Auto-detect Clash/Mihomo clients",
|
||
"subClashAutoDetectDesc": "When enabled, recognized Clash/Mihomo clients requesting the standard subscription URL receive Clash YAML automatically. Browsers still show the subscription page, other clients keep the raw/base64 response, and the explicit JSON and Clash URLs remain available. Requires Clash/Mihomo subscription to be enabled and a panel restart to apply.",
|
||
"subClashUserAgentRegex": "Clash/Mihomo User-Agent regex",
|
||
"subClashUserAgentRegexDesc": "Go RE2 regular expression matched against the client's User-Agent to recognize Clash/Mihomo clients on the standard subscription URL. Leave empty to use the default pattern. Restart the panel after changes.",
|
||
"subTitle": "Subscription Title",
|
||
"subTitleDesc": "Title shown in VPN client. Supports client identity tokens: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subSupportUrl": "Support URL",
|
||
"subSupportUrlDesc": "Technical support link shown in the VPN client. Supports client identity tokens: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subProfileUrl": "Profile URL",
|
||
"subProfileUrlDesc": "A link to your website displayed in the VPN client. Supports client identity tokens: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subAnnounce": "Announce",
|
||
"subAnnounceDesc": "The announcement text displayed in the VPN client. Supports client identity tokens: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subThemeDir": "Sub Theme Directory",
|
||
"subThemeDirDesc": "Absolute path to a folder containing a custom index.html/sub.html subscription page template (e.g. /etc/3x-ui/sub_templates/my-theme/). Leave empty to use the default page.",
|
||
"subThemeDirDocs": "Template guide ↗",
|
||
"subEnableRouting": "Enable routing",
|
||
"subEnableRoutingDesc": "Global setting to enable routing in the VPN client. (Only for Happ)",
|
||
"subRoutingRules": "Routing rules",
|
||
"subRoutingRulesDesc": "Paste a ready happ:// deeplink or one permanent HTTPS URL returning a deeplink or JSON. The panel refreshes remote rules in the background and keeps the last valid value, so subscription requests never wait for the source. (Happ only)",
|
||
"subHideSettings": "Hide server settings",
|
||
"subHideSettingsDesc": "Hide the ability to view and edit server configurations in the VPN client. (Only for Happ)",
|
||
"subIncyEnableRouting": "Enable routing",
|
||
"subIncyEnableRoutingDesc": "Inject a routing profile into the subscription body for the Incy client. (Only for Incy)",
|
||
"subIncyRoutingRules": "Routing rules",
|
||
"subIncyRoutingRulesDesc": "Paste a ready incy:// deeplink or one permanent HTTPS URL returning JSON. An HTTPS URL becomes an autorouting profile refreshed by Incy itself. (Incy only)",
|
||
"subClashEnableRouting": "Enable routing",
|
||
"subClashEnableRoutingDesc": "Include global Clash/Mihomo routing rules in generated YAML subscriptions.",
|
||
"subClashRoutingRules": "Global routing rules",
|
||
"subClashRoutingRulesDesc": "Paste inline rules/YAML or one permanent HTTPS URL. The panel refreshes it in the background, imports only groups/providers/rules, preserves generated VPN nodes and keeps the last valid value.",
|
||
"subListen": "Listen IP",
|
||
"subListenDesc": "The IP address for the subscription service. (leave blank to listen on all IPs)",
|
||
"subPort": "Listen Port",
|
||
"subPortDesc": "The port number for the subscription service. (must be an unused port). Also used to build the subscription link/QR shown in the panel when \"Reverse Proxy URI\" below is empty — if the subscription is reached through a reverse proxy on a different port, set \"Reverse Proxy URI\" instead.",
|
||
"subCertPath": "Public Key Path",
|
||
"subCertPathDesc": "The public key file path for the subscription service. (begins with ‘/‘)",
|
||
"subKeyPath": "Private Key Path",
|
||
"subKeyPathDesc": "The private key file path for the subscription service. (begins with ‘/‘)",
|
||
"subPath": "URI Path",
|
||
"subPathDesc": "The URI path for the subscription service. (begins with ‘/‘ and concludes with ‘/‘)",
|
||
"subDomain": "Listen Domain",
|
||
"subDomainDesc": "The domain name for the subscription service. (leave blank to listen on all domains and IPs). Also used as the fallback domain for the displayed subscription link when \"Reverse Proxy URI\" is empty — set \"Reverse Proxy URI\" if the panel and the subscription are reached through different domains (e.g. behind a reverse proxy).",
|
||
"subUpdates": "Update Intervals",
|
||
"subUpdatesDesc": "The update intervals of the subscription URL in the client apps. (unit: hour)",
|
||
"subEncrypt": "Encode",
|
||
"subEncryptDesc": "The returned content of subscription service will be Base64 encoded.",
|
||
"subURI": "Reverse Proxy URI",
|
||
"subURIDesc": "The full base URL (scheme://domain[:port]/path/) for the subscription link and QR code, used instead of Listen Domain/Listen Port. Set this whenever the subscription is reached through a reverse proxy or a domain/port different from the ones above.",
|
||
"externalTrafficInformEnable": "External Traffic Inform",
|
||
"externalTrafficInformEnableDesc": "Inform external API on every traffic update.",
|
||
"externalTrafficInformURI": "External Traffic Inform URI",
|
||
"externalTrafficInformURIDesc": "Traffic updates are sent to this URI.",
|
||
"restartXrayOnClientDisable": "Restart Xray After Auto Disable",
|
||
"restartXrayOnClientDisableDesc": "When a client is automatically disabled due to expiration or traffic limit, restart Xray.",
|
||
"fragment": "Fragmentation",
|
||
"fragmentDesc": "Enable fragmentation for TLS hello packet.",
|
||
"fragmentSett": "Fragmentation Settings",
|
||
"noisesDesc": "Enable Noises.",
|
||
"noisesSett": "Noises Settings",
|
||
"trustedProxyCidrs": "Trusted proxy CIDRs",
|
||
"trustedProxyCidrsDesc": "Comma-separated IPs/CIDRs allowed to set forwarded host, proto, and client IP headers.",
|
||
"ldap": {
|
||
"enable": "Enable LDAP sync",
|
||
"host": "LDAP host",
|
||
"port": "LDAP port",
|
||
"useTls": "Use TLS (LDAPS)",
|
||
"skipTlsVerify": "Skip TLS certificate verification",
|
||
"skipTlsVerifyDesc": "Insecure — disables server certificate validation. Use only with internal/untrusted CAs.",
|
||
"bindDn": "Bind DN",
|
||
"passwordConfigured": "Configured; leave blank to keep current password.",
|
||
"passwordUnconfigured": "Not configured.",
|
||
"passwordPlaceholder": "Configured - enter a new value to replace",
|
||
"baseDn": "Base DN",
|
||
"userFilter": "User filter",
|
||
"userAttr": "User attribute (username/email)",
|
||
"vlessField": "VLESS flag attribute",
|
||
"flagField": "Generic flag attribute (optional)",
|
||
"flagFieldDesc": "If set, overrides VLESS flag — e.g. shadowInactive.",
|
||
"truthyValues": "Truthy values",
|
||
"truthyValuesDesc": "Comma-separated; default: true,1,yes,on",
|
||
"invertFlag": "Invert flag",
|
||
"invertFlagDesc": "Enable when the attribute means disabled (e.g. shadowInactive).",
|
||
"syncSchedule": "Sync schedule",
|
||
"syncScheduleDesc": "Cron-like string, e.g. @every 1m",
|
||
"inboundTags": "Inbound tags",
|
||
"inboundTagsDesc": "Inbounds that LDAP sync may auto-create or auto-delete clients on.",
|
||
"noInbounds": "No inbounds found. Create one in Inbounds first.",
|
||
"autoCreate": "Auto create clients",
|
||
"autoDelete": "Auto delete clients",
|
||
"defaultTotalGb": "Default total (GB)",
|
||
"defaultExpiryDays": "Default expiry (days)",
|
||
"defaultIpLimit": "Default IP limit"
|
||
},
|
||
"subFormats": {
|
||
"finalMask": "Final Mask",
|
||
"finalMaskDesc": "Inject Xray finalmask TCP/UDP masks and QUIC parameters into every generated Xray JSON profile. Requires a client app that supports Xray JSON subscriptions and a recent Xray core.",
|
||
"packets": "Packets",
|
||
"length": "Length",
|
||
"interval": "Interval",
|
||
"maxSplit": "Max split",
|
||
"noises": "Noises",
|
||
"noiseItem": "Noise №{n}",
|
||
"type": "Type",
|
||
"packet": "Packet",
|
||
"delayMs": "Delay (ms)",
|
||
"applyTo": "Apply to",
|
||
"addNoise": "+ Noise",
|
||
"concurrency": "Concurrency",
|
||
"xudpConcurrency": "xudp concurrency",
|
||
"xudpUdp443": "xudp UDP 443"
|
||
},
|
||
"mux": "Mux",
|
||
"muxDesc": "Transmit multiple independent data streams within an established data stream.",
|
||
"muxSett": "Mux Settings",
|
||
"direct": "Direct Connection",
|
||
"directDesc": "Directly establishes connections with domains or IP ranges of a specific country.",
|
||
"notifications": "Notifications",
|
||
"certs": "Certificates",
|
||
"externalTraffic": "External Traffic",
|
||
"dateAndTime": "Date and Time",
|
||
"proxyAndServer": "Proxy and Server",
|
||
"intervals": "Intervals",
|
||
"information": "Information",
|
||
"profile": "Profile",
|
||
"language": "Language",
|
||
"telegramBotLanguage": "Telegram Bot Language",
|
||
"security": {
|
||
"admin": "Admin credentials",
|
||
"twoFactor": "Two-factor authentication",
|
||
"twoFactorEnable": "Enable 2FA",
|
||
"twoFactorEnableDesc": "Adds an additional layer of authentication to provide more security.",
|
||
"twoFactorModalSetTitle": "Enable two-factor authentication",
|
||
"twoFactorModalDeleteTitle": "Disable two-factor authentication",
|
||
"twoFactorModalSteps": "To set up two-factor authentication, perform a few steps:",
|
||
"twoFactorModalFirstStep": "1. Scan this QR code in the app for authentication or copy the token near the QR code and paste it into the app",
|
||
"twoFactorModalSecondStep": "2. Enter the code from the app",
|
||
"twoFactorModalRemoveStep": "Enter the code from the application to remove two-factor authentication.",
|
||
"twoFactorModalChangeCredentialsTitle": "Change credentials",
|
||
"twoFactorModalChangeCredentialsStep": "Enter the code from the application to change administrator credentials.",
|
||
"twoFactorModalSetSuccess": "Two-factor authentication has been successfully established",
|
||
"twoFactorModalDeleteSuccess": "Two-factor authentication has been successfully deleted",
|
||
"twoFactorModalError": "Wrong code",
|
||
"show": "Show",
|
||
"hide": "Hide",
|
||
"apiTokenNew": "New token",
|
||
"apiTokenName": "Name",
|
||
"apiTokenNamePlaceholder": "e.g. central-panel-a",
|
||
"apiTokenNameRequired": "Name is required",
|
||
"apiTokenEmpty": "No tokens yet — create one to authenticate bots or remote panels.",
|
||
"apiTokenDeleteWarning": "Any caller using this token will stop authenticating immediately.",
|
||
"apiTokenCreatedTitle": "Token created",
|
||
"apiTokenCreatedNotice": "Copy this token now. For security it is not stored in readable form and will not be shown again."
|
||
},
|
||
"toasts": {
|
||
"modifySettings": "The parameters have been changed.",
|
||
"getSettings": "An error occurred while retrieving parameters.",
|
||
"modifyUserError": "An error occurred while changing administrator credentials.",
|
||
"modifyUser": "You have successfully changed the credentials of the administrator.",
|
||
"originalUserPassIncorrect": "The current username or password is invalid",
|
||
"userPassMustBeNotEmpty": "The new username and password are empty",
|
||
"getOutboundTrafficError": "Error getting traffic",
|
||
"resetOutboundTrafficError": "Error resetting outbound traffic"
|
||
},
|
||
"smtpSettings": "SMTP Settings",
|
||
"smtpEnable": "Enable Email Notifications",
|
||
"smtpEnableDesc": "Enable email notifications via SMTP",
|
||
"smtpHost": "SMTP Host",
|
||
"smtpHostDesc": "SMTP server hostname (e.g. smtp.gmail.com)",
|
||
"smtpPort": "SMTP Port",
|
||
"smtpPortDesc": "SMTP server port (default: 587)",
|
||
"smtpUsername": "SMTP Username",
|
||
"smtpUsernameDesc": "SMTP authentication username",
|
||
"smtpFrom": "SMTP From Address",
|
||
"smtpFromDesc": "Sender address used in the email From header. Leave empty to use the username.",
|
||
"smtpFromName": "SMTP Sender Name",
|
||
"smtpFromNameDesc": "Optional display name shown before the sender address in the From header.",
|
||
"smtpPassword": "SMTP Password",
|
||
"smtpPasswordDesc": "SMTP authentication password",
|
||
"smtpTo": "Recipients",
|
||
"smtpToDesc": "Comma-separated recipient email addresses",
|
||
"emailSettings": "Email",
|
||
"emailNotifications": "Notifications",
|
||
"smtpEventBusNotify": "Email Event Notifications",
|
||
"smtpEventBusNotifyDesc": "Select which events trigger email notifications",
|
||
"tgEventBusNotify": "Telegram Event Notifications",
|
||
"tgEventBusNotifyDesc": "Select which events trigger Telegram notifications",
|
||
"testSmtp": "Send Test Email",
|
||
"testTgBot": "Send Test Message",
|
||
"eventGroupOutbound": "Outbound",
|
||
"eventGroupXray": "Xray Core",
|
||
"eventGroupSystem": "System",
|
||
"eventGroupSecurity": "Security",
|
||
"eventGroupNode": "Nodes",
|
||
"eventOutboundDown": "Down",
|
||
"eventOutboundUp": "Up",
|
||
"eventXrayCrash": "Crash",
|
||
"eventNodeDown": "Down",
|
||
"eventNodeUp": "Up",
|
||
"eventCPUHigh": "CPU high (%)",
|
||
"requestFailed": "Request failed",
|
||
"smtpEncryption": "Encryption",
|
||
"smtpEncryptionDesc": "SMTP connection encryption method",
|
||
"smtpEncryptionNone": "None (plain text)",
|
||
"smtpEncryptionStartTLS": "STARTTLS",
|
||
"smtpEncryptionTLS": "TLS (implicit)",
|
||
"smtpStageConnect": "Connection",
|
||
"smtpStageAuth": "Authentication",
|
||
"smtpStageSend": "Send",
|
||
"smtpTestSuccess": "Test email sent successfully",
|
||
"smtpHostNotConfigured": "SMTP host not configured",
|
||
"smtpNoRecipients": "No recipients configured",
|
||
"smtpFromNotConfigured": "SMTP sender address not configured",
|
||
"eventLoginAttempt": "Login attempt",
|
||
"telegramTokenConfigured": "Configured; leave blank to keep current token.",
|
||
"telegramTokenPlaceholder": "Configured - enter a new token to replace",
|
||
"smtpPasswordConfigured": "Configured; leave blank to keep current password.",
|
||
"smtpPasswordPlaceholder": "Configured - enter a new password to replace",
|
||
"smtpNotInitialized": "SMTP not initialized",
|
||
"tgBotNotEnabled": "Telegram bot is not enabled",
|
||
"tgTestFailed": "Telegram test failed",
|
||
"tgTestSuccess": "Test message sent to Telegram",
|
||
"tgBotNotRunning": "Telegram bot not running",
|
||
"smtpErrorAuth": "Authentication failed — check username and password",
|
||
"smtpErrorStarttls": "Server requires STARTTLS — change encryption type",
|
||
"smtpErrorTls": "Server requires TLS — change encryption type",
|
||
"smtpErrorRefused": "Connection refused — check host and port",
|
||
"smtpErrorTimeout": "Connection timeout — host unreachable",
|
||
"smtpErrorRelay": "Server rejects sending from this address",
|
||
"smtpErrorEof": "Connection closed by server",
|
||
"smtpErrorUnknown": "SMTP error: {{ .Error }}",
|
||
"eventMemoryHigh": "Memory high (%)",
|
||
"validation": {
|
||
"pathLeadingSlash": "Path must start with /"
|
||
},
|
||
"secretClear": "Clear",
|
||
"secretClearUndo": "Undo clear",
|
||
"calendarGregorian": "Gregorian (Standard)",
|
||
"calendarJalalian": "Jalalian (شمسی)",
|
||
"ipLimitAllowlist": "IP limit allowlist",
|
||
"ipLimitAllowlistDesc": "Addresses and networks that the IP limit never counts and never bans, so a shared office or campus address cannot use up a client's limit. Comma-separated, IP or CIDR.",
|
||
"subBalancers": {
|
||
"menu": "Sub Balancers",
|
||
"title": "Subscription balancer",
|
||
"add": "Add balancer",
|
||
"desc": "Each enabled balancer is added to the JSON subscription as one extra profile that automatically picks the best of the selected inbounds' endpoints (routing.balancers + burstObservatory in the client config).",
|
||
"remark": "Remark",
|
||
"remarkPlaceholder": "Auto · fastest",
|
||
"strategy": "Strategy",
|
||
"strategyLeastLoad": "Least load",
|
||
"strategyLeastPing": "Least ping",
|
||
"strategyRandom": "Random",
|
||
"strategyRoundRobin": "Round robin",
|
||
"sortOrder": "Order",
|
||
"sortOrderHelp": "Position in the subscription list, interleaved with the inbounds' own order; on equal numbers the balancer comes after the inbound.",
|
||
"inbounds": "Inbounds",
|
||
"inboundsCount": "{count} Inbounds",
|
||
"enabled": "Enabled",
|
||
"empty": "No balancers yet",
|
||
"deleteConfirm": "Delete this balancer?",
|
||
"errRemarkRequired": "Remark is required",
|
||
"errInboundsRequired": "Select at least one inbound",
|
||
"errSortOrder": "Order must be a whole number ≥ 1",
|
||
"toasts": {
|
||
"list": "Failed to list subscription balancers",
|
||
"create": "Failed to create subscription balancer",
|
||
"update": "Failed to update subscription balancer",
|
||
"delete": "Failed to delete subscription balancer",
|
||
"invalidId": "Invalid id"
|
||
},
|
||
"tabBalancers": "Balancers",
|
||
"tabObservatory": "Observatory",
|
||
"observatory": {
|
||
"title": "Balancer observatory",
|
||
"desc": "Probe parameters for the burst observatory emitted into each leastPing/leastLoad balancer profile. random/roundRobin balancers get no observatory. Stored as a panel-wide JSON-sub setting.",
|
||
"destination": "Probe URL",
|
||
"destinationDesc": "URL the client pings to measure each member outbound.",
|
||
"connectivity": "Connectivity URL",
|
||
"connectivityDesc": "Optional URL checked once to confirm the member can reach the probe destination. Leave empty to skip.",
|
||
"interval": "Probe interval",
|
||
"intervalDesc": "Time between probe rounds, e.g. 1m.",
|
||
"timeout": "Probe timeout",
|
||
"timeoutDesc": "Per-probe timeout, e.g. 5s.",
|
||
"sampling": "Sampling",
|
||
"samplingDesc": "Number of consecutive probes averaged for stability.",
|
||
"httpMethod": "HTTP method",
|
||
"httpMethodDesc": "Method used for probe requests.",
|
||
"note": "leastPing/leastLoad balancers always carry a burst observatory. This switch customises its probe parameters — turn it off to use the built-in defaults. Changes apply after a panel restart."
|
||
}
|
||
}
|
||
},
|
||
"xray": {
|
||
"save": "Save",
|
||
"restartSuccess": "Xray has been successfully relaunched.",
|
||
"stopSuccess": "Xray has been successfully stopped.",
|
||
"restartError": "There was an error when rebooting the Xray.",
|
||
"stopError": "There was an error when stopping the Xray.",
|
||
"basicTemplate": "Basics",
|
||
"advancedTemplate": "Advanced",
|
||
"generalConfigs": "General",
|
||
"generalConfigsDesc": "These options will determine general adjustments.",
|
||
"logConfigs": "Log",
|
||
"logConfigsDesc": "Logs may affect your server's efficiency. It is recommended to enable them wisely only when needed.",
|
||
"basicRouting": "Basic Routing",
|
||
"blockConnectionsConfigsDesc": "These options will block traffic based on the specific requested country.",
|
||
"directConnectionsConfigsDesc": "A direct connection ensures that specific traffic is not routed through another server.",
|
||
"blockips": "Block IPs",
|
||
"blockdomains": "Block Domains",
|
||
"directips": "Direct IPs",
|
||
"directdomains": "Direct Domains",
|
||
"ipv4Routing": "IPv4 Routing",
|
||
"ipv4RoutingDesc": "These options will route traffic based on a specific destination via IPv4.",
|
||
"Template": "Advanced Xray Configuration Template",
|
||
"TemplateDesc": "The final Xray config file will be generated based on this template.",
|
||
"FreedomStrategy": "Freedom Protocol Strategy",
|
||
"FreedomStrategyDesc": "Set the output strategy for the network in the Freedom Protocol.",
|
||
"FreedomHappyEyeballs": "Freedom Happy Eyeballs (IPv4/IPv6)",
|
||
"FreedomHappyEyeballsDesc": "Dual-stack dialing for the direct (freedom) outbound — useful on exit servers with both IPv4 and IPv6.",
|
||
"FreedomHappyEyeballsTryDelayDesc": "Milliseconds before trying the alternate address family. 150–250 ms is a good starting point.",
|
||
"RoutingStrategy": "Overall Routing Strategy",
|
||
"RoutingStrategyDesc": "Set the overall traffic routing strategy for resolving all requests.",
|
||
"outboundTestUrl": "Outbound Test URL",
|
||
"outboundTestUrlDesc": "URL used when testing outbound connectivity.",
|
||
"Torrent": "Block BitTorrent Protocol",
|
||
"Inbounds": "Inbounds",
|
||
"Outbounds": "Outbounds",
|
||
"Balancers": "Balancers",
|
||
"balancerTagRequired": "Tag is required",
|
||
"balancerSelectorRequired": "Pick at least one outbound",
|
||
"balancerLive": "Live Target",
|
||
"balancerOverride": "Override",
|
||
"balancerOverridePh": "Auto (strategy)",
|
||
"balancerLiveRefresh": "Refresh live balancer state",
|
||
"balancerNotRunning": "This balancer is not active in the running Xray — save your changes or start Xray first",
|
||
"routeTester": "Route Tester",
|
||
"routeTesterDesc": "Ask the running Xray which outbound would handle a connection. No traffic is sent — the decision comes straight from the live routing engine.",
|
||
"routeTesterDest": "Domain or IP",
|
||
"routeTesterPort": "Port",
|
||
"routeTesterInbound": "Inbound",
|
||
"routeTesterProtocol": "Sniffed protocol",
|
||
"routeTesterTest": "Test Route",
|
||
"routeTesterMatchedOutbound": "Matched outbound",
|
||
"routeTesterViaBalancer": "via balancer",
|
||
"routeTesterDefaultOutbound": "No routing rule matched — traffic goes to the default (first) outbound.",
|
||
"Routings": "Routing Rules",
|
||
"importRules": "Import Rules",
|
||
"exportRules": "Export Rules",
|
||
"importOutbounds": "Import Outbounds",
|
||
"exportOutbounds": "Export Outbounds",
|
||
"importInvalidJson": "Invalid JSON — expected an array or an object with a matching key.",
|
||
"completeTemplate": "All",
|
||
"logLevel": "Log Level",
|
||
"logLevelDesc": "The log level for error logs, indicating the information that needs to be recorded.",
|
||
"accessLog": "Access Log",
|
||
"accessLogDesc": "The file path for the access log. The special value 'none' disables access logs",
|
||
"errorLog": "Error Log",
|
||
"errorLogDesc": "The file path for the error log. The special value 'none' disables error logs",
|
||
"dnsLog": "DNS Log",
|
||
"dnsLogDesc": "Whether to enable DNS query logs",
|
||
"maskAddress": "Mask Address",
|
||
"maskAddressDesc": "IP address mask, when enabled, will automatically replace the IP address that appears in the log.",
|
||
"statistics": "Statistics",
|
||
"statsInboundUplink": "Inbound Upload Statistics",
|
||
"statsInboundDownlink": "Inbound Download Statistics",
|
||
"statsOutboundUplink": "Outbound Upload Statistics",
|
||
"statsOutboundDownlink": "Outbound Download Statistics",
|
||
"metricsListen": "Metrics Endpoint",
|
||
"metricsListenDesc": "Expose Xray's Prometheus-style metrics on this address:port (e.g. 127.0.0.1:11111). Leave empty to disable. Bind to localhost and reverse-proxy it — it is unauthenticated.",
|
||
"metricsTag": "Metrics Tag",
|
||
"connectionLimits": "Connection Limits",
|
||
"connectionLimitsDesc": "Connection-level policies for user level 0. Leave a field empty to use Xray's default.",
|
||
"connIdle": "Idle Timeout",
|
||
"connIdleDesc": "Closes a connection after it stays idle for this many seconds. Lowering it frees memory and file descriptors faster on busy servers (Xray default: 300).",
|
||
"bufferSize": "Buffer Size",
|
||
"bufferSizeDesc": "Per-connection internal buffer size in KB. Set to 0 to minimize memory usage on low-RAM servers (Xray default depends on the platform).",
|
||
"bufferSizePlaceholder": "auto",
|
||
"seconds": "seconds",
|
||
"rules": {
|
||
"source": "Source",
|
||
"dest": "Destination",
|
||
"inbound": "Inbound",
|
||
"balancer": "Balancer",
|
||
"useComma": "Comma-separated list"
|
||
},
|
||
"routing": {
|
||
"dragToReorder": "Drag to reorder"
|
||
},
|
||
"geoBrowser": {
|
||
"title": "Geo categories",
|
||
"openTooltip": "Browse geo categories",
|
||
"database": "Database",
|
||
"searchCategory": "Search category",
|
||
"searchEntries": "Filter inside category",
|
||
"selectFound": "Select found",
|
||
"selected": "Selected {count}",
|
||
"clearAll": "Clear all",
|
||
"apply": "Apply",
|
||
"emptySelection": "Tick categories — they become rule tokens",
|
||
"pickCategory": "Pick a category on the left to see what it contains",
|
||
"noMatches": "Nothing found",
|
||
"noFiles": "No geo databases in the Xray folder",
|
||
"noFilesHint": "They appear after Xray downloads geosite.dat and geoip.dat",
|
||
"fileMeta": "{count} categories · {size} · updated {date}",
|
||
"entriesCount": "{count} entries",
|
||
"subnetsCount": "{count} subnets",
|
||
"shownRange": "Showing {from}–{to} of {total}",
|
||
"loadFailed": "Could not load geo databases",
|
||
"checkFailed": "Could not check these values against the geo databases",
|
||
"parseFailed": "Damaged or not a geosite/geoip database",
|
||
"tooLarge": "Too large to browse",
|
||
"unknownCategories": "Not in the database: {tokens}",
|
||
"missingDatabase": "Database file not found: {tokens} — add it under Geodata",
|
||
"unknownAttribute": "Attribute not found, the rule would match nothing: {tokens}",
|
||
"invalidToken": "Xray will not accept this: {tokens}",
|
||
"wrongKind": "Wrong database kind for this field: {tokens}"
|
||
},
|
||
"ruleForm": {
|
||
"sourceIps": "Source IPs",
|
||
"sourcePort": "Source port",
|
||
"vlessRoute": "VLESS route",
|
||
"attributes": "Attributes",
|
||
"value": "Value",
|
||
"user": "User",
|
||
"userPlaceholder": "Select users",
|
||
"userEmpty": "No users available",
|
||
"userLoadError": "Could not load users",
|
||
"inboundTags": "Inbound tags",
|
||
"outboundTag": "Outbound tag",
|
||
"balancerTag": "Balancer tag",
|
||
"balancerTagTooltip": "Routes traffic through one of the configured load balancers"
|
||
},
|
||
"outboundForm": {
|
||
"tagDuplicate": "Tag already used by another outbound",
|
||
"tagRequired": "Tag is required",
|
||
"tagPlaceholder": "unique-tag",
|
||
"localIpPlaceholder": "local IP",
|
||
"dialerProxyPlaceholder": "Select an outbound to chain through",
|
||
"dialerProxyHint": "Dial this outbound through another outbound (by tag) to build a proxy chain. Leave empty to connect directly.",
|
||
"targetStrategyHint": "How the destination domain is resolved before connecting: AsIs (default) sends it unresolved, UseIP… resolves with fallback, ForceIP… requires successful resolution.",
|
||
"addressRequired": "Address is required",
|
||
"portRequired": "Port is required",
|
||
"optional": "optional",
|
||
"udpOverTcp": "UDP over TCP",
|
||
"uotVersion": "UoT version",
|
||
"inboundTag": "Inbound tag",
|
||
"inboundTagPlaceholder": "inbound tag used in routing rules",
|
||
"responseType": "Response type",
|
||
"rewriteNetwork": "Rewrite network",
|
||
"unchanged": "(unchanged)",
|
||
"unchangedAddress": "(unchanged) e.g. 1.1.1.1",
|
||
"rules": "Rules",
|
||
"ruleN": "Rule {n}",
|
||
"action": "Action",
|
||
"redirect": "Redirect",
|
||
"finalRules": "Final Rules",
|
||
"overrideXrayPrivateIp": "Override Xray's default private-IP block",
|
||
"blockDelay": "Block delay (ms)",
|
||
"reverseSniffing": "Reverse Sniffing",
|
||
"reserved": "Reserved",
|
||
"minUploadInterval": "Min upload interval (ms)",
|
||
"maxUploadSizeBytes": "Max upload size (bytes)",
|
||
"uplinkChunkSize": "Uplink chunk size",
|
||
"noGrpcHeader": "No gRPC header",
|
||
"maxConcurrency": "Max concurrency",
|
||
"maxConnections": "Max connections",
|
||
"maxReuseTimes": "Max reuse times",
|
||
"maxRequestTimes": "Max request times",
|
||
"maxReusableSecs": "Max reusable secs",
|
||
"keepAlivePeriod": "Keep alive period",
|
||
"authPassword": "Auth password",
|
||
"visionTestpre": "Vision testpre",
|
||
"serverNamePlaceholder": "server name",
|
||
"verifyPeerName": "Verify peer name",
|
||
"pinnedSha256": "Pinned SHA256",
|
||
"shortId": "Short ID",
|
||
"sockopts": "Sockopts",
|
||
"keepAliveInterval": "Keep alive interval",
|
||
"markFwmark": "Mark (fwmark)",
|
||
"interface": "Interface",
|
||
"proxyProtocol": "Proxy protocol",
|
||
"tcpUserTimeoutMs": "TCP user timeout (ms)",
|
||
"tcpKeepAliveIdleS": "TCP keep-alive idle (s)"
|
||
},
|
||
"outbound": {
|
||
"tag": "Tag",
|
||
"egress": "Egress",
|
||
"egressHint": "Run an HTTP test to show egress IP and country.",
|
||
"outboundStatus": "Outbound Status",
|
||
"sendThrough": "Send Through",
|
||
"targetStrategy": "Target Strategy",
|
||
"modeRealDelay": "Real delay",
|
||
"testModeTooltip": "TCP: fast dial-only probe. HTTP: full request through xray. Real delay: total time including connection setup.",
|
||
"testAll": "Test all",
|
||
"httpStatus": "HTTP status",
|
||
"breakdownConnect": "Proxy connect",
|
||
"breakdownTls": "TLS via outbound",
|
||
"breakdownTtfb": "First byte",
|
||
"country": "Country",
|
||
"server": "Server",
|
||
"city": "City",
|
||
"allCities": "All Cities",
|
||
"moveToTop": "Move to top"
|
||
},
|
||
"outboundSub": {
|
||
"manage": "Subscriptions",
|
||
"title": "Outbound Subscriptions",
|
||
"remark": "Remark (optional)",
|
||
"remarkPlaceholder": "e.g. HK nodes",
|
||
"url": "Subscription URL",
|
||
"urlPlaceholder": "https://... (base64 list of links)",
|
||
"tagPrefix": "Tag prefix",
|
||
"tagPrefixPlaceholder": "hk-",
|
||
"interval": "Update interval",
|
||
"hours": "h",
|
||
"minutes": "min",
|
||
"intervalHint": "Default 10 minutes. The background job checks frequently; each subscription only re-fetches when its own interval has passed.",
|
||
"enabled": "Enabled",
|
||
"allowPrivate": "Allow private address",
|
||
"allowPrivateHint": "Permit localhost / LAN / private IPs for this subscription's URL. Off by default for security — enable only for a trusted local source.",
|
||
"prepend": "Before manual outbounds",
|
||
"prependHint": "Place this subscription's outbounds before your manual ones, so one can become the default.",
|
||
"preview": "Preview",
|
||
"previewEmpty": "No outbounds found at this URL.",
|
||
"refreshAll": "Refresh all",
|
||
"statusOk": "OK",
|
||
"toastUpdated": "Subscription updated",
|
||
"addButton": "Add",
|
||
"active": "Active subscriptions",
|
||
"empty": "No subscriptions yet. Add one above.",
|
||
"colRemark": "Remark",
|
||
"colLastFetch": "Last fetch",
|
||
"colEnabled": "Enabled",
|
||
"auto": "auto",
|
||
"never": "never",
|
||
"refreshNow": "Refresh now",
|
||
"deleteConfirm": "Delete this subscription?",
|
||
"restartHint": "After adding or refreshing, restart Xray (or wait for the next auto-reload) to make the outbounds active.",
|
||
"fromSubsTitle": "From outbound subscriptions (read-only)",
|
||
"fromSubsDesc": "Imported from your active subscriptions. Manage them in the Subscriptions panel above.",
|
||
"toastLoadFailed": "Failed to load subscriptions",
|
||
"toastUrlRequired": "Subscription URL is required",
|
||
"toastAdded": "Subscription added",
|
||
"toastAddFailed": "Failed to add subscription",
|
||
"toastRefreshed": "Refreshed",
|
||
"toastRefreshFailed": "Refresh failed",
|
||
"toastDeleted": "Deleted",
|
||
"toastDeleteFailed": "Delete failed"
|
||
},
|
||
"pia": {
|
||
"menu": "PIA",
|
||
"username": "PIA username",
|
||
"password": "PIA password",
|
||
"account": "Account",
|
||
"region": "Region",
|
||
"allRegions": "All regions",
|
||
"noServers": "No servers found for the selected country",
|
||
"outboundAdded": "PIA outbound added",
|
||
"outboundUpdated": "PIA outbound updated",
|
||
"addedServers": "Added servers",
|
||
"alreadyAdded": "This server is already in the outbound list. Use {reset} to renew its key.",
|
||
"provisionFailed": "Could not build the PIA outbound. Try again."
|
||
},
|
||
"tabBalancerSettings": "Balancer Settings",
|
||
"tabObservatory": "Observatory",
|
||
"observatory": {
|
||
"autoManaged": "Observers are managed automatically from your balancers. Tune how they probe below — the watched outbounds follow your balancer selectors.",
|
||
"emptyHint": "No connection observer is active. One is added automatically when you create a Least Ping or Least Load balancer — or a Random / Round-robin balancer with a fallback — so observer-backed balancers can check outbound health before choosing a target.",
|
||
"mixedLegacy": "This config contains both Observatory and Burst Observatory. Xray uses one global observer, so this mixed legacy state is not supported; saving balancers will normalize it to one observer.",
|
||
"subjectSelector": "Watched Outbounds",
|
||
"subjectSelectorDesc": "Outbound tags this observer probes. Managed automatically from your balancers.",
|
||
"probeURL": "Probe URL",
|
||
"probeURLDesc": "URL fetched to measure each outbound. Should return HTTP 204.",
|
||
"probeInterval": "Probe Interval",
|
||
"probeIntervalDesc": "How often to probe each outbound, e.g. 30s, 1m, 2h45m.",
|
||
"enableConcurrency": "Concurrent Probing",
|
||
"enableConcurrencyDesc": "Probe all watched outbounds at once instead of one-by-one. Faster, but more visible on the network.",
|
||
"destination": "Probe Destination",
|
||
"destinationDesc": "URL fetched to measure each outbound. Should return HTTP 204.",
|
||
"connectivity": "Connectivity Check",
|
||
"connectivityDesc": "Optional local-network check URL, tried only after the destination fails. Leave empty to skip.",
|
||
"interval": "Probe Interval",
|
||
"intervalDesc": "Average time between probes per outbound, e.g. 1m. Minimum 10s.",
|
||
"timeout": "Probe Timeout",
|
||
"timeoutDesc": "How long to wait for a probe before it counts as failed, e.g. 5s.",
|
||
"sampling": "Sampling Count",
|
||
"samplingDesc": "Number of recent probe results kept to score each outbound.",
|
||
"httpMethod": "HTTP Method",
|
||
"httpMethodDesc": "HTTP method used for probes.",
|
||
"deleteAlsoObservatory": "This is the last balancer using the Observatory, so it will be removed too.",
|
||
"deleteAlsoBurst": "This is the last balancer using the Burst Observatory, so it will be removed too."
|
||
},
|
||
"refCleanup": {
|
||
"header": "Deleting this also updates your routing:",
|
||
"ruleRemoved": "Rule {label} — removed (no destination left)",
|
||
"ruleModified": "Rule {label} — kept (now uses {keeps})",
|
||
"balancerRemoved": "Balancer {tag} — removed (no targets left)"
|
||
},
|
||
"balancer": {
|
||
"balancerStrategy": "Strategy",
|
||
"tag": "Tag",
|
||
"tagDuplicate": "Tag already used by another balancer",
|
||
"tagPlaceholder": "unique balancer tag",
|
||
"selector": "Selector",
|
||
"fallback": "Fallback",
|
||
"fallbackBalancerHint": "Select another balancer as fallback",
|
||
"balancerFallbackInfo": "Traffic will be routed through: Balancer → Loopback → Server → Target Balancer → Outbound. This adds an extra hop through the server, which may introduce slight delays.",
|
||
"balancerFallbackCycle": "Cannot set this balancer as fallback — it would create a circular dependency.",
|
||
"balancerDeleteInUse": "Cannot delete this balancer — it is used as fallback by: {names}",
|
||
"reservedPrefix": "_bl_ prefix is reserved for internal balancer loopback objects",
|
||
"cycleTooltip": "Cycle: {path} → (back to {start})",
|
||
"expected": "Expected",
|
||
"expectedPlaceholder": "optimal node count",
|
||
"maxRtt": "Max RTT",
|
||
"tolerance": "Tolerance",
|
||
"baselines": "Baselines",
|
||
"costs": "Costs",
|
||
"costMatch": "Tag pattern",
|
||
"costValue": "Weight",
|
||
"costRegexp": "Regular expression match"
|
||
},
|
||
"wireguard": {
|
||
"secretKey": "Secret Key",
|
||
"publicKey": "Public Key",
|
||
"subnetIp": "Subnet",
|
||
"subnetCidr": "Subnet CIDR",
|
||
"allowedIPs": "Allowed IPs",
|
||
"endpoint": "Endpoint",
|
||
"domainStrategy": "Domain Strategy"
|
||
},
|
||
"amneziawg": {
|
||
"privateKey": "Private Key",
|
||
"publicKey": "Public Key",
|
||
"subnetIp": "Subnet",
|
||
"subnetCidr": "Subnet CIDR",
|
||
"mtu": "MTU",
|
||
"primaryDns": "Primary DNS",
|
||
"secondaryDns": "Secondary DNS",
|
||
"externalInterface": "External Interface",
|
||
"externalInterfaceHint": "Host NIC for NAT (PostUp/PostDown). Leave empty to auto-detect.",
|
||
"ipv6Enabled": "Enable IPv6",
|
||
"ipv6Subnet": "IPv6 Subnet",
|
||
"ipv6SubnetHint": "e.g. fd86:ea04:1115::/64. Required when IPv6 is enabled.",
|
||
"ipv6ExternalInterface": "IPv6 External Interface",
|
||
"ipv6ExternalInterfaceHint": "Host NIC each peer's IPv6 address is aliased onto. Leave empty to reuse External Interface.",
|
||
"obfuscation": "Obfuscation parameters",
|
||
"regenerateObfuscation": "Regenerate",
|
||
"jc": "Jc (junk packet count)",
|
||
"jmin": "Jmin (junk packet min size)",
|
||
"jmax": "Jmax (junk packet max size)",
|
||
"s1": "S1 (init packet junk size)",
|
||
"s2": "S2 (response packet junk size)",
|
||
"s3": "S3 (cookie reply padding)",
|
||
"s4": "S4 (transport packet padding)",
|
||
"h1": "H1 (magic header)",
|
||
"h2": "H2 (magic header)",
|
||
"h3": "H3 (magic header)",
|
||
"h4": "H4 (magic header)",
|
||
"hHint": "A single integer or a low-high range. Leave empty for the classic 1/2/3/4 default.",
|
||
"i1": "I1 (signature packet)",
|
||
"i1Hint": "Optional signature packet. Leave empty to omit it.",
|
||
"i2": "I2 (signature packet)",
|
||
"i3": "I3 (signature packet)",
|
||
"i4": "I4 (signature packet)",
|
||
"i5": "I5 (signature packet)",
|
||
"headerProtectionKey": "HeaderProtectionKey (header protection)",
|
||
"headerProtectionKeyHint": "Base64 32-byte key; must match on every client config. Leave empty to disable header protection.",
|
||
"contentPaddingAddition": "ContentPaddingAddition (content padding)",
|
||
"contentPaddingAdditionHint": "A single integer or low-high byte range added to content packets. Leave empty to disable.",
|
||
"rekeyAfterTime": "RekeyAfterTime (seconds)",
|
||
"rekeyTimeout": "RekeyTimeout (seconds)",
|
||
"rejectAfterTime": "RejectAfterTime (seconds)",
|
||
"keepaliveTimeout": "KeepaliveTimeout (seconds)",
|
||
"maxHandshakeAttempts": "MaxHandshakeAttempts",
|
||
"timingRangeHint": "A single integer or a low-high range. Leave empty to keep the WireGuard default.",
|
||
"maxHandshakeAttemptsHint": "Handshake retries before giving up. Leave empty for the default.",
|
||
"randomTrailers": "RandomTrailers",
|
||
"randomTrailersHint": "Appends random bytes to every packet. Both ends need AmneziaWG 3.1+.",
|
||
"disableCookies": "DisableCookies",
|
||
"disableCookiesHint": "Never send cookie replies — removes a DPI fingerprint; weakens flood mitigation."
|
||
},
|
||
"tun": {
|
||
"userLevel": "User Level"
|
||
},
|
||
"nord": {
|
||
"accessToken": "Access token",
|
||
"privateKey": "Private key",
|
||
"noServers": "No servers found for the selected country",
|
||
"noPublicKey": "Selected server does not advertise a NordLynx public key.",
|
||
"outboundAdded": "NordVPN outbound added",
|
||
"outboundUpdated": "NordVPN outbound updated"
|
||
},
|
||
"warp": {
|
||
"changeIp": "Change IP",
|
||
"changeIpSuccess": "WARP IP changed successfully!",
|
||
"autoUpdateIp": "Auto Update IP Address",
|
||
"intervalDays": "Interval (Days)",
|
||
"intervalDesc": "0 to disable. Changes IP address automatically.",
|
||
"licenseError": "Failed to set WARP license.",
|
||
"fetchFirst": "Fetch the WARP config first.",
|
||
"createAccount": "Create WARP account",
|
||
"accessToken": "Access token",
|
||
"deviceId": "Device ID",
|
||
"licenseKey": "License key",
|
||
"privateKey": "Private key",
|
||
"deleteAccount": "Delete account",
|
||
"settings": "Settings",
|
||
"licenseKeyLabel": "WARP / WARP+ license key",
|
||
"key": "Key",
|
||
"keyPlaceholder": "26-char WARP+ key",
|
||
"accountInfo": "Account info",
|
||
"deviceName": "Device name",
|
||
"deviceModel": "Device model",
|
||
"deviceEnabled": "Device enabled",
|
||
"accountType": "Account type",
|
||
"role": "Role",
|
||
"warpPlusData": "WARP+ data",
|
||
"quota": "Quota",
|
||
"usage": "Usage",
|
||
"addOutbound": "Add outbound"
|
||
},
|
||
"dns": {
|
||
"enable": "Enable DNS",
|
||
"enableDesc": "Enable built-in DNS server",
|
||
"tag": "DNS Inbound Tag",
|
||
"tagDesc": "This tag will be available as an Inbound tag in routing rules.",
|
||
"clientIp": "Client IP",
|
||
"clientIpDesc": "Used to notify the server of the specified IP location during DNS queries",
|
||
"disableCache": "Disable cache",
|
||
"disableCacheDesc": "Disables DNS caching",
|
||
"disableFallback": "Disable Fallback",
|
||
"disableFallbackDesc": "Disables fallback DNS queries",
|
||
"disableFallbackIfMatch": "Disable Fallback If Match",
|
||
"disableFallbackIfMatchDesc": "Disables fallback DNS queries when the matching domain list of the DNS server is hit",
|
||
"enableParallelQuery": "Enable Parallel Query",
|
||
"enableParallelQueryDesc": "Enable parallel DNS queries to multiple servers for faster resolution",
|
||
"strategy": "Query Strategy",
|
||
"strategyDesc": "Overall strategy to resolve domain names",
|
||
"add": "Add Server",
|
||
"edit": "Edit Server",
|
||
"domains": "Domains",
|
||
"expectIPs": "Expect IPs",
|
||
"unexpectIPs": "Unexpected IPs",
|
||
"useSystemHosts": "Use System Hosts",
|
||
"useSystemHostsDesc": "Use the operating system's hosts file",
|
||
"serveStale": "Serve Stale",
|
||
"serveStaleDesc": "Return expired cached results while refreshing in the background",
|
||
"serveExpiredTTL": "Serve Expired TTL",
|
||
"serveExpiredTTLDesc": "Validity (seconds) of stale cache entries; 0 = never expire",
|
||
"timeoutMs": "Timeout (ms)",
|
||
"skipFallback": "Skip Fallback",
|
||
"finalQuery": "Final Query",
|
||
"hosts": "Hosts",
|
||
"hostsAdd": "Add Host",
|
||
"hostsEmpty": "No host overrides defined",
|
||
"hostsDomain": "Domain (e.g. domain:example.com)",
|
||
"hostsValues": "IP or domain — type and press Enter",
|
||
"usePreset": "Use Preset",
|
||
"dnsPresetTitle": "DNS Presets",
|
||
"dnsPresetFamily": "Family",
|
||
"clearAll": "Delete All",
|
||
"clearAllTitle": "Delete all DNS servers?",
|
||
"clearAllConfirm": "This removes every DNS server from the list. This cannot be undone.",
|
||
"dnsLeakWarning": "DNS can leak through localhost, plain UDP/TCP, local-mode DoH/DoQ, fallback queries, or EDNS client IP. Use routed DoH, hosts pins, and disable fallback when privacy matters."
|
||
},
|
||
"fakedns": {
|
||
"add": "Add Fake DNS",
|
||
"ipPool": "IP Pool Subnet",
|
||
"poolSize": "Pool Size"
|
||
},
|
||
"defaultOutbound": "Default Outbound",
|
||
"defaultOutboundDesc": "Traffic that does not match any routing rule uses this outbound (Xray uses the first outbound in the list)."
|
||
}
|
||
},
|
||
"tgbot": {
|
||
"keyboardClosed": "❌ Custom keyboard closed!",
|
||
"noResult": "❗ No result!",
|
||
"noQuery": "❌ Query not found! Please use the command again!",
|
||
"wentWrong": "❌ Something went wrong!",
|
||
"noIpRecord": "❗ No IP Record!",
|
||
"noInbounds": "❗ No inbound found!",
|
||
"unlimited": "♾ Unlimited(Reset)",
|
||
"add": "Add",
|
||
"month": "Month",
|
||
"months": "Months",
|
||
"days": "Days",
|
||
"hours": "Hours",
|
||
"minutes": "Minutes",
|
||
"unknown": "Unknown",
|
||
"inbounds": "Inbounds",
|
||
"clients": "Clients",
|
||
"offline": "🔴 Offline",
|
||
"online": "🟢 Online",
|
||
"commands": {
|
||
"unknown": "❗ Unknown command.",
|
||
"pleaseChoose": "👇 Please choose:\r\n",
|
||
"help": "🤖 Welcome to this bot! It's designed to offer specific data from the web panel and allows you to make modifications as needed.\r\n\r\n",
|
||
"start": "👋 Hello <i>{{ .Firstname }}</i>.\r\n",
|
||
"welcome": "🤖 Welcome to <b>{{ .Hostname }}</b> management bot.\r\n",
|
||
"status": "✅ Bot is OK!",
|
||
"usage": "❗ Please provide a text to search!",
|
||
"getID": "🆔 Your ID: <code>{{ .ID }}</code>",
|
||
"helpAdminCommands": "To restart Xray Core:\r\n<code>/restart</code>\r\n\r\nTo search for a client email:\r\n<code>/usage [Email]</code>\r\n\r\nTo search for inbounds (with client stats):\r\n<code>/inbound [Remark]</code>\r\n\r\nTelegram Chat ID:\r\n<code>/id</code>",
|
||
"helpClientCommands": "To search for statistics, use the following command:\r\n\r\n<code>/usage [Email]</code>\r\n\r\nTelegram Chat ID:\r\n<code>/id</code>",
|
||
"restartUsage": "\r\n\r\n<code>/restart</code>",
|
||
"restartSuccess": "✅ Operation successful!",
|
||
"restartFailed": "❗ Error in operation.\r\n\r\n<code>Error: {{ .Error }}</code>.",
|
||
"xrayNotRunning": "❗ Xray Core is not running.",
|
||
"startDesc": "Show the main menu",
|
||
"helpDesc": "Bot help",
|
||
"statusDesc": "Check bot status",
|
||
"idDesc": "Show your Telegram ID",
|
||
"usageDesc": "Show client usage: /usage email",
|
||
"inboundDesc": "Search inbounds: /inbound remark (admin)",
|
||
"restartDesc": "Restart Xray core (admin)",
|
||
"clearallDesc": "Reset all clients' traffic (admin)"
|
||
},
|
||
"messages": {
|
||
"cpuThreshold": "CPU Load {{ .Percent }}% exceeds the threshold of {{ .Threshold }}%",
|
||
"selectUserFailed": "❌ Error in user selection!",
|
||
"userSaved": "✅ Telegram User saved.",
|
||
"loginSuccess": "✅ Logged in to the panel successfully.\r\n",
|
||
"loginFailed": "❗️Login attempt to the panel failed.\r\n",
|
||
"report": "🕰 Scheduled Reports: {{ .RunTime }}\r\n",
|
||
"datetime": "⏰ Date&Time: {{ .DateTime }}\r\n",
|
||
"hostname": "💻 Host: {{ .Hostname }}\r\n",
|
||
"version": "🚀 3X-UI Version: {{ .Version }}\r\n",
|
||
"xrayVersion": "📡 Xray Version: {{ .XrayVersion }}\r\n",
|
||
"ipv6": "🌐 IPv6: {{ .IPv6 }}\r\n",
|
||
"ipv4": "🌐 IPv4: {{ .IPv4 }}\r\n",
|
||
"ip": "🌐 IP: {{ .IP }}\r\n",
|
||
"ips": "🔢 IPs:\r\n{{ .IPs }}\r\n",
|
||
"serverUpTime": "⏳ Uptime: {{ .UpTime }} {{ .Unit }}\r\n",
|
||
"serverLoad": "📈 System Load: {{ .Load1 }}, {{ .Load2 }}, {{ .Load3 }}\r\n",
|
||
"serverMemory": "📋 RAM: {{ .Current }}/{{ .Total }}\r\n",
|
||
"tcpCount": "🔹 TCP: {{ .Count }}\r\n",
|
||
"udpCount": "🔸 UDP: {{ .Count }}\r\n",
|
||
"traffic": "🚦 Traffic: {{ .Total }} (↑{{ .Upload }},↓{{ .Download }})\r\n",
|
||
"xrayStatus": "ℹ️ Status: {{ .State }}\r\n",
|
||
"username": "👤 Username: {{ .Username }}\r\n",
|
||
"reason": "❗️ Reason: {{ .Reason }}\r\n",
|
||
"time": "⏰ Time: {{ .Time }}\r\n",
|
||
"inbound": "📍 Inbound: {{ .Remark }}\r\n",
|
||
"port": "🔌 Port: {{ .Port }}\r\n",
|
||
"expire": "📅 Expire Date: {{ .Time }}\r\n",
|
||
"expireIn": "📅 Expire In: {{ .Time }}\r\n",
|
||
"active": "💡 Active: {{ .Enable }}\r\n",
|
||
"enabled": "🚨 Enabled: {{ .Enable }}\r\n",
|
||
"online": "🌐 Connection status: {{ .Status }}\r\n",
|
||
"lastOnline": "🔙 Last online: {{ .Time }}\r\n",
|
||
"email": "📧 Email: {{ .Email }}\r\n",
|
||
"upload": "🔼 Upload: ↑{{ .Upload }}\r\n",
|
||
"download": "🔽 Download: ↓{{ .Download }}\r\n",
|
||
"total": "📊 Total: ↑↓{{ .UpDown }} / {{ .Total }}\r\n",
|
||
"TGUser": "👤 Telegram User: {{ .TelegramID }}\r\n",
|
||
"exhaustedCount": "🚨 Exhausted {{ .Type }} count:\r\n",
|
||
"onlinesCount": "🌐 Online Clients: {{ .Count }}\r\n",
|
||
"disabled": "🛑 Disabled: {{ .Disabled }}\r\n",
|
||
"depleteSoon": "🔜 Deplete Soon: {{ .Deplete }}\r\n\r\n",
|
||
"backupTime": "🗄 Backup Time: {{ .Time }}\r\n",
|
||
"refreshedOn": "\r\n📋🔄 Refreshed On: {{ .Time }}\r\n\r\n",
|
||
"yes": "✅ Yes",
|
||
"no": "❌ No",
|
||
"received_email": "📧📥 Email updated.",
|
||
"received_comment": "💬📥 Comment updated.",
|
||
"email_prompt": "📧 Default Email: {{ .ClientEmail }}\n\nEnter your email.",
|
||
"comment_prompt": "💬 Default Comment: {{ .ClientComment }}\n\nEnter your comment.",
|
||
"cancel": "❌ Process Canceled! \n\nYou can /start again anytime. 🔄",
|
||
"error_add_client": "⚠️ Error:\n\n {{ .error }}",
|
||
"using_default_value": "Okay, I'll stick with the default value. 😊",
|
||
"incorrect_input": "Your input is not valid.\nThe phrases should be continuous without spaces.\nCorrect example: aaaaaa\nIncorrect example: aaa aaa 🚫",
|
||
"AreYouSure": "Are you sure? 🤔",
|
||
"SuccessResetTraffic": "📧 Email: {{ .ClientEmail }}\n🏁 Result: ✅ Success",
|
||
"FailedResetTraffic": "📧 Email: {{ .ClientEmail }}\n🏁 Result: ❌ Failed \n\n🛠️ Error: [ {{ .ErrorMessage }} ]",
|
||
"FinishProcess": "🔚 Traffic reset process finished for all clients.",
|
||
"eventOutboundDown": "Outbound {{ .Tag }} is DOWN",
|
||
"eventOutboundUp": "Outbound {{ .Tag }} is UP",
|
||
"eventErrorDetail": "Error: {{ .Error }}",
|
||
"eventDelayDetail": "Delay: {{ .Delay }}ms",
|
||
"eventXrayCrash": "Xray CRASHED",
|
||
"eventXrayCrashError": "Error: {{ .Error }}",
|
||
"eventNodeDown": "Node {{ .Name }} is DOWN",
|
||
"eventNodeUp": "Node {{ .Name }} is UP",
|
||
"eventLoginFallback": "Login failed from {{ .Source }}",
|
||
"memoryThreshold": "Memory Load {{ .Percent }}% exceeds the threshold of {{ .Threshold }}%"
|
||
},
|
||
"buttons": {
|
||
"closeKeyboard": "❌ Close Keyboard",
|
||
"cancel": "❌ Cancel",
|
||
"cancelReset": "❌ Cancel Reset",
|
||
"cancelIpLimit": "❌ Cancel IP Limit",
|
||
"confirmResetTraffic": "✅ Confirm Reset Traffic?",
|
||
"confirmClearIps": "✅ Confirm Clear IPs?",
|
||
"confirmRemoveTGUser": "✅ Confirm Remove Telegram User?",
|
||
"confirmToggle": "✅ Confirm Enable/Disable User?",
|
||
"dbBackup": "Get DB Backup",
|
||
"serverUsage": "Server Usage",
|
||
"getInbounds": "Get Inbounds",
|
||
"depleteSoon": "Deplete Soon",
|
||
"clientUsage": "Get Usage",
|
||
"onlines": "Online Clients",
|
||
"commands": "Commands",
|
||
"refresh": "🔄 Refresh",
|
||
"clearIPs": "❌ Clear IPs",
|
||
"removeTGUser": "❌ Remove Telegram User",
|
||
"selectTGUser": "👤 Select Telegram User",
|
||
"selectOneTGUser": "👤 Select a Telegram User:",
|
||
"resetTraffic": "📈 Reset Traffic",
|
||
"resetExpire": "📅 Change Expiry Date",
|
||
"ipLog": "🔢 IP Log",
|
||
"ipLimit": "🔢 IP Limit",
|
||
"setTGUser": "👤 Set Telegram User",
|
||
"toggle": "🔘 Enable / Disable",
|
||
"custom": "🔢 Custom",
|
||
"confirmNumber": "✅ Confirm: {{ .Num }}",
|
||
"confirmNumberAdd": "✅ Confirm adding: {{ .Num }}",
|
||
"limitTraffic": "🚧 Traffic Limit",
|
||
"getBanLogs": "Get Ban Logs",
|
||
"allClients": "All Clients",
|
||
"addClient": "Add Client",
|
||
"submitDisable": "Submit As Disable ☑️",
|
||
"submitEnable": "Submit As Enable ✅",
|
||
"use_default": "🏷️ Use default",
|
||
"change_email": "⚙️📧 Email",
|
||
"change_comment": "⚙️💬 Comment",
|
||
"ResetAllTraffics": "Reset All Traffic",
|
||
"SortedTrafficUsageReport": "Sorted Traffic Usage Report"
|
||
},
|
||
"answers": {
|
||
"successfulOperation": "✅ Operation successful!",
|
||
"errorOperation": "❗ Error in operation.",
|
||
"getInboundsFailed": "❌ Failed to get inbounds.",
|
||
"getClientsFailed": "❌ Failed to get clients.",
|
||
"canceled": "❌ {{ .Email }}: Operation canceled.",
|
||
"clientRefreshSuccess": "✅ {{ .Email }}: Client refreshed successfully.",
|
||
"IpRefreshSuccess": "✅ {{ .Email }}: IPs refreshed successfully.",
|
||
"TGIdRefreshSuccess": "✅ {{ .Email }}: Client's Telegram User refreshed successfully.",
|
||
"resetTrafficSuccess": "✅ {{ .Email }}: Traffic reset successfully.",
|
||
"setTrafficLimitSuccess": "✅ {{ .Email }}: Traffic limit saved successfully.",
|
||
"expireResetSuccess": "✅ {{ .Email }}: Expire days reset successfully.",
|
||
"resetIpSuccess": "✅ {{ .Email }}: IP limit {{ .Count }} saved successfully.",
|
||
"clearIpSuccess": "✅ {{ .Email }}: IPs cleared successfully.",
|
||
"getIpLog": "✅ {{ .Email }}: Get IP Log.",
|
||
"getUserInfo": "✅ {{ .Email }}: Get Telegram User Info.",
|
||
"removedTGUserSuccess": "✅ {{ .Email }}: Telegram User removed successfully.",
|
||
"enableSuccess": "✅ {{ .Email }}: Enabled successfully.",
|
||
"disableSuccess": "✅ {{ .Email }}: Disabled successfully.",
|
||
"askToAddUserId": "Your configuration is not found!\r\nPlease ask your admin to use your Telegram ChatID in your configuration(s).\r\n\r\nYour ChatID: <code>{{ .TgUserID }}</code>",
|
||
"chooseClient": "Choose a Client for Inbound {{ .Inbound }}",
|
||
"chooseInbound": "Choose an Inbound"
|
||
}
|
||
},
|
||
"email": {
|
||
"labelStatus": "Status",
|
||
"labelOutbound": "Outbound",
|
||
"labelNode": "Node",
|
||
"labelError": "Error",
|
||
"labelDelay": "Delay",
|
||
"labelUsername": "Username",
|
||
"labelIP": "IP",
|
||
"labelReason": "Reason",
|
||
"labelSource": "Source",
|
||
"statusCrashed": "CRASHED",
|
||
"statusHigh": "HIGH",
|
||
"statusSuccess": "SUCCESS",
|
||
"statusFailed": "FAILED",
|
||
"statusDown": "DOWN",
|
||
"statusUp": "UP"
|
||
}
|
||
}
|