mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-25 04:17:15 +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
181 KiB
JSON
2253 lines
181 KiB
JSON
{
|
||
"username": "Ім'я користувача",
|
||
"password": "Пароль",
|
||
"login": "Увійти",
|
||
"confirm": "Підтвердити",
|
||
"cancel": "Скасувати",
|
||
"close": "Закрити",
|
||
"save": "Зберегти",
|
||
"logout": "Вийти",
|
||
"create": "Створити",
|
||
"add": "Додати",
|
||
"remove": "Видалити",
|
||
"update": "Оновити",
|
||
"copy": "Копіювати",
|
||
"copied": "Скопійовано",
|
||
"more": "більше",
|
||
"download": "Завантажити",
|
||
"regenerate": "Згенерувати заново",
|
||
"jsonEditor": "Редактор JSON",
|
||
"downloadImage": "Завантажити зображення",
|
||
"sort": "Сортування",
|
||
"remark": "Примітка",
|
||
"enable": "Увімкнути",
|
||
"protocol": "Протокол",
|
||
"search": "Пошук",
|
||
"filter": "Фільтр",
|
||
"all": "Усі",
|
||
"from": "Від",
|
||
"to": "До",
|
||
"done": "Готово",
|
||
"loading": "Завантаження...",
|
||
"refresh": "Оновити",
|
||
"clear": "Очистити",
|
||
"second": "Секунда",
|
||
"minute": "Хвилина",
|
||
"hour": "Година",
|
||
"day": "День",
|
||
"check": "Перевірка",
|
||
"indefinite": "Безстроково",
|
||
"unlimited": "Безлімітний",
|
||
"none": "Немає",
|
||
"qrCode": "QR-Код",
|
||
"info": "Більше інформації",
|
||
"edit": "Змінити",
|
||
"delete": "Видалити",
|
||
"reset": "Скидання",
|
||
"noData": "Немає даних.",
|
||
"copySuccess": "Скопійовано успішно",
|
||
"sure": "Звичайно",
|
||
"encryption": "Шифрування",
|
||
"transmission": "Протокол передачи",
|
||
"host": "Хост",
|
||
"path": "Шлях",
|
||
"camouflage": "Обфускація",
|
||
"status": "Статус",
|
||
"enabled": "Увімкнено",
|
||
"disabled": "Вимкнено",
|
||
"depleted": "Вичерпано",
|
||
"depletingSoon": "Вичерпується",
|
||
"offline": "Не в мережі",
|
||
"online": "У мережі",
|
||
"domainName": "Доменне ім`я",
|
||
"monitor": "Слухати IP",
|
||
"certificate": "Цифровий сертифікат",
|
||
"fail": "Помилка",
|
||
"comment": "Коментар",
|
||
"success": "Успішно",
|
||
"lastOnline": "Був(ла) онлайн",
|
||
"lastSubFetch": "Останнє отримання підписки",
|
||
"getVersion": "Отримати версію",
|
||
"install": "Встановити",
|
||
"clients": "Клієнти",
|
||
"usage": "Використання",
|
||
"twoFactorCode": "Код",
|
||
"remained": "Залишилося",
|
||
"security": "Беспека",
|
||
"emptyDnsDesc": "Немає доданих DNS-серверів.",
|
||
"emptyFakeDnsDesc": "Немає доданих Fake DNS-серверів.",
|
||
"emptyBalancersDesc": "Немає доданих балансувальників.",
|
||
"somethingWentWrong": "Щось пішло не так",
|
||
"subscription": {
|
||
"title": "Інформація про підписку",
|
||
"subId": "ID підписки",
|
||
"status": "Статус",
|
||
"downloaded": "Завантажено",
|
||
"uploaded": "Відвантажено",
|
||
"expiry": "Термін дії",
|
||
"totalQuota": "Загальна квота",
|
||
"individualLinks": "Окремі посилання",
|
||
"active": "Активна",
|
||
"inactive": "Неактивна",
|
||
"unlimited": "Безліміт",
|
||
"noExpiry": "Без строку",
|
||
"copyAllConfigs": "Копіювати всі конфігурації",
|
||
"copyAllConfigsCopied": "Всі конфігурації скопійовано",
|
||
"email": "Email"
|
||
},
|
||
"menu": {
|
||
"theme": "Тема",
|
||
"dashboard": "Огляд",
|
||
"inbounds": "Вхідні",
|
||
"clients": "Клієнти",
|
||
"groups": "Групи",
|
||
"nodes": "Вузли",
|
||
"settings": "Налаштування панелі",
|
||
"xray": "Конфігурації Xray",
|
||
"routing": "Маршрутизація",
|
||
"outbounds": "Вихідні",
|
||
"apiDocs": "Документація API",
|
||
"donate": "Підтримати",
|
||
"hosts": "Хости",
|
||
"docs": "Документація",
|
||
"openMenu": "Відкрити меню",
|
||
"pinSidebar": "Закріпити бічну панель",
|
||
"unpinSidebar": "Відкріпити бічну панель",
|
||
"subFormats": "Формати підписки"
|
||
},
|
||
"pages": {
|
||
"login": {
|
||
"hello": "Привіт",
|
||
"title": "Привітання!",
|
||
"loginAgain": "Ваш сеанс закінчився, увійдіть знову",
|
||
"toasts": {
|
||
"invalidFormData": "Формат вхідних даних недійсний.",
|
||
"emptyUsername": "Потрібне ім'я користувача",
|
||
"emptyPassword": "Потрібен пароль",
|
||
"wrongUsernameOrPassword": "Невірне ім’я користувача, пароль або код двофакторної аутентифікації.",
|
||
"successLogin": "Ви успішно увійшли до свого облікового запису."
|
||
}
|
||
},
|
||
"index": {
|
||
"cpu": "ЦП",
|
||
"swap": "Підкачка",
|
||
"storage": "Сховище",
|
||
"memory": "Пам’ять",
|
||
"xrayStatus": "Xray",
|
||
"stopXray": "Стоп",
|
||
"restartXray": "Перезапуск",
|
||
"xraySwitch": "Версія",
|
||
"xrayUpdates": "Оновлення Xray",
|
||
"xraySwitchClickDesk": "Вибирайте уважно, оскільки старіші версії можуть бути несумісними з поточними конфігураціями.",
|
||
"updatePanel": "Оновити панель",
|
||
"panelUpdateDesc": "Це оновить 3X-UI до останнього релізу та перезапустить сервіс панелі.",
|
||
"currentPanelVersion": "Поточна версія панелі",
|
||
"latestPanelVersion": "Остання версія панелі",
|
||
"panelUpToDate": "Панель оновлено",
|
||
"devChannel": "Канал розробки",
|
||
"devChannelWarning": "Збірки розробки відстежують кожен коміт у main і не є стабільними релізами — автоматичного відкату немає.",
|
||
"currentCommit": "Поточний коміт",
|
||
"latestCommit": "Останній коміт",
|
||
"updateChannelChanged": "Канал оновлення змінено",
|
||
"xrayStatusUnknown": "Невідомо",
|
||
"xrayStatusRunning": "Запущено",
|
||
"xrayStatusStop": "Зупинено",
|
||
"xrayStatusError": "Помилка",
|
||
"systemHistoryTitle": "Історія системи",
|
||
"historyTitleCpu": "Завантаження ЦП",
|
||
"historyTitleMem": "Використання пам’яті",
|
||
"historyTitleNetwork": "Пропускна здатність мережі",
|
||
"historyTitlePackets": "Мережеві пакети",
|
||
"historyTitleDisk": "Дисковий ввід-вивід",
|
||
"historyTitleOnline": "Клієнти онлайн",
|
||
"historyTitleLoad": "Середнє навантаження системи (1 / 5 / 15 хв)",
|
||
"historyTitleConnections": "Активні з’єднання (TCP / UDP)",
|
||
"historyTitleDiskUsage": "Використання дискового простору",
|
||
"historyTabBandwidth": "Пропускна здатність",
|
||
"historyTabPackets": "Пакети",
|
||
"historyTabDisk": "Диск I/O",
|
||
"historyTabOnline": "Онлайн",
|
||
"historyTabLoad": "Навантаження",
|
||
"historyTabConnections": "З’єднання",
|
||
"historyTabDiskUsage": "Використання диска",
|
||
"xrayMetricsTitle": "Метрики Xray",
|
||
"xrayTitleHeap": "Виділена пам’ять купи",
|
||
"xrayTitleSys": "Пам’ять, зарезервована в ОС",
|
||
"xrayTitleObjects": "Активні об’єкти купи",
|
||
"xrayTitleGcCount": "Завершені цикли GC",
|
||
"xrayTitleGcPause": "Тривалість паузи GC",
|
||
"xrayTitleObservatory": "Стан вихідних з’єднань",
|
||
"xrayTabHeap": "Купа",
|
||
"xrayTabSys": "Sys",
|
||
"xrayTabObjects": "Об’єкти",
|
||
"xrayTabGcCount": "Лічильник GC",
|
||
"xrayTabGcPause": "Пауза GC",
|
||
"xrayTabObservatory": "Обсерваторія",
|
||
"xrayMetricsDisabled": "Кінцева точка метрик Xray не налаштована",
|
||
"xrayMetricsHint": "Додайте блок metrics верхнього рівня до конфігурації xray з tag metrics_out і listen 127.0.0.1:11111, потім перезапустіть xray.",
|
||
"xrayObservatoryEmpty": "Даних Observatory ще немає",
|
||
"xrayObservatoryHint": "Додайте блок observatory до конфігурації xray зі списком outbound тегів для перевірки, потім перезапустіть xray.",
|
||
"xrayObservatoryTagPlaceholder": "Виберіть outbound",
|
||
"xrayObservatoryAlive": "Активний",
|
||
"xrayObservatoryDead": "Недоступний",
|
||
"xrayObservatoryLastSeen": "Остання активність",
|
||
"xrayObservatoryLastTry": "Остання спроба",
|
||
"connectionCount": "Статистика з'єднання",
|
||
"ipAddresses": "IP-адреси",
|
||
"toggleIpVisibility": "Перемкнути видимість IP",
|
||
"overallSpeed": "Загальна швидкість",
|
||
"upload": "Завантаження",
|
||
"download": "Завантажити",
|
||
"sent": "Відправлено",
|
||
"received": "Отримано",
|
||
"xraySwitchVersionDialog": "Ви дійсно хочете змінити версію Xray?",
|
||
"xraySwitchVersionDialogDesc": "Це змінить версію Xray на #version#.",
|
||
"xraySwitchVersionPopover": "Xray успішно оновлено",
|
||
"panelUpdateDialog": "Ви дійсно хочете оновити панель?",
|
||
"panelUpdateDialogDesc": "Це оновить 3X-UI до #version# та перезапустить сервіс панелі.",
|
||
"panelUpdateStartedPopover": "Розпочато оновлення панелі",
|
||
"panelUpdateFailedTitle": "Не вдалося оновити панель",
|
||
"panelUpdateFailedDesc": "Оновлення не завершилося успішно. Перевірте журнали сервера або виконайте 'x-ui update' у командному рядку.",
|
||
"panelUpdateUnknownTitle": "Не вдалося підтвердити завершення оновлення",
|
||
"panelUpdateUnknownDesc": "Панель не повідомила результат вчасно. Перезавантажте сторінку, щоб перевірити поточну версію, або перевірте журнали сервера.",
|
||
"geofileUpdateDialog": "Ви дійсно хочете оновити геофайл?",
|
||
"geofileUpdateDialogDesc": "Це оновить файл #filename#.",
|
||
"geofilesUpdateDialogDesc": "Це оновить усі геофайли.",
|
||
"geofilesUpdateAll": "Оновити все",
|
||
"geofileUpdatePopover": "Геофайл успішно оновлено",
|
||
"geodataTitle": "Автооновлення Geodata",
|
||
"geodataHint": "Xray завантажує ці файли за розкладом і перезавантажує їх без перезапуску. URL мають бути HTTPS. Файл має вже існувати в теці bin, щоб Xray міг його оновлювати.",
|
||
"geodataCron": "Розклад (cron)",
|
||
"geodataOutbound": "Завантажувати через outbound (необов’язково)",
|
||
"geodataFile": "Ім’я файлу",
|
||
"geodataAddFile": "Додати файл",
|
||
"geodataSaveRestart": "Зберегти та перезапустити Xray",
|
||
"geodataConfirmTitle": "Зберегти налаштування geodata?",
|
||
"geodataConfirmContent": "Шаблон конфігурації Xray буде оновлено, а Xray перезапущено.",
|
||
"geodataInvalidUrl": "Для кожного файлу потрібен HTTPS URL.",
|
||
"geodataInvalidFile": "Ім’я файлу має бути простим, напр. geosite_custom.dat (без шляхів).",
|
||
"geodataInvalidCron": "Cron має містити 5 полів, напр. 0 4 * * *",
|
||
"geodataEmpty": "Файли не налаштовано. У правилах маршрутизації файли вказуються як ext:geosite_custom.dat:category.",
|
||
"dontRefresh": "Інсталяція триває, будь ласка, не оновлюйте цю сторінку",
|
||
"logs": "Логи",
|
||
"accessLogs": "Логи доступу",
|
||
"autoUpdate": "Автооновлення",
|
||
"amneziawgLogs": "Логи AmneziaWG",
|
||
"amneziawgHandshake": "Останнє рукостискання",
|
||
"amneziawgInterface": "Інтерфейс",
|
||
"amneziawgInbound": "Вхідне",
|
||
"amneziawgEndpoint": "Точка підключення",
|
||
"amneziawgIdle": "Очікування",
|
||
"amneziawgEvents": "Події",
|
||
"amneziawgNoPeers": "Немає активних пірів AmneziaWG",
|
||
"amneziawgNoEvents": "Подій AmneziaWG ще не зафіксовано",
|
||
"config": "Конфігурація",
|
||
"backupTitle": "Резервне копіювання та відновлення",
|
||
"exportDatabase": "Резервна копія",
|
||
"exportDatabaseDesc": "Натисніть, щоб завантажити файл .db, що містить резервну копію вашої поточної бази даних на ваш пристрій. Цей самий файл можна відновити на панелі, що працює на PostgreSQL.",
|
||
"importDatabase": "Відновити",
|
||
"importDatabaseDesc": "Натисніть, щоб вибрати та завантажити резервну копію .db або міграційний дамп (.dump) з вашого пристрою для відновлення бази даних.",
|
||
"importDatabaseSuccess": "Базу даних успішно імпортовано",
|
||
"importDatabaseError": "Виникла помилка під час імпорту бази даних",
|
||
"readDatabaseError": "Виникла помилка під час читання бази даних",
|
||
"getDatabaseError": "Виникла помилка під час отримання бази даних",
|
||
"getConfigError": "Виникла помилка під час отримання файлу конфігурації",
|
||
"backupPostgresNote": "Ця панель працює на PostgreSQL. «Резервна копія» завантажує архів pg_dump (.dump), а «Відновлення» завантажує його назад через pg_restore. «Відновлення» також приймає базу даних SQLite (.db) або міграційний дамп SQLite та імпортує їхні дані в PostgreSQL. На сервері мають бути встановлені клієнтські інструменти PostgreSQL (pg_dump і pg_restore).",
|
||
"exportDatabasePgDesc": "Натисніть, щоб завантажити дамп PostgreSQL (.dump) вашої поточної бази даних на ваш пристрій.",
|
||
"importDatabasePgDesc": "Натисніть, щоб вибрати та завантажити резервну копію PostgreSQL (.dump), базу даних SQLite (.db) або міграційний дамп SQLite для відновлення бази даних. Це замінить усі поточні дані.",
|
||
"migrationDownload": "Завантажити файл міграції",
|
||
"migrationDownloadPgDesc": "Натисніть, щоб завантажити базу даних SQLite (.db), створену з ваших даних PostgreSQL і готову для запуску панелі на SQLite.",
|
||
"avg": "середнє",
|
||
"peak": "пік",
|
||
"free": "вільно",
|
||
"openSockets": "відкритих сокетів",
|
||
"throughputSub": "Разом за інтерфейсом",
|
||
"avgWindow": "Середнє за період",
|
||
"healthWarm": "{list} — підвищене навантаження",
|
||
"healthCritical": "{list} — критичний рівень",
|
||
"panel": "Панель",
|
||
"threads": "Потоки",
|
||
"uptime": "Час роботи",
|
||
"logLevelDebug": "Налагодження",
|
||
"logLevelInfo": "Інформація",
|
||
"logLevelNotice": "Сповіщення",
|
||
"logLevelWarning": "Попередження",
|
||
"logLevelError": "Помилка",
|
||
"accessDirect": "НАПРЯМУ",
|
||
"accessBlocked": "ЗАБЛОКОВАНО",
|
||
"accessProxy": "ЧЕРЕЗ ПРОКСІ",
|
||
"importKeepHostSettings": "Зберегти налаштування цієї машини",
|
||
"importKeepHostSettingsDesc": "Залишає адреси та порти цієї панелі, базовий шлях, сертифікати та посвідчення для вузлів замість тих, що у завантаженому файлі."
|
||
},
|
||
"inbounds": {
|
||
"totalDownUp": "Всього надісланих/отриманих",
|
||
"totalUsage": "Всього використанно",
|
||
"inboundCount": "Загальна кількість вхідних",
|
||
"operate": "Меню",
|
||
"enable": "Увімкнено",
|
||
"remark": "Примітка",
|
||
"node": "Вузол",
|
||
"deployTo": "Розгорнути на",
|
||
"localPanel": "Локальна панель",
|
||
"fallbacks": {
|
||
"title": "Fallback'и",
|
||
"empty": "Фолбеків поки немає",
|
||
"add": "Додати фолбек",
|
||
"pickInbound": "Оберіть інбаунд",
|
||
"matchAny": "будь-який",
|
||
"destPlaceholder": "авто (listen:порт дочірнього)",
|
||
"needsTls": "Fallbacks стануть доступні після вибору TLS або Reality на вкладці «Безпека» (лише VLESS/Trojan поверх RAW)."
|
||
},
|
||
"protocol": "Протокол",
|
||
"port": "Порт",
|
||
"portMap": "Відображення портів",
|
||
"traffic": "Трафік",
|
||
"speed": "Швидкість",
|
||
"expireDate": "Тривалість",
|
||
"createdAt": "Створено",
|
||
"updatedAt": "Оновлено",
|
||
"resetTraffic": "Скинути трафік",
|
||
"addInbound": "Додати вхідний",
|
||
"generalActions": "Загальні дії",
|
||
"modifyInbound": "Змінити вхідний",
|
||
"deleteConfirmTitle": "Видалити вхідні \"{remark}\"?",
|
||
"deleteConfirmContent": "Це видалить вхідні та всіх його клієнтів. Цю дію неможливо скасувати.",
|
||
"resetConfirmTitle": "Скинути трафік \"{remark}\"?",
|
||
"resetConfirmContent": "Скидає лічильники відправки/отримання цього вхідного до 0.",
|
||
"selectedCount": "Обрано {count}",
|
||
"selectAll": "Вибрати все",
|
||
"bulkDeleteConfirmTitle": "Видалити {count} вхідних підключень?",
|
||
"bulkDeleteConfirmContent": "Будуть видалені вибрані вхідні підключення та всі їхні клієнти. Цю дію неможливо скасувати.",
|
||
"cloneConfirmTitle": "Клонувати вхідні \"{remark}\"?",
|
||
"cloneConfirmContent": "Створює копію з новим портом і порожнім списком клієнтів.",
|
||
"delAllClients": "Видалити всіх клієнтів",
|
||
"delAllClientsConfirmTitle": "Видалити всіх {count} клієнтів із \"{remark}\"?",
|
||
"delAllClientsConfirmContent": "Видаляє всіх клієнтів цього вхідного й скидає їхні записи трафіку. Сам вхідний зберігається. Цю дію не можна скасувати.",
|
||
"attachClients": "Прив'язати клієнтів до…",
|
||
"addClientsToGroup": "Додати клієнтів до групи…",
|
||
"attachClientsTitle": "Прив'язати клієнтів з «{remark}»",
|
||
"attachClientsDesc": "Прив'язує тих самих {count} клієнт(ів) (з тим самим UUID/паролем і спільним трафіком) до обраних вхідних. Вони залишаються і на цьому вхідному.",
|
||
"attachClientsTargets": "Цільові вхідні",
|
||
"attachClientsNoTargets": "Немає інших сумісних вхідних для прив'язки.",
|
||
"attachClientsResult": "Прив'язано {attached}, пропущено {skipped}.",
|
||
"attachClientsResultMixed": "Прив'язано {attached}, пропущено {skipped}, помилок {errors}.",
|
||
"attachClientsSelectLabel": "Клієнти для прив'язки",
|
||
"attachClientsSearchPlaceholder": "Пошук email або коментаря",
|
||
"attachClientsStatusDisabled": "Вимкнено",
|
||
"attachClientsSelectedCount": "Обрано {selected} з {total}",
|
||
"attachExistingClients": "Прив'язати наявних клієнтів…",
|
||
"attachExistingTitle": "Прив'язати наявних клієнтів до «{remark}»",
|
||
"attachExistingDesc": "Прив'язує наявних клієнтів (доступно {count}) до цього вхідного — той самий UUID/пароль і спільний трафік. Клієнти, уже прив'язані до нього, пропускаються.",
|
||
"attachExistingNoClients": "Клієнтів поки немає. Спершу створіть клієнтів, потім прив'яжіть їх тут.",
|
||
"attachExistingStatusAttached": "Вже прив'язано",
|
||
"detachClients": "Від'єднати клієнтів",
|
||
"detachClientsTitle": "Від'єднати клієнтів з «{remark}»",
|
||
"detachClientsDesc": "Видаляє обраних клієнт(ів) лише з цього вхідного. Записи клієнтів зберігаються (використовуйте Delete для повного видалення). У джерела всього {count} клієнт(ів).",
|
||
"detachClientsResult": "Від'єднано {detached}, пропущено {skipped}.",
|
||
"detachClientsResultMixed": "Від'єднано {detached}, пропущено {skipped}, помилок {errors}.",
|
||
"detachClientsSelectLabel": "Клієнти для від'єднання",
|
||
"exportLinksTitle": "Експортувати посилання вхідних",
|
||
"exportSubsTitle": "Експортувати посилання підписок",
|
||
"exportAllLinksTitle": "Експортувати всі посилання вхідних",
|
||
"exportAllSubsTitle": "Експортувати всі посилання підписок",
|
||
"exportAllLinksFileName": "Усі-вхідні",
|
||
"exportAllSubsFileName": "Усі-вхідні-Subs",
|
||
"inboundJsonTitle": "JSON вхідного",
|
||
"resetTrafficContent": "Ви впевнені, що хочете скинути трафік?",
|
||
"copyLink": "Копіювати URL",
|
||
"address": "Адреса",
|
||
"network": "Мережа",
|
||
"destinationPort": "Порт призначення",
|
||
"targetAddress": "Цільова адреса",
|
||
"monitorDesc": "Залиште порожнім, щоб слухати всі IP-адреси",
|
||
"meansNoLimit": "= Без обмежень. (одиниця: ГБ)",
|
||
"totalFlow": "Загальна витрата",
|
||
"leaveBlankToNeverExpire": "Залиште порожнім, щоб ніколи не закінчувався",
|
||
"certificatePath": "Шлях до файлу",
|
||
"certificateContent": "Вміст файлу",
|
||
"publicKey": "Публічний ключ",
|
||
"privatekey": "Закритий ключ",
|
||
"client": "Клієнт",
|
||
"export": "Експортувати всі URL-адреси",
|
||
"clone": "Клон",
|
||
"resetAllTraffic": "Скинути весь вхідний трафік",
|
||
"resetAllTrafficTitle": "Скинути весь вхідний трафік",
|
||
"resetAllTrafficContent": "Ви впевнені, що бажаєте скинути трафік усіх вхідних?",
|
||
"email": "Email",
|
||
"IPLimit": "Обмеження IP",
|
||
"IPLimitlog": "Журнал IP",
|
||
"IPLimitlogclear": "Очистити журнал",
|
||
"setDefaultCert": "Установити сертифікат з панелі",
|
||
"setDefaultCertEmpty": "Для панелі не налаштовано сертифікат. Спочатку встановіть його в Налаштуваннях.",
|
||
"streamTab": "Потік",
|
||
"securityTab": "Безпека",
|
||
"sniffingTab": "Сніфінг",
|
||
"sniffingMetadataOnly": "Лише метадані",
|
||
"sniffingRouteOnly": "Лише маршрутизація",
|
||
"sniffingIpsExcluded": "Виключені IP",
|
||
"sniffingDomainsExcluded": "Виключені домени",
|
||
"decryption": "Розшифрування",
|
||
"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": "Користувацький",
|
||
"vlessAuthSelected": "Вибрано: {auth}",
|
||
"vlessAuthGenerate": "Генерація ключів",
|
||
"vlessAuthGenerateButton": "Згенерувати",
|
||
"advanced": {
|
||
"title": "Розділи JSON вхідного",
|
||
"subtitle": "Повний JSON вхідного та окремі редактори для settings, sniffing і streamSettings.",
|
||
"all": "Усе",
|
||
"allHelp": "Повний об'єкт вхідного з усіма полями в одному редакторі.",
|
||
"settings": "Налаштування",
|
||
"settingsHelp": "Обгортка блоку settings Xray:",
|
||
"sniffing": "Sniffing",
|
||
"sniffingHelp": "Обгортка блоку sniffing Xray:",
|
||
"stream": "Stream",
|
||
"streamHelp": "Обгортка блоку stream Xray:"
|
||
},
|
||
"subSortIndex": "Порядок",
|
||
"inboundInfo": "Інформація про підключення",
|
||
"exportInbound": "Експортувати вхідні",
|
||
"import": "Імпорт",
|
||
"importInbound": "Імпортувати вхідний",
|
||
"periodicTrafficResetTitle": "Скидання трафіку",
|
||
"periodicTrafficResetDay": "День щомісячного скидання",
|
||
"periodicTrafficReset": {
|
||
"never": "Ніколи",
|
||
"daily": "Щодня",
|
||
"weekly": "Щотижня",
|
||
"monthly": "Щомісяця",
|
||
"hourly": "Щогодини"
|
||
},
|
||
"toasts": {
|
||
"obtain": "Отримати",
|
||
"updateSuccess": "Оновлення пройшло успішно",
|
||
"logCleanSuccess": "Журнал очищено",
|
||
"inboundUpdateSuccess": "Вхідне підключення успішно оновлено",
|
||
"inboundCreateSuccess": "Вхідне підключення успішно створено",
|
||
"bulkDeleted": "Видалено підключень: {count}",
|
||
"bulkDeletedMixed": "Видалено: {ok}, не вдалось: {failed}",
|
||
"clonedMany": "Скопійовано підключень: {count}",
|
||
"clonedMixed": "Скопійовано: {ok}, не вдалось: {failed}",
|
||
"inboundDeleteSuccess": "Вхідне підключення успішно видалено",
|
||
"inboundClientAddSuccess": "Клієнт(и) вхідного підключення додано",
|
||
"inboundClientDeleteSuccess": "Клієнта вхідного підключення видалено",
|
||
"inboundClientUpdateSuccess": "Клієнта вхідного підключення оновлено",
|
||
"savedNodeOfflineWillSync": "Збережено локально. Опорний вузол вимкнено або недоступний — зміни синхронізуються після повторного підключення.",
|
||
"resetAllClientTrafficSuccess": "Весь трафік клієнта скинуто",
|
||
"resetAllTrafficSuccess": "Весь трафік скинуто",
|
||
"resetInboundClientTrafficSuccess": "Трафік скинуто",
|
||
"resetInboundTrafficSuccess": "Трафік вхідного потоку скинуто",
|
||
"trafficGetError": "Помилка отримання даних про трафік",
|
||
"getNewX25519CertError": "Помилка при отриманні сертифіката X25519.",
|
||
"getNewmldsa65Error": "Помилка при отриманні сертифіката mldsa65.",
|
||
"getNewVlessEncError": "Помилка при отриманні сертифіката VlessEnc.",
|
||
"scanRealityTargetError": "Не вдалося просканувати ціль REALITY.",
|
||
"scanRealityTargetFeasible": "Ціль підходить — поля target і SNI заповнено.",
|
||
"scanRealityTargetNotFeasible": "Ціль доступна, але не підходить для REALITY.",
|
||
"scanRealityTargetPrivate": "Ціль працює, але розташована у приватній (локальній) мережі.",
|
||
"invalidClientField": "Клієнт {client}: поле {field} — {reason}",
|
||
"invalidField": "{field} — {reason}",
|
||
"moreIssues": "{message} (+{count} ще)"
|
||
},
|
||
"form": {
|
||
"moveUp": "Вгору",
|
||
"moveDown": "Вниз",
|
||
"addAll": "Додати всі",
|
||
"addAllFallbackTooltip": "Додає рядок fallback для кожного придатного вхідного, ще не приєднаного",
|
||
"peers": "Peers",
|
||
"addPeer": "Додати peer",
|
||
"keepAlive": "Keep-alive",
|
||
"autoSystemRoutesTooltip": "Лише для Windows. CIDR'и автоматично додаються до системної таблиці маршрутизації, щоб відповідний трафік проходив через TUN.",
|
||
"autoOutboundsInterface": "Авто-інтерфейс вихідних",
|
||
"autoOutboundsInterfaceTooltip": "Фізичний інтерфейс для вихідного трафіку. Використовуйте 'auto' для виявлення; вмикається автоматично, коли налаштовано Auto system routes.",
|
||
"rewriteAddress": "Переписати адресу",
|
||
"rewritePort": "Переписати порт",
|
||
"allowedNetwork": "Дозволена мережа",
|
||
"followRedirect": "Слідувати redirect",
|
||
"accounts": "Акаунти",
|
||
"allowTransparent": "Дозволити прозорий",
|
||
"encryptionMethod": "Метод шифрування",
|
||
"fakeTlsDomain": "Домен FakeTLS (SNI)",
|
||
"mtprotoSecret": "Секрет",
|
||
"mtgDomainFrontingIp": "IP домен-фронтингу",
|
||
"mtgDomainFrontingPort": "Порт домен-фронтингу",
|
||
"mtgDomainFrontingProxyProtocol": "PROXY-протокол домен-фронтингу",
|
||
"mtgDomainFrontingHint": "Куди mtg надсилає не-Telegram трафік — наприклад, на ваш фейковий сайт NGINX. Залиште IP порожнім, щоб використовувати домен FakeTLS через DNS; типовий порт — 443.",
|
||
"mtgProxyProtocolListener": "Приймати PROXY-протокол (слухач)",
|
||
"mtgPreferIp": "Перевага IP",
|
||
"mtgDebug": "Журнал налагодження",
|
||
"mtgRouteThroughXray": "Маршрутизація через Xray",
|
||
"mtgRouteThroughXrayHint": "Спрямуйте трафік Telegram цього проксі через Xray, щоб він підкорявся вашим правилам маршрутизації. Сайдкар mtg виходить через локальний SOCKS-міст із тегом цього вхідного підключення; використовуйте цей тег на вкладці «Маршрутизація» для розширених правил.",
|
||
"mtgRouteOutbound": "Вихідне",
|
||
"mtgRouteOutboundHint": "Необов'язково. Примусово спрямувати трафік Telegram через це вихідне з'єднання (або балансувальник). Залиште порожнім, щоб вирішували ваші правила маршрутизації.",
|
||
"mtgRouteOutboundPlaceholder": "Використовувати правила маршрутизації",
|
||
"mtprotoFakeTlsDomainHint": "Домен FakeTLS за замовчуванням для генерації секрету нового клієнта. Кожен клієнт може використовувати власний домен.",
|
||
"mtgThrottleMaxConnections": "Макс. з'єднань",
|
||
"mtgThrottleMaxConnectionsHint": "Обмеження одночасних з'єднань усіх користувачів зі справедливим розподілом. 0 — вимкнено.",
|
||
"mtgAdTagInvalid": "Рекламний тег має містити рівно 32 шістнадцяткові символи.",
|
||
"mtgPublicIpv4": "Публічний IPv4",
|
||
"mtgPublicIpv6": "Публічний IPv6",
|
||
"mtgPublicIpHint": "Доступна публічна адреса цього сервера, яку використовує проміжний проксі рекламного тега. Залиште порожнім, щоб mtg визначив її автоматично.",
|
||
"visionTestseed": "Vision testseed",
|
||
"version": "Версія",
|
||
"udpIdleTimeout": "UDP idle timeout (с)",
|
||
"masquerade": "Masquerade",
|
||
"type": "Тип",
|
||
"upstreamUrl": "Upstream URL",
|
||
"rewriteHost": "Переписати Host",
|
||
"skipTlsVerify": "Пропустити TLS verify",
|
||
"directory": "Каталог",
|
||
"statusCode": "Код статусу",
|
||
"body": "Body",
|
||
"headers": "Заголовки",
|
||
"proxyProtocol": "Proxy Protocol",
|
||
"requestVersion": "Версія запиту",
|
||
"requestMethod": "Метод запиту",
|
||
"requestPath": "Шлях запиту",
|
||
"requestHeaders": "Заголовки запиту",
|
||
"responseVersion": "Версія відповіді",
|
||
"responseStatus": "Статус відповіді",
|
||
"responseReason": "Причина відповіді",
|
||
"responseHeaders": "Заголовки відповіді",
|
||
"heartbeatPeriod": "Період heartbeat",
|
||
"serviceName": "Назва сервісу",
|
||
"authority": "Authority",
|
||
"multiMode": "Multi Mode",
|
||
"maxBufferedUpload": "Макс. буферизоване завантаження",
|
||
"maxUploadSize": "Макс. розмір завантаження (байт)",
|
||
"streamUpServer": "Stream-Up Server",
|
||
"serverMaxHeaderBytes": "Server Max Header Bytes",
|
||
"paddingBytes": "Padding Bytes",
|
||
"uplinkHttpMethod": "HTTP-метод Uplink",
|
||
"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",
|
||
"sessionIDTableHint": "Набір символів для генерації session ID: попередньо визначене ім'я (ALPHABET, Base62, hex, number, …) або рядок ASCII. Залиште порожнім для значення xray-core за замовчуванням.",
|
||
"sessionIDLength": "Довжина Session ID",
|
||
"sessionIDLengthHint": "Довжина або діапазон (напр., 8-16) згенерованого session ID. Використовується лише коли задано таблицю; мінімум має бути більший за 0.",
|
||
"sequencePlacement": "Sequence Placement",
|
||
"sequenceKey": "Sequence Key",
|
||
"uplinkDataPlacement": "Uplink Data Placement",
|
||
"uplinkDataKey": "Uplink Data Key",
|
||
"noSseHeader": "Без заголовка SSE",
|
||
"ttiMs": "TTI (мс)",
|
||
"uplinkMbps": "Uplink (МБ/с)",
|
||
"downlinkMbps": "Downlink (МБ/с)",
|
||
"cwndMultiplier": "Множник CWND",
|
||
"maxSendingWindow": "Макс. вікно відправки",
|
||
"externalProxy": "External Proxy",
|
||
"forceTls": "Примусовий TLS",
|
||
"fingerprint": "Fingerprint",
|
||
"defaultOption": "За замовчуванням",
|
||
"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": "Залиште 0, щоб використовувати значення за умовчанням ОС. Ненульові значення обмежують оголошуване вікно приймання TCP; значення на кшталт 600 (з прикладу в документації Xray) можуть обвалити пропускну здатність на каналах із високою затримкою.",
|
||
"tcpFastOpen": "TCP Fast Open",
|
||
"multipathTcp": "Multipath TCP",
|
||
"penetrate": "Penetrate",
|
||
"v6Only": "Лише V6",
|
||
"tcpCongestion": "TCP Congestion",
|
||
"dialerProxy": "Dialer Proxy",
|
||
"trustedXForwardedFor": "Довірений X-Forwarded-For",
|
||
"trustedXForwardedForHint": "Довіряти цьому заголовку запиту для визначення справжнього IP клієнта (наприклад, CF-Connecting-IP за CDN Cloudflare). Працює лише на транспортах WebSocket, HTTPUpgrade, XHTTP та gRPC. Залиште порожнім, щоб ігнорувати заголовки пересилання.",
|
||
"proxyProtocolHint": "Приймати заголовок PROXY protocol, щоб отримати справжній IP клієнта від висхідного L4-тунелю чи релея (HAProxy, gost, nginx-stream, Xray dokodemo-door) або Cloudflare Spectrum. Висхідний вузол МУСИТЬ надсилати PROXY protocol. Працює на TCP, WebSocket, HTTPUpgrade та gRPC; не працює на mKCP.",
|
||
"realClientIp": "Справжній IP клієнта",
|
||
"realClientIpHint": "Отримувати справжній IP відвідувача, коли трафік надходить на цей вхідний через CDN або релей, замість адреси проміжного вузла. Виберіть пресет, щоб заповнити відповідні поля sockopt нижче. Ці поля ніколи не надсилаються клієнтам у підписках.",
|
||
"realClientIpPresetOff": "Вимк. / напряму",
|
||
"realClientIpPresetCloudflare": "Cloudflare CDN",
|
||
"realClientIpPresetProxyProtocol": "L4-релей / Spectrum (PROXY)",
|
||
"realClientIpTrustedHeaderTransportWarn": "Trusted X-Forwarded-For працює лише на WebSocket, HTTPUpgrade та XHTTP. На поточному транспорті цей заголовок ігнорується.",
|
||
"realClientIpProxyProtocolTransportWarn": "PROXY protocol не підтримується на цьому транспорті (mKCP). Використовуйте TCP/RAW, WebSocket, HTTPUpgrade, gRPC або XHTTP.",
|
||
"addressPortStrategy": "Стратегія адрес+порт",
|
||
"tryDelayMs": "Затримка спроби (мс)",
|
||
"prioritizeIPv6": "Пріоритет IPv6",
|
||
"interleave": "Interleave",
|
||
"maxConcurrentTry": "Макс. одночасних спроб",
|
||
"customSockopt": "Користувацький sockopt",
|
||
"addCustomOption": "Додати опцію",
|
||
"serverNameIndication": "SNI",
|
||
"cipherSuites": "Cipher Suites",
|
||
"autoOption": "Авто",
|
||
"minMaxVersion": "Мін/Макс версія",
|
||
"rejectUnknownSni": "Відхиляти невідомий SNI",
|
||
"disableSystemRoot": "Вимкнути System Root",
|
||
"sessionResumption": "Відновлення сесії",
|
||
"oneTimeLoading": "Одноразове завантаження",
|
||
"usageOption": "Опція використання",
|
||
"buildChain": "Build Chain",
|
||
"echKey": "ECH key",
|
||
"echConfig": "ECH config",
|
||
"pinnedPeerCertSha256": "Закріплений SHA-256 сертифіката пира",
|
||
"pinnedPeerCertSha256Tip": "SHA-256-хеші сертифіката пира у вигляді шістнадцяткового рядка (напр. e8e2d3…), через кому. Лише панель — не записується в конфіг xray сервера, але додається до посилань спільного доступу, щоб клієнти могли закріпити сертифікат.",
|
||
"pinnedPeerCertSha256Placeholder": "шістнадцятковий хеш(і), через кому",
|
||
"getNewEchCert": "Отримати новий ECH-сертифікат",
|
||
"show": "Показати",
|
||
"xver": "Xver",
|
||
"target": "Ціль",
|
||
"maxTimeDiff": "Макс. різниця в часі (мс)",
|
||
"minClientVer": "Мін. версія клієнта",
|
||
"maxClientVer": "Макс. версія клієнта",
|
||
"minClientVerHint": "Порожнє поле не означає «без обмежень»: Xray-core застосує вбудований мінімум використовуваної збірки ядра (26.3.27 у поточних релізах) і відхилятиме клієнтів зі старішою версією — зокрема сторонні ядра, як-от Mihomo та sing-box. Значення 1.0.0 дозволить їх, але допустить застарілі TLS-відбитки.",
|
||
"maxClientVerHint": "Порожнє поле — без верхньої межі. Якщо задано, значення не має бути нижчим за чинний мінімум — «Мін. версія клієнта», а коли те поле порожнє — вбудований мінімум Xray-core, інакше всіх клієнтів буде відхилено.",
|
||
"clientVerInvalid": "Версія клієнта — до трьох чисел через крапку, кожне 0-255 (наприклад 26.3.27)",
|
||
"maxClientVerBelowMin": "Макс. версія клієнта не має бути нижчою за мінімальну версію клієнта",
|
||
"shortIds": "Short IDs",
|
||
"realityTargetHint": "Обов'язково. Має містити порт (напр., example.com:443). Без порту Xray-core не запускається.",
|
||
"realityTargetRequired": "Ціль REALITY обов'язкова",
|
||
"realityTargetNeedsPort": "Ціль REALITY має містити порт (напр., example.com:443)",
|
||
"realityTargetInvalidPort": "Ціль REALITY має недійсний порт",
|
||
"scan": "Сканувати",
|
||
"findTargets": "Знайти цілі",
|
||
"scanModalTitle": "Сканер цілей REALITY",
|
||
"scanModalDesc": "Перевірте домен або проскануйте діапазон IP / CIDR, щоб виявити нові цілі REALITY за їхніми сертифікатами. Залиште поле порожнім для перевірки звичайних кандидатів.",
|
||
"scanDiscoverPlaceholder": "IP, CIDR або домен — порожнє для звичайних кандидатів",
|
||
"scanStatus": "Статус",
|
||
"scanFeasible": "Підходить",
|
||
"scanNotFeasible": "Не підходить",
|
||
"scanCurve": "Обмін ключами",
|
||
"scanCert": "Сертифікат",
|
||
"scanCertInvalid": "Ненадійний",
|
||
"scanCertExpiry": "Сертифікат діє до",
|
||
"scanSniUsed": "Використаний SNI",
|
||
"scanPrivateNote": "Перевірено у внутрішній (локальній) мережі — ця адреса недоступна з інтернету.",
|
||
"scanPrivateConfirmTitle": "Ціль у локальній мережі",
|
||
"scanPrivateConfirmContent": "«{target}» вказує на приватну або локальну адресу. Перевірка обійде SSRF-захист панелі лише для цього запиту. Продовжити?",
|
||
"scanLatency": "Затримка",
|
||
"scanUse": "Обрати",
|
||
"scanRescan": "Пересканувати",
|
||
"spiderX": "SpiderX",
|
||
"spiderXHint": "Сід на клієнта — панель формує з нього унікальний шлях spx для кожного клієнта; перегенеруйте, щоб оновити шляхи всіх",
|
||
"getNewCert": "Отримати новий сертифікат",
|
||
"mldsa65Seed": "mldsa65 Seed",
|
||
"mldsa65Verify": "mldsa65 Verify",
|
||
"getNewSeed": "Отримати новий Seed",
|
||
"listenHelp": "Можна також указати шлях Unix-сокета (наприклад, /run/xray/in.sock) або ім'я абстрактного сокета з префіксом @ (наприклад, @xray/in.sock), щоб слухати сокет замість TCP-порту — у цьому разі встановіть порт 0.",
|
||
"shareAddrStrategy": "Стратегія адреси поширення",
|
||
"shareAddrStrategyHelp": "Визначає, яку адресу записувати в експортовані посилання поширення, QR-коди та вивід підписки.",
|
||
"shareAddr": "Користувацька адреса поширення",
|
||
"shareAddrHelp": "Використовується лише коли стратегія адреси поширення — користувацька. Введіть хост або IP без схеми та порту.",
|
||
"subSortIndex": "Порядок у підписці",
|
||
"subSortIndexHelp": "Позиція посилань цього вхідного у виводі підписки (сторінка підписки та клієнтські застосунки). Менші значення йдуть першими; за однакових значень зберігається порядок створення. Не впливає на список вхідних у панелі.",
|
||
"disableFlow": "Вимкнути потік XTLS",
|
||
"disableFlowHelp": "Виключити цей inbound з автоматичного додавання xtls-rprx-vision, навіть якщо його транспорт підтримує flow (наприклад, тунельований XHTTP inbound із шифруванням VLESS). Клієнти зберігають Vision на інших сумісних inbound у тій самій підписці. Лише VLESS.",
|
||
"echSockopt": "ECH Sockopt",
|
||
"echSockoptTip": "Параметри сокета для з'єднання, яке Xray використовує для отримання списку конфігурацій ECH (наприклад, спрямувати запит через вихідний dialerProxy). Залиште вимкненим, щоб використовувати типові значення.",
|
||
"curvePreferences": "Налаштування кривих",
|
||
"curvePreferencesTip": "Обмежує криві обміну ключами TLS, які пропонує сервер, у порядку переваги (наприклад, X25519MLKEM768, X25519). Залиште порожнім, щоб використовувати типові значення Xray-core.",
|
||
"masterKeyLog": "Журнал майстер-ключів",
|
||
"masterKeyLogTip": "Шлях для запису майстер-ключів TLS (формат SSLKEYLOGFILE) для налагодження за допомогою Wireshark. Залиште порожнім у продакшені — це дозволяє будь-кому з доступом до файлу розшифрувати трафік.",
|
||
"verifyPeerCertByName": "Перевіряти сертифікат пира за іменем",
|
||
"verifyPeerCertByNameTip": "Вказує клієнтам перевіряти сертифікат сервера за цим іменем замість SNI. Імена через кому. Лише для панелі — включається до посилань спільного доступу (vcn). Сучасна заміна allowInsecure, який Xray видалив після 2026-06-01.",
|
||
"pinFromCert": "Заповнити з сертифіката цього вхідного",
|
||
"pinFromRemote": "Отримати хеш пінгуванням SNI (xray tls ping)",
|
||
"pinFromRemoteNoSni": "Спочатку вкажіть SNI (serverName), щоб пінгувати віддалений сертифікат.",
|
||
"pinFromRemoteFailed": "Не вдалося отримати хеш віддаленого сертифіката.",
|
||
"limitFallback": "Обмеження fallback",
|
||
"limitFallbackUpload": "Обмеження вивантаження fallback",
|
||
"limitFallbackDownload": "Обмеження завантаження fallback",
|
||
"afterBytes": "Після байтів",
|
||
"afterBytesTip": "Дозволяє fallback працювати на повній швидкості протягом цієї кількості байтів, а потім починає обмежувати. 0 = обмежувати з першого байта.",
|
||
"bytesPerSec": "Байтів за секунду",
|
||
"bytesPerSecTip": "Обмеження швидкості (байтів/сек) для трафіку fallback після перевищення порогу, щоб зонди не могли використовувати ваш сервер як безкоштовний канал до цілі. 0 = без обмеження (вимикає цей напрямок).",
|
||
"burstBytesPerSec": "Пікових байтів за секунду",
|
||
"burstBytesPerSecTip": "Допуск для коротких сплесків понад сталу швидкість (розмір token-bucket). Якщо менше за «Байтів за секунду», піднімається до цього значення.",
|
||
"shareAddrStrategyOptions": {
|
||
"node": "Адреса вузла",
|
||
"listen": "Адреса прослуховування inbound",
|
||
"custom": "Користувацька"
|
||
}
|
||
},
|
||
"info": {
|
||
"mode": "Режим",
|
||
"grpcServiceName": "grpc serviceName",
|
||
"grpcMultiMode": "grpc multiMode",
|
||
"interfaceName": "Назва інтерфейсу",
|
||
"mtu": "MTU",
|
||
"gateway": "Gateway",
|
||
"dns": "DNS",
|
||
"outboundsInterface": "Інтерфейс вихідних",
|
||
"autoSystemRoutes": "Авто-маршрути системи",
|
||
"followRedirect": "FollowRedirect",
|
||
"auth": "Auth",
|
||
"noKernelTun": "TUN без kernel",
|
||
"keepAlive": "Keep alive",
|
||
"peerNumber": "Peer {n}",
|
||
"peerNumberConfig": "Конфіг Peer {n}"
|
||
},
|
||
"sniffingDestOverride": "Перевизначення призначення"
|
||
},
|
||
"clients": {
|
||
"tabBasics": "Основні",
|
||
"tabCredentials": "Облікові дані",
|
||
"tabLinks": "Посилання",
|
||
"wireguardConfig": "Конфігурація WireGuard",
|
||
"config": "Конфігурація",
|
||
"linksHint": "Додайте сторонні посилання та URL віддалених підписок, щоб включити їх до підписки цього клієнта.",
|
||
"addExternalLink": "Додати зовнішнє посилання",
|
||
"addExternalSubscription": "Додати зовнішню підписку",
|
||
"noExternalLinks": "Зовнішніх посилань ще немає.",
|
||
"noExternalSubscriptions": "Зовнішніх підписок ще немає.",
|
||
"namePrefix": "Префікс імені",
|
||
"lastFetchAt": "Останнє оновлення",
|
||
"lastFetchError": "Помилка оновлення",
|
||
"neverFetched": "Ще не завантажено",
|
||
"submitEdit": "Зберегти зміни",
|
||
"clientCount": "Кількість клієнтів",
|
||
"bulk": "Масове додавання",
|
||
"selectAll": "Вибрати все",
|
||
"clearAll": "Очистити все",
|
||
"method": "Метод",
|
||
"first": "Перший",
|
||
"last": "Останній",
|
||
"ipLog": "Журнал IP",
|
||
"prefix": "Префікс",
|
||
"postfix": "Постфікс",
|
||
"delayedStart": "Запуск після першого використання",
|
||
"expireDays": "Тривалість (днів)",
|
||
"renew": "Авто-продовження",
|
||
"renewDesc": "Автоматичне продовження після закінчення. (0 = вимкнено) (одиниця: день)",
|
||
"renewDays": "Авто-продовження (днів)",
|
||
"searchPlaceholder": "Пошук email, коментаря, sub ID, UUID, паролю, auth, Telegram ID…",
|
||
"filterTitle": "Фільтр клієнтів",
|
||
"clearAllFilters": "Очистити все",
|
||
"filters": {
|
||
"nodes": "Вузли",
|
||
"localPanel": "Локально (ця панель)"
|
||
},
|
||
"showingCount": "Показано {shown} з {total}",
|
||
"sortOldest": "Спочатку старі",
|
||
"sortNewest": "Спочатку нові",
|
||
"sortRecentlyUpdated": "Нещодавно оновлені",
|
||
"sortRecentlyOnline": "Нещодавно у мережі",
|
||
"sortEmailAZ": "Email А→Я",
|
||
"sortEmailZA": "Email Я→А",
|
||
"sortMostTraffic": "Більше трафіку",
|
||
"sortHighestRemaining": "Більше залишку",
|
||
"sortExpiringSoonest": "Швидше закінчуються",
|
||
"has": "Має",
|
||
"hasNot": "Не має",
|
||
"actions": "Дії",
|
||
"totalGB": "Ліміт трафіку (ГБ)",
|
||
"totalGBDesc": "Квота трафіку для цього клієнта. 0 = без обмежень.",
|
||
"expiryTime": "Термін дії",
|
||
"addClients": "Додати клієнтів",
|
||
"limitIp": "Ліміт IP",
|
||
"limitIpDesc": "Максимум одночасних IP-адрес. 0 = без обмежень.",
|
||
"limitHwid": "Ліміт HWID",
|
||
"limitHwidDesc": "Максимум зареєстрованих пристроїв для запитів підписки. 0 = без обмежень.",
|
||
"hwidLog": "Пристрої HWID",
|
||
"hwidDevice": "Зареєстрований пристрій",
|
||
"noHwids": "Пристроїв HWID ще немає",
|
||
"firstSeen": "Перша поява",
|
||
"lastSeen": "Остання поява",
|
||
"deleteHwid": "Видалити пристрій",
|
||
"deleteHwidConfirm": "Видалити цей пристрій? Йому потрібно буде зареєструватися знову під час наступного отримання підписки.",
|
||
"hwidDeleted": "Пристрій видалено.",
|
||
"clearHwidsConfirm": "Видалити всі зареєстровані пристрої? Кожному пристрою потрібно буде зареєструватися знову під час наступного отримання підписки.",
|
||
"limitIpFail2banMissing": "Fail2ban не встановлено, тому обмеження за IP не може бути застосоване. Встановіть Fail2ban із bash-меню x-ui, щоб увімкнути цю опцію.",
|
||
"limitIpFail2banWindows": "Fail2ban недоступний у Windows, тому обмеження за IP не може бути застосоване.",
|
||
"limitIpDisabled": "Функцію обмеження за IP вимкнено на цьому сервері.",
|
||
"password": "Пароль",
|
||
"passwordDesc": "Використовується лише клієнтами Trojan і Shadowsocks; ігнорується для VLESS, VMess, Hysteria та WireGuard.",
|
||
"subId": "ID підписки",
|
||
"online": "У мережі",
|
||
"email": "Email",
|
||
"emailInvalidChars": "Email не може містити пробіли, '/', '\\' або керуючі символи",
|
||
"subIdInvalidChars": "ID підписки не може містити пробіли, '/', '\\' або керуючі символи",
|
||
"group": "Група",
|
||
"groupDesc": "Логічна мітка для групування пов'язаних клієнтів (напр. команда, клієнт, регіон). Фільтрується з панелі інструментів.",
|
||
"groupPlaceholder": "напр. customer-a",
|
||
"comment": "Коментар",
|
||
"traffic": "Трафік",
|
||
"speed": "Швидкість",
|
||
"offline": "Не в мережі",
|
||
"addClient": "Додати клієнта",
|
||
"qrCode": "QR-код",
|
||
"clientInfo": "Інформація про клієнта",
|
||
"editClient": "Редагувати клієнта",
|
||
"client": "Клієнт",
|
||
"enabled": "Увімкнено",
|
||
"remaining": "Залишок",
|
||
"duration": "Тривалість",
|
||
"attachedInbounds": "Прив'язані вхідні",
|
||
"selectInbound": "Виберіть один або кілька вхідних",
|
||
"selectAllInbounds": "Вибрати все",
|
||
"clearAllInbounds": "Очистити все",
|
||
"noSubId": "У цього клієнта немає subId, посилання для спільного доступу відсутнє.",
|
||
"noLinks": "Немає посилань для спільного доступу — спочатку прив'яжіть цього клієнта до вхідного з підтримкою протоколу.",
|
||
"link": "Посилання",
|
||
"resetNotPossible": "Спочатку прив'яжіть цього клієнта до вхідного.",
|
||
"resetAllTraffics": "Скинути трафік усіх клієнтів",
|
||
"resetAllTrafficsTitle": "Скинути трафік усіх клієнтів?",
|
||
"resetAllTrafficsContent": "Лічильники відправлення/отримання кожного клієнта обнулюються. Квоти й термін дії не змінюються. Цю дію неможливо скасувати.",
|
||
"deleteConfirmTitle": "Видалити клієнта {email}?",
|
||
"deleteConfirmContent": "Клієнт буде вилучений з усіх прив'язаних вхідних, його запис трафіку буде знищено. Цю дію неможливо скасувати.",
|
||
"adjustSelected": "Змінити ({count})",
|
||
"subLinksSelected": "Sub-посилання ({count})",
|
||
"addToGroupTitle": "Додати {count} клієнт(ів) до групи",
|
||
"addToGroupTooltip": "Виберіть існуючу групу або введіть нову назву. Використовуйте Ungroup, щоб вилучити клієнтів із поточної групи.",
|
||
"groupName": "Назва групи",
|
||
"addToGroupSuccessToast": "{count} клієнт(ів) додано до {group}",
|
||
"ungroupSuccessToast": "Групу очищено у {count} клієнт(ів)",
|
||
"ungroup": "Розгрупувати",
|
||
"ungroupConfirmTitle": "Видалити {count} клієнт(ів) з їхньої групи?",
|
||
"ungroupConfirmContent": "Очищує мітку групи у кожного обраного клієнта. Самі клієнти зберігаються (використовуйте Delete для повного видалення).",
|
||
"addToGroup": "Додати до групи",
|
||
"attach": "Прив'язати",
|
||
"adjust": "Коригування",
|
||
"subLinks": "Sub-посилання",
|
||
"enable": "Увімкнути",
|
||
"disable": "Вимкнути",
|
||
"bulkEnableConfirmTitle": "Увімкнути {count} клієнтів?",
|
||
"bulkEnableConfirmContent": "Вмикає кожного вибраного клієнта на всіх прив'язаних підключеннях. Клієнти з вичерпаною квотою або простроченим терміном будуть автоматично вимкнені знову.",
|
||
"bulkDisableConfirmTitle": "Вимкнути {count} клієнтів?",
|
||
"bulkDisableConfirmContent": "Вимикає кожного вибраного клієнта на всіх прив'язаних підключеннях. Вони одразу втрачають доступ, але їхні записи та трафік зберігаються.",
|
||
"selectedCount": "Обрано {count}",
|
||
"attachToInboundsTitle": "Прив'язати {count} клієнт(ів) до вхідних",
|
||
"attachToInboundsDesc": "Прив'язує обрані {count} клієнт(ів) (той самий UUID/пароль і спільний трафік) до обраних вхідних. Існуючі прив'язки зберігаються.",
|
||
"attachToInboundsTargets": "Цільові вхідні",
|
||
"attachToInboundsNoTargets": "Немає доступних багатокористувацьких вхідних для прив'язки.",
|
||
"detach": "Від'єднати",
|
||
"detachFromInboundsTitle": "Від'єднати {count} клієнт(ів) від вхідних",
|
||
"detachFromInboundsDesc": "Видаляє обраних {count} клієнт(ів) з обраних вхідних. Пари, де клієнт не був прив'язаний, тихо пропускаються. Записи клієнтів зберігаються (використовуйте Delete для повного видалення).",
|
||
"detachFromInboundsTargets": "Вхідні для від'єднання",
|
||
"detachFromInboundsNoTargets": "Немає доступних багатокористувацьких вхідних.",
|
||
"detachFromInboundsResult": "Від'єднано {detached}, пропущено {skipped}.",
|
||
"detachFromInboundsResultMixed": "Від'єднано {detached}, пропущено {skipped}, помилок {errors}.",
|
||
"subLinksTitle": "Sub-посилання ({count})",
|
||
"subLinkColumn": "URL підписки",
|
||
"subJsonLinkColumn": "URL JSON-підписки",
|
||
"subLinksCopyAll": "Копіювати все",
|
||
"subLinksCopiedAll": "Скопійовано {count} посилань",
|
||
"subLinksEmpty": "Жоден з обраних клієнтів не має ID підписки.",
|
||
"subLinksDisabled": "Сервіс підписки вимкнено.",
|
||
"subLinksDisabledHint": "Увімкніть підписку в Налаштування панелі → Підписка для генерації посилань.",
|
||
"bulkDeleteConfirmTitle": "Видалити {count} клієнтів?",
|
||
"bulkDeleteConfirmContent": "Кожен вибраний клієнт вилучається з усіх прив'язаних вхідних, його запис трафіку знищується. Цю дію неможливо скасувати.",
|
||
"bulkAdjustTitle": "Змінити {count} клієнтів",
|
||
"bulkAdjustHint": "Додатні значення подовжують, від'ємні зменшують. Клієнти з необмеженим терміном або трафіком пропускаються для відповідного поля.",
|
||
"bulkAdjustNothing": "Вкажіть дні або трафік перед застосуванням.",
|
||
"addDays": "Додати дні",
|
||
"addTrafficGB": "Додати трафік (ГБ)",
|
||
"bulkFlow": "Задати flow",
|
||
"bulkFlowNoChange": "Без змін",
|
||
"bulkFlowDisable": "Вимкнути (очистити flow)",
|
||
"delDepleted": "Видалити вичерпаних",
|
||
"delDepletedConfirmTitle": "Видалити вичерпаних клієнтів?",
|
||
"delDepletedConfirmContent": "Видаляються всі клієнти, у яких вичерпана квота трафіку або сплив термін. Цю дію неможливо скасувати.",
|
||
"exportClients": "Експортувати клієнтів",
|
||
"importClients": "Імпортувати клієнтів",
|
||
"import": "Імпорт",
|
||
"delOrphans": "Видалити клієнтів без вхідного",
|
||
"delOrphansConfirmTitle": "Видалити клієнтів без вхідного?",
|
||
"delOrphansConfirmContent": "Видаляється кожен клієнт, не прив'язаний до жодного вхідного, разом із його записом трафіку. Цю дію неможливо скасувати.",
|
||
"auth": "Авторизація",
|
||
"hysteriaAuth": "Hysteria Auth",
|
||
"hysteriaAuthDesc": "Облікові дані, які використовують лише клієнти Hysteria. Для Trojan і Shadowsocks використовуйте поле «Пароль».",
|
||
"uuid": "UUID",
|
||
"flow": "Flow",
|
||
"vmessSecurity": "Безпека VMess",
|
||
"wireguardPrivateKey": "Приватний ключ WireGuard",
|
||
"wireguardPublicKey": "Публічний ключ WireGuard",
|
||
"wireguardPreSharedKey": "Спільний ключ WireGuard",
|
||
"wireguardAllowedIPs": "Дозволені IP WireGuard",
|
||
"wireguardAllowedIPsHint": "Залиште порожнім для автопризначення; розділяйте записи комами",
|
||
"amneziaWgPrivateKey": "Приватний ключ AmneziaWG",
|
||
"amneziaWgPublicKey": "Публічний ключ AmneziaWG",
|
||
"amneziaWgPreSharedKey": "Спільний ключ AmneziaWG",
|
||
"amneziaWgAllowedIPs": "Дозволені IP AmneziaWG",
|
||
"amneziaWgAllowedIPsHint": "Залиште порожнім для автопризначення; розділяйте записи комами",
|
||
"amneziaWgForwardedPorts": "Перенаправлені порти",
|
||
"amneziaWgForwardedPortsHint": "Порти/діапазони, що перенаправляються (DNAT) на цього клієнта, напр. 80, 443, 8000-8100. Залиште порожнім, якщо не потрібно.",
|
||
"amneziaWgConfig": "Конфігурація AmneziaWG",
|
||
"mtprotoSecret": "Секрет MTProto",
|
||
"mtprotoSecretHint": "Секрет FakeTLS клієнта. Згенеруйте заново, щоб змінити.",
|
||
"mtprotoAdTag": "Рекламний тег (спонсорський канал)",
|
||
"mtprotoAdTagHint": "Необовʼязковий шістнадцятковий тег із 32 символів, який видається під час реєстрації проксі в Telegram. Якщо задано, цей клієнт маршрутизується через проміжні проксі Telegram, а спонсорський канал зʼявляється вгорі списку чатів.",
|
||
"reverseTag": "Зворотний тег",
|
||
"reverseTagPlaceholder": "Необов'язковий Reverse tag",
|
||
"telegramId": "ID користувача Telegram",
|
||
"telegramIdPlaceholder": "Числовий ID користувача Telegram (0 = немає)",
|
||
"ipLimit": "Ліміт IP",
|
||
"toasts": {
|
||
"deleted": "Клієнта видалено",
|
||
"trafficReset": "Трафік скинуто",
|
||
"allTrafficsReset": "Трафік усіх клієнтів скинуто",
|
||
"bulkDeleted": "Видалено клієнтів: {count}",
|
||
"bulkDeletedMixed": "Видалено: {ok}, не вдалось: {failed}",
|
||
"bulkEnabled": "Увімкнено клієнтів: {count}",
|
||
"bulkEnabledMixed": "Увімкнено: {ok}, не вдалось: {failed}",
|
||
"bulkDisabled": "Вимкнено клієнтів: {count}",
|
||
"bulkDisabledMixed": "Вимкнено: {ok}, не вдалось: {failed}",
|
||
"bulkCreated": "Створено клієнтів: {count}",
|
||
"bulkCreatedMixed": "Створено: {ok}, не вдалось: {failed}",
|
||
"bulkAdjusted": "Змінено клієнтів: {count}",
|
||
"bulkAdjustedMixed": "Змінено: {ok}, пропущено: {skipped}",
|
||
"delDepleted": "Видалено вичерпаних клієнтів: {count}",
|
||
"delOrphans": "Видалено клієнтів без вхідного: {count}",
|
||
"imported": "Імпортовано клієнтів: {count}",
|
||
"importedMixed": "Імпортовано: {ok}, пропущено: {failed}"
|
||
},
|
||
"renewMax": "Ліміт подовжень",
|
||
"renewMaxDesc": "Скільки разів автоподовження може спрацювати, перш ніж клієнта буде залишено спливати. 0 — без обмеження. Надолуження кількох пропущених періодів витрачає по одному подовженню на період.",
|
||
"renewOnDay": "Подовжувати числа",
|
||
"renewOnDayDesc": "Подовжувати цього числа кожного місяця, опівночі за часовим поясом панелі, замість інтервалу в днях. Якщо в місяці такого числа немає, подовження припаде на останній день. 0 — залишити режим інтервалу.",
|
||
"renewsUsed": "Подовжень витрачено"
|
||
},
|
||
"groups": {
|
||
"name": "Назва",
|
||
"clientCount": "Клієнти",
|
||
"totalGroups": "Всього груп",
|
||
"totalGroupedClients": "Клієнти з групою",
|
||
"trafficUsed": "Використаний трафік",
|
||
"upload": "Вивантаження",
|
||
"download": "Завантаження",
|
||
"totalTraffic": "Загальний трафік",
|
||
"totalUpDown": "Всього вивантажено / завантажено",
|
||
"addGroup": "Додати групу",
|
||
"createSuccess": "Групу «{name}» створено.",
|
||
"rename": "Перейменувати",
|
||
"renameTitle": "Перейменувати {name}",
|
||
"renameCollision": "Група з назвою «{name}» вже існує.",
|
||
"renameSuccess": "Групу перейменовано на {count} клієнт(ах).",
|
||
"deleteConfirmTitle": "Видалити групу {name}?",
|
||
"deleteConfirmContent": "Це видаляє групу й очищує її мітку у {count} клієнт(ів). Самі клієнти не видаляються.",
|
||
"deleteSuccess": "Групу очищено у {count} клієнт(ів).",
|
||
"resetTraffic": "Скинути трафік",
|
||
"resetConfirmTitle": "Скинути трафік групи {name}?",
|
||
"resetConfirmContent": "Це скине лише лічильник трафіку групи. Лічильники окремих клієнтів не змінюються.",
|
||
"resetSuccess": "Трафік групи {name} скинуто.",
|
||
"adjustSuccess": "Скориговано {count} клієнт(ів) у {name}.",
|
||
"emptyForAction": "У цій групі ще немає клієнтів.",
|
||
"deleteGroupOnly": "Видалити групу (зберегти клієнтів)",
|
||
"deleteClients": "Видалити клієнтів групи",
|
||
"deleteClientsConfirmTitle": "Видалити всіх клієнтів у {name}?",
|
||
"deleteClientsConfirmContent": "Це безповоротно видалить {count} клієнт(ів) разом з їхніми записами трафіку. Мітка групи також очищується. Дію не можна скасувати.",
|
||
"deleteClientsSuccess": "Видалено {count} клієнт(ів).",
|
||
"deleteClientsMixed": "{ok} видалено, {failed} пропущено",
|
||
"addToGroup": "Додати клієнтів…",
|
||
"addToGroupTitle": "Додати клієнтів до групи «{name}»",
|
||
"addToGroupDesc": "Виберіть клієнтів для додавання в цю групу. Існуючі прив'язки до вхідних зберігаються; змінюється лише мітка групи. Клієнти, які вже в цій групі, не відображаються.",
|
||
"addToGroupEmpty": "Немає інших клієнтів для додавання.",
|
||
"addToGroupResult": "Додано {count} клієнт(ів) до {name}.",
|
||
"removeFromGroup": "Видалити клієнтів…",
|
||
"removeFromGroupTitle": "Видалити клієнтів з групи «{name}»",
|
||
"removeFromGroupDesc": "Виберіть учасників для видалення з цієї групи. Самі клієнти зберігаються (використовуйте «Видалити клієнтів групи» для повного видалення).",
|
||
"removeFromGroupResult": "Видалено {count} клієнт(ів) з {name}."
|
||
},
|
||
"nodes": {
|
||
"addNode": "Додати вузол",
|
||
"editNode": "Змінити вузол",
|
||
"totalNodes": "Усього вузлів",
|
||
"onlineNodes": "У мережі",
|
||
"offlineNodes": "Не в мережі",
|
||
"avgLatency": "Середня затримка",
|
||
"name": "Назва",
|
||
"namePlaceholder": "напр. de-frankfurt-1",
|
||
"addressPlaceholder": "panel.example.com або 1.2.3.4",
|
||
"remark": "Примітка",
|
||
"scheme": "Схема",
|
||
"address": "Адреса",
|
||
"port": "Порт",
|
||
"basePath": "Базовий шлях",
|
||
"apiToken": "API Токен",
|
||
"apiTokenPlaceholder": "Токен зі сторінки Налаштувань віддаленої панелі",
|
||
"apiTokenHint": "Віддалена панель показує свій токен API в Автентифікація → Токен API.",
|
||
"apiTokenKeepHint": "Залиште порожнім, щоб зберегти поточний токен",
|
||
"allowPrivateAddress": "Дозволити приватну адресу",
|
||
"allowPrivateAddressHint": "Увімкнути лише для вузлів у приватній мережі або VPN.",
|
||
"outboundTag": "Вихідне з'єднання",
|
||
"outboundTagHint": "Маршрутизуйте трафік API панелі цього вузла через вибраний вихідний Xray. Вхідний міст зворотної петлі автоматично додається до поточної конфігурації та застосовується в реальному часі. Залиште порожнім для прямого підключення.",
|
||
"outboundTagPlaceholder": "Пряме підключення",
|
||
"inboundSyncMode": "Імпорт інбаундів",
|
||
"inboundSyncModeHint": "Виберіть інбаунди для імпорту з цього вузла. Для наявних вузлів типово імпортуються всі.",
|
||
"allInbounds": "Усі інбаунди",
|
||
"selectedInbounds": "Вибрані інбаунди",
|
||
"inboundTags": "Інбаунди",
|
||
"inboundTagsHint": "Вибір зіставляється за тегом інбаунду. Порожній список нічого не імпортує.",
|
||
"inboundTagsPlaceholder": "Завантажте та виберіть інбаунди",
|
||
"loadInbounds": "Завантажити інбаунди з вузла",
|
||
"inboundsLoaded": "Завантажено інбаундів: {{count}}",
|
||
"inboundsLoadFailed": "Не вдалося завантажити інбаунди",
|
||
"enable": "Увімкнено",
|
||
"status": "Статус",
|
||
"cpu": "CPU",
|
||
"mem": "Пам'ять",
|
||
"netUp": "Вихідний (KB/s)",
|
||
"netDown": "Вхідний (KB/s)",
|
||
"uptime": "Час роботи",
|
||
"latency": "Затримка",
|
||
"lastHeartbeat": "Останній пінг",
|
||
"xrayVersion": "Версія Xray",
|
||
"panelVersion": "Версія панелі",
|
||
"actions": "Дії",
|
||
"probe": "Перевірити зараз",
|
||
"updatePanel": "Оновити панель",
|
||
"updateSelected": "Оновити вибрані ({count})",
|
||
"updateAvailable": "Доступне оновлення",
|
||
"updateConfirmTitle": "Оновити {count} вузлів до останньої версії?",
|
||
"updateConfirmContent": "Кожен вибраний вузол завантажить останній реліз і перезапуститься. Оновлюються лише увімкнені вузли в мережі.",
|
||
"updateDevChannel": "Оновити до каналу розробки (останній коміт)",
|
||
"testConnection": "Перевірити з'єднання",
|
||
"connectionOk": "З'єднання в порядку ({ms} мс)",
|
||
"connectionFailed": "Помилка з'єднання",
|
||
"never": "ніколи",
|
||
"justNow": "щойно",
|
||
"subNode": "Підвузол",
|
||
"subNodeTip": "Лише для читання: підлеглий вузол, доступний через {parent}. Керуйте ним із власної панелі {parent}.",
|
||
"deleteConfirmTitle": "Видалити вузол \"{name}\"?",
|
||
"deleteConfirmContent": "Це зупинить моніторинг вузла. Сама віддалена панель не зазнає змін.",
|
||
"statusValues": {
|
||
"online": "У мережі",
|
||
"offline": "Не в мережі",
|
||
"unknown": "Невідомо",
|
||
"xrayError": "Помилка Xray",
|
||
"xrayStopped": "Зупинено"
|
||
},
|
||
"toasts": {
|
||
"list": "Не вдалося завантажити вузли",
|
||
"obtain": "Не вдалося завантажити вузол",
|
||
"add": "Додати вузол",
|
||
"update": "Оновити вузол",
|
||
"delete": "Видалити вузол",
|
||
"deleted": "Вузол видалено",
|
||
"test": "Перевірити з'єднання",
|
||
"fillRequired": "Назва, адреса, порт та токен API є обов'язковими",
|
||
"probeFailed": "Помилка перевірки",
|
||
"updateStarted": "Оновлення панелі розпочато",
|
||
"updateResult": "Оновлення запущено на {ok} вузлах, {failed} не вдалося",
|
||
"updateNoneEligible": "Виберіть принаймні один увімкнений вузол у мережі",
|
||
"saveMtls": "Зберегти mTLS вузла",
|
||
"reloadMtls": "Reload master mTLS credential"
|
||
},
|
||
"tlsVerifyMode": "Перевірка TLS",
|
||
"tlsVerifyModeHint": "Як панель перевіряє HTTPS-сертифікат вузла. Закріплення або Пропуск — для самопідписаних сертифікатів (лише https-вузли).",
|
||
"tlsVerify": "Перевіряти (стандартний CA)",
|
||
"tlsPin": "Закріпити сертифікат (SHA-256)",
|
||
"tlsSkip": "Пропустити перевірку",
|
||
"tlsMtls": "Взаємний TLS (клієнтський сертифікат)",
|
||
"mtlsFormHint": "Цей вузол автентифікує панель за допомогою клієнтського сертифіката. Скопіюйте CA цієї панелі з розділу «mTLS вузла» на вузол, задайте його довірений CA та перезапустіть вузол.",
|
||
"mtls": {
|
||
"title": "mTLS вузла",
|
||
"intro": "Взаємний TLS додає фактор клієнтського сертифіката поверх API-токена для викликів між вузлами. Це необов’язково: залиште порожнім, щоб використовувати лише автентифікацію за токеном.",
|
||
"copyCa": "Скопіювати CA цієї панелі",
|
||
"copyCaHint": "Передайте цей CA вузлам, якими керує ця панель, потім встановіть їхній режим перевірки TLS на «Взаємний TLS».",
|
||
"caCopied": "Сертифікат CA скопійовано в буфер обміну",
|
||
"caFailed": "Не вдалося отримати сертифікат CA",
|
||
"trustLabel": "Довірений CA (батьківська панель)",
|
||
"trustHint": "Якщо ця панель сама є вузлом, вставте сюди CA керуючої панелі, щоб вимагати її клієнтський сертифікат. Перезапустіть панель для застосування.",
|
||
"trustPlaceholder": "-----BEGIN CERTIFICATE-----",
|
||
"save": "Зберегти довірений CA",
|
||
"saved": "Довірений CA збережено — перезапустіть панель для застосування"
|
||
},
|
||
"tlsSkipWarning": "Пропуск перевірки прибирає захист від атак «людина посередині» — токен API можуть перехопити. Краще закріпити сертифікат.",
|
||
"pinnedCert": "SHA-256 закріпленого сертифіката",
|
||
"pinnedCertHint": "SHA-256 сертифіката вузла у base64 або hex. Натисніть «Отримати», щоб зчитати його з вузла зараз.",
|
||
"pinnedCertPlaceholder": "SHA-256 у base64 або hex",
|
||
"fetchPin": "Отримати",
|
||
"pinFetched": "Поточний сертифікат вузла отримано",
|
||
"pinFetchFailed": "Не вдалося отримати сертифікат"
|
||
},
|
||
"settings": {
|
||
"defaultTag": "Типово",
|
||
"title": "Параметри панелі",
|
||
"save": "Зберегти",
|
||
"infoDesc": "Кожна внесена тут зміна повинна бути збережена. Перезапустіть панель, щоб застосувати зміни.",
|
||
"restartPanel": "Перезапустити панель",
|
||
"restartPanelDesc": "Ви впевнені, що бажаєте перезапустити панель? Якщо ви не можете отримати доступ до панелі після перезапуску, будь ласка, перегляньте інформацію журналу панелі на сервері.",
|
||
"restartPanelSuccess": "Панель успішно перезапущено",
|
||
"actions": "Дії",
|
||
"resetDefaultConfig": "Відновити значення за замовчуванням",
|
||
"panelSettings": "Загальні",
|
||
"securitySettings": "Автентифікація",
|
||
"securityWarnings": "Попередження безпеки",
|
||
"panelExposed": "Ваша панель може бути відкрита:",
|
||
"warnHttp": "Панель працює через звичайний HTTP — налаштуйте TLS для продакшну.",
|
||
"warnDefaultPort": "Стандартний порт 2053 широко відомий — змініть його на випадковий.",
|
||
"warnDefaultBasePath": "Базовий шлях за замовчуванням \"/\" широко відомий — змініть його на випадковий.",
|
||
"warnDefaultSubPath": "Шлях підписки за замовчуванням \"/sub/\" широко відомий — змініть його.",
|
||
"warnDefaultJsonPath": "JSON-шлях підписки за замовчуванням \"/json/\" широко відомий — змініть його.",
|
||
"TGBotSettings": "Telegram-бот",
|
||
"panelListeningIP": "Слухати IP",
|
||
"panelListeningIPDesc": "IP-адреса для веб-панелі. (залиште порожнім, щоб слухати всі IP-адреси)",
|
||
"panelListeningDomain": "Домен прослуховування",
|
||
"panelListeningDomainDesc": "Доменне ім'я для веб-панелі. (залиште порожнім, щоб слухати всі домени та IP-адреси)",
|
||
"panelPort": "Порт прослуховування",
|
||
"panelPortDesc": "Номер порту для веб-панелі. (має бути невикористаний порт)",
|
||
"publicKeyPath": "Шлях відкритого ключа",
|
||
"publicKeyPathDesc": "Шлях до файлу відкритого ключа для веб-панелі. (починається з ‘/‘)",
|
||
"privateKeyPath": "Шлях приватного ключа",
|
||
"privateKeyPathDesc": "Шлях до файлу приватного ключа для веб-панелі. (починається з ‘/‘)",
|
||
"panelUrlPath": "URI-шлях",
|
||
"panelUrlPathDesc": "Шлях URL для веб-панелі. (починається з ‘/‘ і закінчується ‘/‘)",
|
||
"pageSize": "Розмір сторінки",
|
||
"pageSizeDesc": "Визначити розмір сторінки для вхідної таблиці. (0 = вимкнено)",
|
||
"panelOutbound": "Вихідний для трафіку панелі",
|
||
"panelOutboundDesc": "Маршрутизує власні запити панелі — перевірки версій і завантаження панелі/Xray, Telegram та звичайне оновлення geo-файлів — через цей вихідний Xray для обходу фільтрації GitHub/Telegram на стороні сервера. Локальний міст-вхідний додається до робочої конфігурації автоматично і застосовується наживо. Вбудоване в Xray автооновлення Geodata не зачіпається; воно має власний вихідний для завантаження. Залиште порожнім для прямого підключення.",
|
||
"panelOutboundPh": "Пряме підключення",
|
||
"datepicker": "Тип календаря",
|
||
"datepickerPlaceholder": "Виберіть дату",
|
||
"datepickerDescription": "Заплановані завдання виконуватимуться на основі цього календаря.",
|
||
"oldUsername": "Поточне ім'я користувача",
|
||
"currentPassword": "Поточний пароль",
|
||
"newUsername": "Нове ім'я користувача",
|
||
"newPassword": "Новий пароль",
|
||
"telegramBotEnable": "Увімкнути Telegram Bot",
|
||
"telegramBotEnableDesc": "Вмикає бота Telegram.",
|
||
"telegramToken": "Telegram-токен",
|
||
"telegramTokenDesc": "Токен бота Telegram, отриманий від '{'@'}BotFather'.",
|
||
"telegramProxy": "SOCKS-проксі",
|
||
"telegramProxyDesc": "Вмикає проксі-сервер SOCKS5 для підключення до Telegram. (відкоригуйте параметри відповідно до посібника)",
|
||
"telegramAPIServer": "Telegram API сервер",
|
||
"telegramAPIServerDesc": "Сервер Telegram API для використання. Залиште поле порожнім, щоб використовувати сервер за умовчанням.",
|
||
"telegramChatId": "Ідентифікатор чату адміністратора",
|
||
"telegramChatIdDesc": "Ідентифікатори чату адміністратора Telegram. (розділені комами) (отримайте тут {'@'}userinfobot) або (використовуйте команду '/id' у боті)",
|
||
"telegramNotifyTime": "Час сповіщення",
|
||
"telegramNotifyTimeDesc": "Як часто бот Telegram надсилає періодичні звіти. Виберіть готовий інтервал або «Власний», щоб ввести вираз crontab.",
|
||
"notifyTime": {
|
||
"every": "@every — повторювати з інтервалом",
|
||
"hourly": "@hourly — щогодини",
|
||
"daily": "@daily — щодня о 00:00",
|
||
"weekly": "@weekly — щотижня",
|
||
"monthly": "@monthly — щомісяця",
|
||
"custom": "Власний (crontab)",
|
||
"seconds": "Секунди",
|
||
"minutes": "Хвилини",
|
||
"hours": "Години",
|
||
"interval": "Інтервал",
|
||
"unit": "Одиниця"
|
||
},
|
||
"tgNotifyBackup": "Резервне копіювання бази даних",
|
||
"tgNotifyBackupDesc": "Надіслати файл резервної копії бази даних зі звітом.",
|
||
"tgNotifyLogin": "Сповіщення про вхід",
|
||
"tgNotifyLoginDesc": "Отримувати сповіщення про ім'я користувача, IP-адресу та час щоразу, коли хтось намагається увійти у вашу веб-панель.",
|
||
"sessionMaxAge": "Тривалість сеансу",
|
||
"sessionMaxAgeDesc": "Тривалість, протягом якої ви можете залишатися в системі. (одиниця: хвилина)",
|
||
"expireTimeDiff": "Повідомлення про дату закінчення",
|
||
"expireTimeDiffDesc": "Отримувати сповіщення про термін дії при досягненні цього порогу. (одиниця: день)",
|
||
"trafficDiff": "Повідомлення про обмеження трафіку",
|
||
"trafficDiffDesc": "Отримувати сповіщення про обмеження трафіку при досягненні цього порогу. (одиниця: ГБ)",
|
||
"tgNotifyCpu": "Сповіщення про завантаження ЦП",
|
||
"tgNotifyCpuDesc": "Отримувати сповіщення, якщо навантаження ЦП перевищує це порогове значення. (одиниця: %)",
|
||
"timeZone": "Часовий пояс",
|
||
"timeZoneDesc": "Заплановані завдання виконуватимуться на основі цього часового поясу.",
|
||
"subSettings": "Підписка",
|
||
"subEnable": "Увімкнути службу підписки",
|
||
"subEnableDesc": "Вмикає службу підписки.",
|
||
"subJsonEnable": "Увімкнути/вимкнути JSON-кінець підписки незалежно.",
|
||
"subJsonEnableTitle": "JSON-підписка",
|
||
"subClashEnableTitle": "Підписка Clash / Mihomo",
|
||
"subFormatsTipTitle": "Налаштування підписки для окремих форматів",
|
||
"subFormatsTipDesc": "Окремо налаштуйте URL-шляхи, зворотні URL-адреси й автоматичне визначення клієнтів для JSON та Clash / Mihomo.",
|
||
"subFormatsTipAction": "Відкрити формати підписки",
|
||
"subJsonAutoDetect": "Автоматично визначати клієнтів Xray JSON",
|
||
"subJsonAutoDetectDesc": "Якщо параметр увімкнено, розпізнані сумісні клієнти під час запиту стандартної URL-адреси підписки автоматично отримують масив конфігурацій Xray JSON. Інші клієнти отримують звичайну відповідь raw/Base64. Для застосування потрібно ввімкнути JSON-підписку та перезапустити панель.",
|
||
"subJsonAlwaysArray": "Завжди повертати масив JSON",
|
||
"subJsonAlwaysArrayDesc": "Повертає явну JSON-підписку як масив навіть для одного профілю відповідно до стандарту XTLS. Автоматично визначені JSON-відповіді завжди використовують масив. Вимкніть, щоб зберегти попередню відповідь одним об’єктом.",
|
||
"subJsonUserAgentRegex": "Регулярний вираз User-Agent Xray JSON",
|
||
"subJsonUserAgentRegexDesc": "Регулярний вираз Go RE2, який зіставляється з User-Agent клієнта для автоматичного вибору формату Xray JSON на стандартній URL-адресі підписки. Типово порожнє, тому автоматичне визначення вимкнено, доки ви не задасте шаблон для потрібних клієнтів. Інші клієнти отримують відповідь raw/Base64. Після зміни перезапустіть панель.",
|
||
"subClashAutoDetect": "Автоматично визначати клієнтів Clash/Mihomo",
|
||
"subClashAutoDetectDesc": "Якщо параметр увімкнено, розпізнані клієнти Clash/Mihomo під час запиту стандартної URL-адреси підписки автоматично отримують Clash YAML. Браузери й надалі показують сторінку підписки, інші клієнти отримують звичайну відповідь raw/Base64, а явні URL-адреси JSON і Clash залишаються доступними. Для застосування потрібно ввімкнути підписку Clash/Mihomo та перезапустити панель.",
|
||
"subClashUserAgentRegex": "Регулярний вираз User-Agent Clash/Mihomo",
|
||
"subClashUserAgentRegexDesc": "Регулярний вираз Go RE2, який зіставляється з User-Agent клієнта для розпізнавання клієнтів Clash/Mihomo на стандартній URL-адресі підписки. Залиште поле порожнім для стандартного шаблону. Після зміни перезапустіть панель.",
|
||
"subTitle": "Назва Підписки",
|
||
"subTitleDesc": "Назва, яка відображається у VPN-клієнті. Підтримує токени ідентифікації клієнта: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subSupportUrl": "URL підтримки",
|
||
"subSupportUrlDesc": "Посилання на технічну підтримку, що відображається у VPN-клієнті. Підтримує токени ідентифікації клієнта: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subProfileUrl": "URL профілю",
|
||
"subProfileUrlDesc": "Посилання на ваш вебсайт, що відображається у VPN-клієнті. Підтримує токени ідентифікації клієнта: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subAnnounce": "Оголошення",
|
||
"subAnnounceDesc": "Текст оголошення, що відображається у VPN-клієнті. Підтримує токени ідентифікації клієнта: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subThemeDir": "Каталог теми підписки",
|
||
"subThemeDirDesc": "Абсолютний шлях до теки з користувацьким шаблоном (index.html/sub.html) для сторінки підписки (наприклад, /etc/3x-ui/sub_templates/my-theme/). Залиште порожнім, щоб використовувати сторінку за замовчуванням.",
|
||
"subThemeDirDocs": "Посібник із шаблонів ↗",
|
||
"subEnableRouting": "Увімкнути маршрутизацію",
|
||
"subEnableRoutingDesc": "Глобальне налаштування для увімкнення маршрутизації у VPN-клієнті. (Тільки для Happ)",
|
||
"subRoutingRules": "Правила маршрутизації",
|
||
"subRoutingRulesDesc": "Вставте готове посилання happ:// або одну постійну HTTPS-адресу. Панель оновлює віддалені правила у фоні та зберігає останнє коректне значення, тому запит підписки не чекає на джерело. (Тільки для Happ)",
|
||
"subHideSettings": "Приховати налаштування сервера",
|
||
"subHideSettingsDesc": "Приховати можливість перегляду та редагування конфігурації сервера у VPN-клієнті. (Тільки для Happ)",
|
||
"subIncyEnableRouting": "Увімкнути маршрутизацію",
|
||
"subIncyEnableRoutingDesc": "Вставляти профіль маршрутизації в тіло підписки для клієнта Incy. (Тільки для Incy)",
|
||
"subIncyRoutingRules": "Правила маршрутизації",
|
||
"subIncyRoutingRulesDesc": "Вставте готове посилання incy:// або постійну HTTPS-адресу JSON. Incy створює профіль autorouting і автоматично його оновлює. (Тільки для Incy)",
|
||
"subClashEnableRouting": "Увімкнути маршрутизацію",
|
||
"subClashEnableRoutingDesc": "Додавати глобальні правила маршрутизації Clash/Mihomo до згенерованих YAML-підписок.",
|
||
"subClashRoutingRules": "Глобальні правила маршрутизації",
|
||
"subClashRoutingRulesDesc": "Вставте правила/YAML або одну постійну HTTPS-адресу. Панель оновлює її у фоні, імпортує лише групи, постачальників правил і правила, зберігаючи створені VPN-вузли та останнє коректне значення.",
|
||
"subListen": "Слухати IP",
|
||
"subListenDesc": "IP-адреса для служби підписки. (залиште порожнім, щоб слухати всі IP-адреси)",
|
||
"subPort": "Слухати порт",
|
||
"subPortDesc": "Номер порту для служби підписки. (має бути невикористаний порт). Також використовується для побудови посилання/QR підписки, що показується в панелі, коли поле «URI зворотного проксі» нижче порожнє — якщо підписка доступна через зворотний проксі на іншому порту, вкажіть замість цього «URI зворотного проксі».",
|
||
"subCertPath": "Шлях відкритого ключа",
|
||
"subCertPathDesc": "Шлях до файлу відкритого ключа для служби підписки. (починається з ‘/‘)",
|
||
"subKeyPath": "Шлях приватного ключа",
|
||
"subKeyPathDesc": "Шлях до файлу приватного ключа для служби підписки. (починається з ‘/‘)",
|
||
"subPath": "URI-шлях",
|
||
"subPathDesc": "Шлях URI для служби підписки. (починається з ‘/‘ і закінчується ‘/‘)",
|
||
"subDomain": "Домен прослуховування",
|
||
"subDomainDesc": "Ім'я домену для служби підписки. (залиште порожнім, щоб слухати всі домени та IP-адреси). Також використовується як резервний домен для показаного посилання підписки, коли «URI зворотного проксі» порожнє — вкажіть «URI зворотного проксі», якщо панель і підписка доступні через різні домени (наприклад, за зворотним проксі).",
|
||
"subUpdates": "Інтервали оновлення",
|
||
"subUpdatesDesc": "Інтервали оновлення URL-адреси підписки в клієнтських програмах. (одиниця: година)",
|
||
"subEncrypt": "Кодувати",
|
||
"subEncryptDesc": "Повернений вміст послуги підписки матиме кодування Base64.",
|
||
"subURI": "URI зворотного проксі",
|
||
"subURIDesc": "Повна базова URL-адреса (scheme://домен[:порт]/шлях/) для посилання підписки та QR-коду, використовується замість Домену/Порту прослуховування. Вкажіть це, якщо підписка доступна через зворотний проксі або на іншому домені/порту, ніж вказано вище.",
|
||
"externalTrafficInformEnable": "Інформація про зовнішній трафік",
|
||
"externalTrafficInformEnableDesc": "Повідомляти зовнішній API про кожне оновлення трафіку.",
|
||
"externalTrafficInformURI": "Інформаційний URI зовнішнього трафіку",
|
||
"externalTrafficInformURIDesc": "Оновлення трафіку надсилаються на цей URI.",
|
||
"restartXrayOnClientDisable": "Перезапускати Xray після авто-вимкнення",
|
||
"restartXrayOnClientDisableDesc": "Коли клієнт автоматично вимикається через закінчення терміну дії або ліміт трафіку, перезапускати Xray.",
|
||
"fragment": "Фрагментація",
|
||
"fragmentDesc": "Увімкнути фрагментацію для пакету привітання TLS",
|
||
"fragmentSett": "Параметри фрагментації",
|
||
"noisesDesc": "Увімкнути Noises.",
|
||
"noisesSett": "Налаштування Noises",
|
||
"trustedProxyCidrs": "Довірені CIDR проксі",
|
||
"trustedProxyCidrsDesc": "IP/CIDR через кому, яким дозволено встановлювати заголовки forwarded host, proto та client IP.",
|
||
"ldap": {
|
||
"enable": "Увімкнути LDAP-синхронізацію",
|
||
"host": "LDAP-хост",
|
||
"port": "Порт LDAP",
|
||
"useTls": "Використовувати TLS (LDAPS)",
|
||
"skipTlsVerify": "Пропустити перевірку сертифіката TLS",
|
||
"skipTlsVerifyDesc": "Небезпечно — вимикає перевірку сертифіката сервера. Використовуйте лише з внутрішніми/ненадійними CA.",
|
||
"bindDn": "Bind DN",
|
||
"passwordConfigured": "Налаштовано; залиште порожнім для збереження поточного паролю.",
|
||
"passwordUnconfigured": "Не налаштовано.",
|
||
"passwordPlaceholder": "Налаштовано — введіть нове значення для заміни",
|
||
"baseDn": "Base DN",
|
||
"userFilter": "Фільтр користувача",
|
||
"userAttr": "Атрибут користувача (username/email)",
|
||
"vlessField": "Атрибут VLESS-flag",
|
||
"flagField": "Загальний атрибут flag (опц.)",
|
||
"flagFieldDesc": "Якщо задано, перевизначає VLESS flag — напр. shadowInactive.",
|
||
"truthyValues": "Truthy-значення",
|
||
"truthyValuesDesc": "Через кому; за замовч.: true,1,yes,on",
|
||
"invertFlag": "Інвертувати flag",
|
||
"invertFlagDesc": "Увімкніть, коли атрибут означає «вимкнено» (напр. shadowInactive).",
|
||
"syncSchedule": "Розклад синхронізації",
|
||
"syncScheduleDesc": "Рядок типу cron, напр. @every 1m",
|
||
"inboundTags": "Теги вхідних",
|
||
"inboundTagsDesc": "Вхідні, на яких LDAP-синхронізація може авто-створювати або авто-видаляти клієнтів.",
|
||
"noInbounds": "Вхідних не знайдено. Спочатку створіть один у Вхідних.",
|
||
"autoCreate": "Авто-створення клієнтів",
|
||
"autoDelete": "Авто-видалення клієнтів",
|
||
"defaultTotalGb": "Обсяг за замовч. (ГБ)",
|
||
"defaultExpiryDays": "Термін за замовч. (дні)",
|
||
"defaultIpLimit": "Ліміт IP за замовч."
|
||
},
|
||
"subFormats": {
|
||
"finalMask": "Final Mask",
|
||
"finalMaskDesc": "Додає TCP/UDP-маски finalmask Xray і параметри QUIC до кожного створеного профілю Xray JSON. Потрібен застосунок із підтримкою підписок Xray JSON і нова версія ядра Xray.",
|
||
"packets": "Пакети",
|
||
"length": "Довжина",
|
||
"interval": "Інтервал",
|
||
"maxSplit": "Макс. розбиття",
|
||
"noises": "Шуми",
|
||
"noiseItem": "Шум №{n}",
|
||
"type": "Тип",
|
||
"packet": "Пакет",
|
||
"delayMs": "Затримка (мс)",
|
||
"applyTo": "Застосувати до",
|
||
"addNoise": "+ Шум",
|
||
"concurrency": "Паралельність",
|
||
"xudpConcurrency": "Паралельність xudp",
|
||
"xudpUdp443": "xudp UDP 443"
|
||
},
|
||
"mux": "Mux",
|
||
"muxDesc": "Передавати кілька незалежних потоків даних у межах встановленого потоку даних.",
|
||
"muxSett": "Налаштування Mux",
|
||
"direct": "Пряме підключення",
|
||
"directDesc": "Безпосередньо встановлює з’єднання з доменами або діапазонами IP певної країни.",
|
||
"notifications": "Сповіщення",
|
||
"certs": "Сертифікати",
|
||
"externalTraffic": "Зовнішній трафік",
|
||
"dateAndTime": "Дата та час",
|
||
"proxyAndServer": "Проксі та сервер",
|
||
"intervals": "Інтервали",
|
||
"information": "Інформація",
|
||
"profile": "Профіль",
|
||
"language": "Мова",
|
||
"telegramBotLanguage": "Мова Telegram-бота",
|
||
"security": {
|
||
"admin": "Облікові дані адміністратора",
|
||
"twoFactor": "Двофакторна аутентифікація",
|
||
"twoFactorEnable": "Увімкнути 2FA",
|
||
"twoFactorEnableDesc": "Додає додатковий рівень аутентифікації для підвищення безпеки.",
|
||
"twoFactorModalSetTitle": "Увімкнути двофакторну аутентифікацію",
|
||
"twoFactorModalDeleteTitle": "Вимкнути двофакторну аутентифікацію",
|
||
"twoFactorModalSteps": "Щоб налаштувати двофакторну аутентифікацію, виконайте кілька кроків:",
|
||
"twoFactorModalFirstStep": "1. Відскануйте цей QR-код у програмі для аутентифікації або скопіюйте токен біля QR-коду та вставте його в програму",
|
||
"twoFactorModalSecondStep": "2. Введіть код з програми",
|
||
"twoFactorModalRemoveStep": "Введіть код з програми, щоб вимкнути двофакторну аутентифікацію.",
|
||
"twoFactorModalChangeCredentialsTitle": "Змінити облікові дані",
|
||
"twoFactorModalChangeCredentialsStep": "Введіть код з додатку, щоб змінити облікові дані адміністратора.",
|
||
"twoFactorModalSetSuccess": "Двофакторна аутентифікація була успішно встановлена",
|
||
"twoFactorModalDeleteSuccess": "Двофакторна аутентифікація була успішно видалена",
|
||
"twoFactorModalError": "Невірний код",
|
||
"show": "Показати",
|
||
"hide": "Сховати",
|
||
"apiTokenNew": "Новий токен",
|
||
"apiTokenName": "Назва",
|
||
"apiTokenNamePlaceholder": "наприклад, central-panel-a",
|
||
"apiTokenNameRequired": "Назва обов'язкова",
|
||
"apiTokenEmpty": "Поки немає токенів — створіть один для автентифікації ботів або віддалених панелей.",
|
||
"apiTokenDeleteWarning": "Будь-який клієнт, що використовує цей токен, негайно втратить автентифікацію.",
|
||
"apiTokenCreatedTitle": "Токен створено",
|
||
"apiTokenCreatedNotice": "Скопіюйте цей токен зараз. З міркувань безпеки він не зберігається у читабельному вигляді й більше не відображатиметься."
|
||
},
|
||
"toasts": {
|
||
"modifySettings": "Параметри було змінено.",
|
||
"getSettings": "Виникла помилка під час отримання параметрів.",
|
||
"modifyUserError": "Виникла помилка під час зміни облікових даних адміністратора.",
|
||
"modifyUser": "Ви успішно змінили облікові дані адміністратора.",
|
||
"originalUserPassIncorrect": "Поточне ім'я користувача або пароль недійсні",
|
||
"userPassMustBeNotEmpty": "Нове ім'я користувача та пароль порожні",
|
||
"getOutboundTrafficError": "Помилка отримання вихідного трафіку",
|
||
"resetOutboundTrafficError": "Помилка скидання вихідного трафіку"
|
||
},
|
||
"smtpSettings": "Налаштування SMTP",
|
||
"smtpEnable": "Увімкнути сповіщення електронною поштою",
|
||
"smtpEnableDesc": "Увімкнути сповіщення електронною поштою через SMTP",
|
||
"smtpHost": "Хост SMTP",
|
||
"smtpHostDesc": "Ім'я хоста сервера SMTP (наприклад, smtp.gmail.com)",
|
||
"smtpPort": "Порт SMTP",
|
||
"smtpPortDesc": "Порт сервера SMTP (типово: 587)",
|
||
"smtpUsername": "Ім'я користувача SMTP",
|
||
"smtpUsernameDesc": "Ім'я користувача для автентифікації SMTP",
|
||
"smtpFrom": "Адреса відправника (From)",
|
||
"smtpFromDesc": "Адреса в заголовку From листа. Залиште порожнім, щоб використати ім'я користувача.",
|
||
"smtpFromName": "Ім'я відправника (From)",
|
||
"smtpFromNameDesc": "Необов'язкове відображуване ім'я перед адресою в заголовку From.",
|
||
"smtpPassword": "Пароль SMTP",
|
||
"smtpPasswordDesc": "Пароль для автентифікації SMTP",
|
||
"smtpTo": "Отримувачі",
|
||
"smtpToDesc": "Адреси електронної пошти отримувачів, розділені комами",
|
||
"emailSettings": "Електронна пошта",
|
||
"emailNotifications": "Сповіщення",
|
||
"smtpEventBusNotify": "Сповіщення про події електронною поштою",
|
||
"smtpEventBusNotifyDesc": "Виберіть, які події спричиняють сповіщення електронною поштою",
|
||
"tgEventBusNotify": "Сповіщення про події в Telegram",
|
||
"tgEventBusNotifyDesc": "Виберіть, які події спричиняють сповіщення в Telegram",
|
||
"testSmtp": "Надіслати тестовий лист",
|
||
"testTgBot": "Надіслати тестове повідомлення",
|
||
"eventGroupOutbound": "Вихідні з'єднання",
|
||
"eventGroupXray": "Ядро Xray",
|
||
"eventGroupSystem": "Система",
|
||
"eventGroupSecurity": "Безпека",
|
||
"eventGroupNode": "Вузли",
|
||
"eventOutboundDown": "Недоступне",
|
||
"eventOutboundUp": "Доступне",
|
||
"eventXrayCrash": "Збій",
|
||
"eventNodeDown": "Недоступний",
|
||
"eventNodeUp": "Доступний",
|
||
"eventCPUHigh": "Високе навантаження на CPU (%)",
|
||
"requestFailed": "Запит не вдалося виконати",
|
||
"smtpEncryption": "Шифрування",
|
||
"smtpEncryptionDesc": "Метод шифрування з'єднання SMTP",
|
||
"smtpEncryptionNone": "Немає (відкритий текст)",
|
||
"smtpEncryptionStartTLS": "STARTTLS",
|
||
"smtpEncryptionTLS": "TLS (неявне)",
|
||
"smtpStageConnect": "З'єднання",
|
||
"smtpStageAuth": "Автентифікація",
|
||
"smtpStageSend": "Надсилання",
|
||
"smtpTestSuccess": "Тестовий лист успішно надіслано",
|
||
"smtpHostNotConfigured": "Хост SMTP не налаштовано",
|
||
"smtpNoRecipients": "Отримувачів не налаштовано",
|
||
"smtpFromNotConfigured": "Адресу відправника SMTP не налаштовано",
|
||
"eventLoginAttempt": "Спроба входу",
|
||
"telegramTokenConfigured": "Налаштовано; залиште порожнім, щоб зберегти поточний токен.",
|
||
"telegramTokenPlaceholder": "Налаштовано — введіть новий токен для заміни",
|
||
"smtpPasswordConfigured": "Налаштовано; залиште порожнім, щоб зберегти поточний пароль.",
|
||
"smtpPasswordPlaceholder": "Налаштовано — введіть новий пароль для заміни",
|
||
"smtpNotInitialized": "SMTP не ініціалізовано",
|
||
"tgBotNotEnabled": "Бот Telegram не увімкнено",
|
||
"tgTestFailed": "Тест Telegram не вдався",
|
||
"tgTestSuccess": "Тестове повідомлення надіслано в Telegram",
|
||
"tgBotNotRunning": "Бот Telegram не запущено",
|
||
"smtpErrorAuth": "Помилка автентифікації — перевірте ім'я користувача та пароль",
|
||
"smtpErrorStarttls": "Сервер вимагає STARTTLS — змініть тип шифрування",
|
||
"smtpErrorTls": "Сервер вимагає TLS — змініть тип шифрування",
|
||
"smtpErrorRefused": "У з'єднанні відмовлено — перевірте хост і порт",
|
||
"smtpErrorTimeout": "Час очікування з'єднання вичерпано — хост недоступний",
|
||
"smtpErrorRelay": "Сервер відхиляє надсилання з цієї адреси",
|
||
"smtpErrorEof": "З'єднання закрито сервером",
|
||
"smtpErrorUnknown": "Помилка SMTP: {{ .Error }}",
|
||
"eventMemoryHigh": "Високе використання пам'яті (%)",
|
||
"remarkTemplate": "Шаблон примітки",
|
||
"remarkTemplateDesc": "Якщо задано, це замінює модель примітки для кожного посилання підписки — напишіть власний формат із токенами змінних (використовуйте кнопку для їх вставлення). Залиште порожнім, щоб використовувати модель вище.",
|
||
"subShowIdentityOnAllLinks": "Показувати ідентичність на кожному посиланні",
|
||
"subShowIdentityOnAllLinksDesc": "Якщо увімкнено, {{EMAIL}} і {{USERNAME}} залишаються в примітці кожного посилання тіла підписки. Токени використання й надалі лише на першому посиланні.",
|
||
"validation": {
|
||
"pathLeadingSlash": "Шлях має починатися з /"
|
||
},
|
||
"secretClear": "Очистити",
|
||
"secretClearUndo": "Скасувати очищення",
|
||
"calendarGregorian": "Григоріанський (звичайний)",
|
||
"calendarJalalian": "Джалалі (شمسی)",
|
||
"ipLimitAllowlist": "Довірені адреси для ліміту",
|
||
"ipLimitAllowlistDesc": "Адреси та підмережі, які ліміт не рахує і не банить: спільна офісна чи студентська адреса не витратить ліміт клієнта. Через кому, адреса або підмережа.",
|
||
"subBalancers": {
|
||
"menu": "Балансувальники підписки",
|
||
"title": "Балансувальник підписки",
|
||
"add": "Додати балансувальник",
|
||
"desc": "Кожний увімкнений балансувальник додається до JSON-підписки як окремий профіль, що автоматично обирає найкращу з кінцевих точок вибраних інбаундів.",
|
||
"remark": "Примітка",
|
||
"remarkPlaceholder": "Авто · найшвидший",
|
||
"strategy": "Стратегія",
|
||
"strategyLeastLoad": "Найменше навантаження",
|
||
"strategyLeastPing": "Найменший ping",
|
||
"strategyRandom": "Випадково",
|
||
"strategyRoundRobin": "По черзі",
|
||
"sortOrder": "Порядок",
|
||
"sortOrderHelp": "Позиція у списку підписки, чергується з порядком інбаундів; за однакового номера йде після інбаунда.",
|
||
"inbounds": "Інбаунди",
|
||
"inboundsCount": "{count} Інбаунди",
|
||
"enabled": "Увімкнено",
|
||
"empty": "Балансувальників ще немає",
|
||
"deleteConfirm": "Видалити цей балансувальник?",
|
||
"errRemarkRequired": "Вкажіть примітку",
|
||
"errInboundsRequired": "Виберіть хоча б один інбаунд",
|
||
"errSortOrder": "Порядок — ціле число ≥ 1",
|
||
"toasts": {
|
||
"list": "Не вдалося отримати список балансувальників підписки",
|
||
"create": "Не вдалося створити балансувальник підписки",
|
||
"update": "Не вдалося оновити балансувальник підписки",
|
||
"delete": "Не вдалося видалити балансувальник підписки",
|
||
"invalidId": "Некоректний id"
|
||
},
|
||
"tabBalancers": "Балансери",
|
||
"tabObservatory": "Обсерваторія",
|
||
"observatory": {
|
||
"title": "Обсерваторія балансувальника",
|
||
"desc": "Параметри probe-запитів для burstObservatory, що додається у профілі leastPing/leastLoad. random/roundRobin обходяться без обсерваторії. Зберігається як загальна налаштування JSON-підписки.",
|
||
"destination": "URL перевірки",
|
||
"destinationDesc": "Адреса, за якою клієнт перевіряє доступність кожного учасника.",
|
||
"connectivity": "URL зв’язності",
|
||
"connectivityDesc": "Необов’язкова адреса для одноразової перевірки доступності цілі. Залиште порожнім, щоб пропустити.",
|
||
"interval": "Інтервал перевірок",
|
||
"intervalDesc": "Час між раундами перевірок, наприклад 1m.",
|
||
"timeout": "Тайм-аут перевірки",
|
||
"timeoutDesc": "Тайм-аут однієї перевірки, наприклад 5s.",
|
||
"sampling": "Вибірка",
|
||
"samplingDesc": "Кількість підряд перевірок для усереднення стабільності.",
|
||
"httpMethod": "HTTP-метод",
|
||
"httpMethodDesc": "Метод запитів під час перевірок.",
|
||
"note": "Балансувальники leastPing/leastLoad завжди мають burstObservatory. Цей перемикач налаштовує її параметри probe — вимкніть, щоб використовувати вбудовані значення за замовчуванням. Зміни застосовуються після перезапуску панелі."
|
||
}
|
||
}
|
||
},
|
||
"xray": {
|
||
"save": "Зберегти",
|
||
"restartSuccess": "Xray успішно перезапущено",
|
||
"stopSuccess": "Xray успішно зупинено",
|
||
"restartError": "Виникла помилка під час перезапуску Xray.",
|
||
"stopError": "Виникла помилка під час зупинки Xray.",
|
||
"basicTemplate": "Базовий шаблон",
|
||
"advancedTemplate": "Додатково",
|
||
"generalConfigs": "Загальні конфігурації",
|
||
"generalConfigsDesc": "Ці параметри визначатимуть загальні налаштування.",
|
||
"logConfigs": "Лог",
|
||
"logConfigsDesc": "Журнали можуть вплинути на ефективність вашого сервера. Рекомендується вмикати його з розумом лише у випадку ваших потреб",
|
||
"basicRouting": "Основна Маршрутизація",
|
||
"blockConnectionsConfigsDesc": "Ці параметри блокуватимуть трафік на основі запитаних країн.",
|
||
"directConnectionsConfigsDesc": "Пряме з'єднання гарантує, що певний трафік не буде маршрутизовано через інший сервер.",
|
||
"blockips": "Блокувати IP",
|
||
"blockdomains": "Блокувати домени",
|
||
"directips": "Прямі IP",
|
||
"directdomains": "Прямі домени",
|
||
"ipv4Routing": "Маршрутизація IPv4",
|
||
"ipv4RoutingDesc": "Ці параметри спрямовуватимуть трафік на основі певного призначення через IPv4.",
|
||
"Template": "Шаблон розширеної конфігурації Xray",
|
||
"TemplateDesc": "Остаточний конфігураційний файл Xray буде створено на основі цього шаблону.",
|
||
"FreedomStrategy": "Стратегія протоколу свободи",
|
||
"FreedomStrategyDesc": "Установити стратегію виведення для мережі в протоколі свободи.",
|
||
"FreedomHappyEyeballs": "Freedom Happy Eyeballs (IPv4/IPv6)",
|
||
"FreedomHappyEyeballsDesc": "Двостековий набір для прямого (freedom) вихідного — корисно на вихідних серверах із IPv4 та IPv6.",
|
||
"FreedomHappyEyeballsTryDelayDesc": "Мілісекунди перед спробою іншої родини адрес. 150–250 мс — добра початкова точка.",
|
||
"RoutingStrategy": "Загальна стратегія маршрутизації",
|
||
"RoutingStrategyDesc": "Установити загальну стратегію маршрутизації трафіку для вирішення всіх запитів.",
|
||
"outboundTestUrl": "URL тесту outbound",
|
||
"outboundTestUrlDesc": "URL для перевірки з'єднання outbound",
|
||
"Torrent": "Блокувати протокол BitTorrent",
|
||
"Inbounds": "Вхідні",
|
||
"Outbounds": "Вихідні",
|
||
"Balancers": "Балансери",
|
||
"balancerTagRequired": "Тег обов'язковий",
|
||
"balancerSelectorRequired": "Виберіть принаймні один вихідний",
|
||
"balancerLive": "Поточна ціль",
|
||
"balancerOverride": "Примусова ціль",
|
||
"balancerOverridePh": "Авто (стратегія)",
|
||
"balancerLiveRefresh": "Оновити стан балансувальника",
|
||
"balancerNotRunning": "Цей балансувальник неактивний у запущеному Xray — збережіть зміни або спочатку запустіть Xray",
|
||
"routeTester": "Тест маршруту",
|
||
"routeTesterDesc": "Запитайте запущений Xray, через який вихідний буде оброблено з'єднання. Реальний трафік не надсилається — рішення надходить безпосередньо від живого рушія маршрутизації.",
|
||
"routeTesterDest": "Домен або IP",
|
||
"routeTesterPort": "Порт",
|
||
"routeTesterInbound": "Вхідний",
|
||
"routeTesterProtocol": "Виявлений протокол",
|
||
"routeTesterTest": "Тест маршруту",
|
||
"routeTesterMatchedOutbound": "Відповідний вихідний",
|
||
"routeTesterViaBalancer": "через балансувальник",
|
||
"routeTesterDefaultOutbound": "Жодне правило маршрутизації не збіглося — трафік надходить до вихідного за замовчуванням (першого).",
|
||
"Routings": "Правила маршрутизації",
|
||
"importRules": "Імпортувати правила",
|
||
"exportRules": "Експортувати правила",
|
||
"importOutbounds": "Імпортувати вихідні",
|
||
"exportOutbounds": "Експортувати вихідні",
|
||
"importInvalidJson": "Недійсний JSON — очікувався масив або об'єкт із відповідним ключем.",
|
||
"metricsListen": "Точка доступу метрик",
|
||
"metricsListenDesc": "Надає метрики Xray у стилі Prometheus за цією адресою:порт (наприклад, 127.0.0.1:11111). Залиште порожнім, щоб вимкнути. Прив'яжіть до localhost і використовуйте зворотний проксі — доступ без автентифікації.",
|
||
"metricsTag": "Тег метрик",
|
||
"completeTemplate": "Усі",
|
||
"logLevel": "Рівень журналу",
|
||
"logLevelDesc": "Рівень журналу для журналів помилок із зазначенням інформації, яку потрібно записати.",
|
||
"accessLog": "Журнал доступу",
|
||
"accessLogDesc": "Шлях до файлу журналу доступу. Спеціальне значення 'none' вимикає журнали доступу",
|
||
"errorLog": "Журнал помилок",
|
||
"errorLogDesc": "Шлях до файлу журналу помилок. Спеціальне значення 'none' вимикає журнали помилок",
|
||
"dnsLog": "Журнал DNS",
|
||
"dnsLogDesc": "Чи включити журнали запитів DNS",
|
||
"maskAddress": "Маскувати Адресу",
|
||
"maskAddressDesc": "Маска IP-адреси, при активації автоматично замінює IP-адресу, яка з'являється у журналі.",
|
||
"statistics": "Статистика",
|
||
"statsInboundUplink": "Статистика вхідного аплінку",
|
||
"statsInboundDownlink": "Статистика вхідного даунлінку",
|
||
"statsOutboundUplink": "Статистика вихідного аплінку",
|
||
"statsOutboundDownlink": "Статистика вихідного даунлінку",
|
||
"connectionLimits": "Обмеження з'єднання",
|
||
"connectionLimitsDesc": "Політики рівня з'єднання для користувачів рівня 0. Залиште поле порожнім, щоб використовувати значення Xray за замовчуванням.",
|
||
"connIdle": "Тайм-аут простою",
|
||
"connIdleDesc": "Закриває з'єднання після простою протягом вказаної кількості секунд. Зменшення значення швидше звільняє пам'ять і файлові дескриптори на завантажених серверах (за замовчуванням у Xray: 300).",
|
||
"bufferSize": "Розмір буфера",
|
||
"bufferSizeDesc": "Розмір внутрішнього буфера на з'єднання в КБ. Встановіть 0, щоб мінімізувати використання пам'яті на серверах з малим обсягом ОЗП (значення Xray за замовчуванням залежить від платформи).",
|
||
"bufferSizePlaceholder": "авто",
|
||
"seconds": "секунд",
|
||
"rules": {
|
||
"source": "Джерело",
|
||
"dest": "Пункт призначення",
|
||
"inbound": "Вхідний",
|
||
"balancer": "Балансувальник",
|
||
"useComma": "Елементи, розділені комами"
|
||
},
|
||
"routing": {
|
||
"dragToReorder": "Перетягніть для зміни порядку"
|
||
},
|
||
"geoBrowser": {
|
||
"title": "Категорії geo-баз",
|
||
"openTooltip": "Відкрити браузер geo-категорій",
|
||
"database": "База",
|
||
"searchCategory": "Пошук категорії",
|
||
"searchEntries": "Фільтр усередині категорії",
|
||
"selectFound": "Позначити знайдені",
|
||
"selected": "Вибрано {count}",
|
||
"clearAll": "Зняти все",
|
||
"apply": "Застосувати",
|
||
"emptySelection": "Позначте категорії — вони стануть токенами правила",
|
||
"pickCategory": "Виберіть категорію ліворуч, щоб переглянути її вміст",
|
||
"noMatches": "Нічого не знайдено",
|
||
"noFiles": "У теці Xray немає geo-баз",
|
||
"noFilesHint": "Вони з’являться після того, як Xray завантажить geosite.dat і geoip.dat",
|
||
"fileMeta": "{count} категорій · {size} · оновлено {date}",
|
||
"entriesCount": "{count} записів",
|
||
"subnetsCount": "{count} підмереж",
|
||
"shownRange": "Показано {from}–{to} з {total}",
|
||
"loadFailed": "Не вдалося завантажити geo-бази",
|
||
"checkFailed": "Не вдалося перевірити ці значення за geo-базами",
|
||
"parseFailed": "Файл пошкоджено або це не база geosite/geoip",
|
||
"tooLarge": "Завеликий файл для перегляду",
|
||
"unknownCategories": "Немає в базі: {tokens}",
|
||
"missingDatabase": "Файлу бази немає: {tokens} — додайте її в розділі Geodata",
|
||
"unknownAttribute": "Атрибут не знайдено, правило ні з чим не збігатиметься: {tokens}",
|
||
"invalidToken": "Xray не прийме такий запис: {tokens}",
|
||
"wrongKind": "База не того типу для цього поля: {tokens}"
|
||
},
|
||
"ruleForm": {
|
||
"sourceIps": "IP джерела",
|
||
"sourcePort": "Порт джерела",
|
||
"vlessRoute": "VLESS route",
|
||
"attributes": "Атрибути",
|
||
"value": "Значення",
|
||
"user": "Користувач",
|
||
"userPlaceholder": "Виберіть користувачів",
|
||
"userEmpty": "Немає доступних користувачів",
|
||
"userLoadError": "Не вдалося завантажити користувачів",
|
||
"inboundTags": "Теги вхідних",
|
||
"outboundTag": "Тег вихідного",
|
||
"balancerTag": "Тег балансувальника",
|
||
"balancerTagTooltip": "Спрямовує трафік через один з налаштованих балансувальників навантаження"
|
||
},
|
||
"outboundForm": {
|
||
"tagDuplicate": "Тег уже використовується іншим вихідним",
|
||
"tagRequired": "Тег обов'язковий",
|
||
"tagPlaceholder": "унікальний-тег",
|
||
"localIpPlaceholder": "локальний IP",
|
||
"dialerProxyPlaceholder": "Виберіть вихідний для ланцюжка",
|
||
"dialerProxyHint": "Підключайте цей вихідний через інший вихідний (за тегом), щоб побудувати ланцюжок проксі. Залиште порожнім для прямого підключення.",
|
||
"targetStrategyHint": "Як розвʼязується домен призначення перед підключенням: AsIs (типово) — надсилається як є, UseIP… — розвʼязання з відкатом, ForceIP… — розвʼязання обовʼязкове.",
|
||
"addressRequired": "Адреса обов'язкова",
|
||
"portRequired": "Порт обов'язковий",
|
||
"optional": "опційно",
|
||
"udpOverTcp": "UDP over TCP",
|
||
"uotVersion": "Версія UoT",
|
||
"inboundTag": "Тег вхідного",
|
||
"inboundTagPlaceholder": "тег вхідного у правилах маршрутизації",
|
||
"responseType": "Тип відповіді",
|
||
"rewriteNetwork": "Переписати мережу",
|
||
"unchanged": "(без змін)",
|
||
"unchangedAddress": "(без змін) напр. 1.1.1.1",
|
||
"rules": "Правила",
|
||
"ruleN": "Правило {n}",
|
||
"action": "Дія",
|
||
"redirect": "Redirect",
|
||
"finalRules": "Фінальні правила",
|
||
"overrideXrayPrivateIp": "Перевизначити дефолтний блок приватних IP у Xray",
|
||
"blockDelay": "Затримка блоку (мс)",
|
||
"reverseSniffing": "Зворотний sniffing",
|
||
"reserved": "Зарезервовано",
|
||
"minUploadInterval": "Мін. інтервал завантаження (мс)",
|
||
"maxUploadSizeBytes": "Макс. розмір завантаження (байт)",
|
||
"uplinkChunkSize": "Розмір chunk Uplink",
|
||
"noGrpcHeader": "Без gRPC-заголовка",
|
||
"maxConcurrency": "Макс. паралельність",
|
||
"maxConnections": "Макс. з'єднань",
|
||
"maxReuseTimes": "Макс. повторних використань",
|
||
"maxRequestTimes": "Макс. запитів",
|
||
"maxReusableSecs": "Макс. секунд повторного використання",
|
||
"keepAlivePeriod": "Період keep alive",
|
||
"authPassword": "Пароль авторизації",
|
||
"visionTestpre": "Vision testpre",
|
||
"serverNamePlaceholder": "ім'я сервера",
|
||
"verifyPeerName": "Перевіряти ім'я peer",
|
||
"pinnedSha256": "Pinned SHA256",
|
||
"shortId": "Short ID",
|
||
"sockopts": "Sockopts",
|
||
"keepAliveInterval": "Інтервал keep alive",
|
||
"markFwmark": "Mark (fwmark)",
|
||
"interface": "Інтерфейс",
|
||
"proxyProtocol": "Proxy protocol",
|
||
"tcpUserTimeoutMs": "TCP user timeout (мс)",
|
||
"tcpKeepAliveIdleS": "TCP keep-alive idle (с)"
|
||
},
|
||
"outbound": {
|
||
"tag": "Тег",
|
||
"egress": "Egress",
|
||
"egressHint": "Run an HTTP test to show egress IP and country.",
|
||
"outboundStatus": "Статус виходу",
|
||
"sendThrough": "Надіслати через",
|
||
"targetStrategy": "Стратегія призначення",
|
||
"modeRealDelay": "Реальна затримка",
|
||
"testModeTooltip": "TCP: швидкий dial-only probe. HTTP: повний запит через xray. Реальна затримка: повний час із встановленням з'єднання.",
|
||
"testAll": "Тестувати всі",
|
||
"httpStatus": "HTTP-статус",
|
||
"breakdownConnect": "Підключення до проксі",
|
||
"breakdownTls": "TLS через вихідний",
|
||
"breakdownTtfb": "Перший байт",
|
||
"country": "Країна",
|
||
"server": "Сервер",
|
||
"city": "Місто",
|
||
"allCities": "Усі міста",
|
||
"moveToTop": "Перемістити вгору"
|
||
},
|
||
"outboundSub": {
|
||
"manage": "Підписки",
|
||
"title": "Підписки вихідних",
|
||
"remark": "Примітка (необов'язково)",
|
||
"remarkPlaceholder": "напр. вузли HK",
|
||
"url": "URL підписки",
|
||
"urlPlaceholder": "https://... (список посилань у base64)",
|
||
"tagPrefix": "Префікс тегу",
|
||
"tagPrefixPlaceholder": "hk-",
|
||
"interval": "Інтервал оновлення",
|
||
"hours": "год",
|
||
"minutes": "хв",
|
||
"intervalHint": "За замовчуванням 10 хвилин. Фонове завдання перевіряє часто; кожна підписка повторно завантажується лише після того, як мине її власний інтервал.",
|
||
"enabled": "Увімкнено",
|
||
"allowPrivate": "Дозволити приватні адреси",
|
||
"allowPrivateHint": "Дозволити localhost / LAN / приватні IP-адреси для URL цієї підписки. З міркувань безпеки вимкнено за замовчуванням — вмикайте лише для довіреного локального джерела.",
|
||
"prepend": "Перед ручними вихідними",
|
||
"prependHint": "Розмістити вихідні цієї підписки перед вашими ручними, щоб один із них міг стати типовим.",
|
||
"preview": "Попередній перегляд",
|
||
"previewEmpty": "За цим URL вихідних не знайдено.",
|
||
"refreshAll": "Оновити всі",
|
||
"statusOk": "OK",
|
||
"toastUpdated": "Підписку оновлено",
|
||
"addButton": "Додати",
|
||
"active": "Активні підписки",
|
||
"empty": "Підписок поки немає. Додайте одну вище.",
|
||
"colRemark": "Примітка",
|
||
"colLastFetch": "Останнє завантаження",
|
||
"colEnabled": "Увімкнено",
|
||
"auto": "авто",
|
||
"never": "ніколи",
|
||
"refreshNow": "Оновити зараз",
|
||
"deleteConfirm": "Видалити цю підписку?",
|
||
"restartHint": "Після додавання або оновлення перезапустіть Xray (або зачекайте наступного автоматичного перезавантаження), щоб вихідні стали активними.",
|
||
"fromSubsTitle": "З підписок вихідних (лише для читання)",
|
||
"fromSubsDesc": "Імпортовано з ваших активних підписок. Керуйте ними на панелі «Підписки» вище.",
|
||
"toastLoadFailed": "Не вдалося завантажити підписки",
|
||
"toastUrlRequired": "Потрібен URL підписки",
|
||
"toastAdded": "Підписку додано",
|
||
"toastAddFailed": "Не вдалося додати підписку",
|
||
"toastRefreshed": "Оновлено",
|
||
"toastRefreshFailed": "Не вдалося оновити",
|
||
"toastDeleted": "Видалено",
|
||
"toastDeleteFailed": "Не вдалося видалити"
|
||
},
|
||
"pia": {
|
||
"menu": "PIA",
|
||
"username": "Ім’я користувача PIA",
|
||
"password": "Пароль PIA",
|
||
"account": "Обліковий запис",
|
||
"region": "Регіон",
|
||
"allRegions": "Усі регіони",
|
||
"noServers": "Для вибраної країни серверів немає",
|
||
"outboundAdded": "Вихідний PIA додано",
|
||
"outboundUpdated": "Вихідний PIA оновлено",
|
||
"addedServers": "Додані сервери",
|
||
"alreadyAdded": "Цей сервер уже в списку вихідних. Щоб оновити ключ, натисніть {reset}.",
|
||
"provisionFailed": "Не вдалося створити вихідний PIA. Спробуйте ще раз."
|
||
},
|
||
"tabBalancerSettings": "Налаштування балансувальника",
|
||
"tabObservatory": "Обсерваторія",
|
||
"observatory": {
|
||
"autoManaged": "Спостерігачі керуються автоматично на основі ваших балансувальників. Нижче можна налаштувати, як вони опитують; відстежувані вихідні слідують за селекторами балансувальника.",
|
||
"emptyHint": "Немає активного спостерігача з’єднань. Його буде додано автоматично під час створення балансувальника Least Ping або Least Load — чи Random / Round-robin із fallback — щоб балансувальники зі спостерігачем могли перевіряти стан вихідних перед вибором цілі.",
|
||
"mixedLegacy": "Ця конфігурація містить і Observatory, і Burst Observatory. Xray використовує одного глобального спостерігача, тому такий застарілий змішаний стан не підтримується; збереження балансувальників нормалізує його до одного спостерігача.",
|
||
"subjectSelector": "Відстежувані вихідні",
|
||
"subjectSelectorDesc": "Теги вихідних, які опитує цей спостерігач. Керується автоматично на основі ваших балансувальників.",
|
||
"probeURL": "URL проби",
|
||
"probeURLDesc": "URL, що запитується для вимірювання кожного вихідного. Має повертати HTTP 204.",
|
||
"probeInterval": "Інтервал проби",
|
||
"probeIntervalDesc": "Як часто опитувати кожен вихідний, напр. 30s, 1m, 2h45m.",
|
||
"enableConcurrency": "Паралельні проби",
|
||
"enableConcurrencyDesc": "Опитувати всі відстежувані вихідні одночасно, а не по одному. Швидше, але помітніше в мережі.",
|
||
"destination": "Призначення проби",
|
||
"destinationDesc": "URL, що запитується для вимірювання кожного вихідного. Має повертати HTTP 204.",
|
||
"connectivity": "Перевірка з’єднання",
|
||
"connectivityDesc": "Необов’язковий URL перевірки локальної мережі, використовується лише після збою призначення. Залиште порожнім, щоб пропустити.",
|
||
"interval": "Інтервал проби",
|
||
"intervalDesc": "Середній час між пробами для кожного вихідного, напр. 1m. Мінімум 10s.",
|
||
"timeout": "Тайм-аут проби",
|
||
"timeoutDesc": "Скільки чекати на пробу, перш ніж вважати її невдалою, напр. 5s.",
|
||
"sampling": "Розмір вибірки",
|
||
"samplingDesc": "Скільки останніх результатів проб зберігається для оцінювання кожного вихідного.",
|
||
"httpMethod": "Метод HTTP",
|
||
"httpMethodDesc": "Метод HTTP, що використовується для проб.",
|
||
"deleteAlsoObservatory": "Це останній балансувальник, що використовує Observatory, тож його теж буде видалено.",
|
||
"deleteAlsoBurst": "Це останній балансувальник, що використовує Burst Observatory, тож його теж буде видалено."
|
||
},
|
||
"refCleanup": {
|
||
"header": "Видалення також оновить маршрутизацію:",
|
||
"ruleRemoved": "Правило {label} — видалено (не залишилося призначення)",
|
||
"ruleModified": "Правило {label} — збережено (тепер використовує {keeps})",
|
||
"balancerRemoved": "Балансувальник {tag} — видалено (не залишилося цілей)"
|
||
},
|
||
"balancer": {
|
||
"balancerStrategy": "Стратегія",
|
||
"tag": "Тег",
|
||
"tagDuplicate": "Тег уже використовується іншим балансувальником",
|
||
"tagPlaceholder": "унікальний тег балансувальника",
|
||
"selector": "Селектор",
|
||
"fallback": "Fallback",
|
||
"cycleTooltip": "Цикл: {path} → (назад до {start})",
|
||
"expected": "Очікуване",
|
||
"expectedPlaceholder": "оптимальна кількість вузлів",
|
||
"maxRtt": "Макс. RTT",
|
||
"tolerance": "Допуск",
|
||
"baselines": "Baselines",
|
||
"costs": "Costs",
|
||
"costMatch": "Шаблон тегу",
|
||
"costValue": "Вага",
|
||
"costRegexp": "Збіг за регулярним виразом",
|
||
"balancerDeleteInUse": "Неможливо видалити цей балансувач — він використовується як резервний для: {names}",
|
||
"balancerFallbackCycle": "Неможливо призначити цей балансувач резервним — це створить циклічну залежність.",
|
||
"balancerFallbackInfo": "Трафік буде маршрутизовано через: Балансувач → Loopback → Сервер → Цільовий балансувач → Вихідне зʼєднання. Це додає додатковий хоп через сервер, що може спричинити невеликі затримки.",
|
||
"fallbackBalancerHint": "Оберіть інший балансувач як резервний",
|
||
"reservedPrefix": "Префікс _bl_ зарезервовано для внутрішніх loopback-об'єктів балансувальника"
|
||
},
|
||
"wireguard": {
|
||
"secretKey": "Приватний ключ",
|
||
"publicKey": "Публічний ключ",
|
||
"subnetIp": "Підмережа",
|
||
"subnetCidr": "CIDR підмережі",
|
||
"allowedIPs": "Дозволені IP-адреси",
|
||
"endpoint": "Кінцева точка",
|
||
"domainStrategy": "Стратегія домену"
|
||
},
|
||
"amneziawg": {
|
||
"privateKey": "Приватний ключ",
|
||
"publicKey": "Публічний ключ",
|
||
"subnetIp": "Підмережа",
|
||
"subnetCidr": "CIDR підмережі",
|
||
"mtu": "MTU",
|
||
"primaryDns": "Основний DNS",
|
||
"secondaryDns": "Резервний DNS",
|
||
"externalInterface": "Зовнішній інтерфейс",
|
||
"externalInterfaceHint": "Мережевий інтерфейс хоста для NAT (PostUp/PostDown). Залиште порожнім для автовизначення.",
|
||
"ipv6Enabled": "Увімкнути IPv6",
|
||
"ipv6Subnet": "Підмережа IPv6",
|
||
"ipv6SubnetHint": "напр. fd86:ea04:1115::/64. Обов'язково, якщо IPv6 увімкнено.",
|
||
"ipv6ExternalInterface": "Зовнішній інтерфейс IPv6",
|
||
"ipv6ExternalInterfaceHint": "Мережевий інтерфейс хоста для записів NDP-проксі. Залиште порожнім, щоб використовувати Зовнішній інтерфейс.",
|
||
"obfuscation": "Параметри обфускації",
|
||
"regenerateObfuscation": "Згенерувати заново",
|
||
"jc": "Jc (кількість сміттєвих пакетів)",
|
||
"jmin": "Jmin (мін. розмір сміттєвого пакета)",
|
||
"jmax": "Jmax (макс. розмір сміттєвого пакета)",
|
||
"s1": "S1 (заповнення пакета init)",
|
||
"s2": "S2 (заповнення пакета response)",
|
||
"s3": "S3 (заповнення cookie reply)",
|
||
"s4": "S4 (заповнення транспортного пакета)",
|
||
"h1": "H1 (магічний заголовок)",
|
||
"h2": "H2 (магічний заголовок)",
|
||
"h3": "H3 (магічний заголовок)",
|
||
"h4": "H4 (магічний заголовок)",
|
||
"hHint": "Ціле число або діапазон. Залиште порожнім для класичних значень 1/2/3/4.",
|
||
"i1": "I1 (пакет підпису)",
|
||
"i1Hint": "Необов'язковий пакет підпису. Залиште порожнім, щоб не надсилати.",
|
||
"i2": "I2 (пакет підпису)",
|
||
"i3": "I3 (пакет підпису)",
|
||
"i4": "I4 (пакет підпису)",
|
||
"i5": "I5 (пакет підпису)",
|
||
"headerProtectionKey": "HeaderProtectionKey (захист заголовків)",
|
||
"headerProtectionKeyHint": "Ключ Base64 довжиною 32 байти; має збігатися в конфігурації кожного клієнта. Залиште порожнім, щоб вимкнути захист заголовків.",
|
||
"contentPaddingAddition": "ContentPaddingAddition (заповнення вмісту)",
|
||
"contentPaddingAdditionHint": "Ціле число або діапазон байтів, що додаються до пакетів із даними. Залиште порожнім, щоб вимкнути.",
|
||
"rekeyAfterTime": "RekeyAfterTime (секунди)",
|
||
"rekeyTimeout": "RekeyTimeout (секунди)",
|
||
"rejectAfterTime": "RejectAfterTime (секунди)",
|
||
"keepaliveTimeout": "KeepaliveTimeout (секунди)",
|
||
"maxHandshakeAttempts": "MaxHandshakeAttempts",
|
||
"timingRangeHint": "Ціле число або діапазон. Залиште порожнім для типового значення WireGuard.",
|
||
"maxHandshakeAttemptsHint": "Кількість повторних спроб рукостискання. Залиште порожнім для типового значення.",
|
||
"randomTrailers": "RandomTrailers",
|
||
"randomTrailersHint": "Додає випадкові байти в кінець кожного пакета. Обидві сторони мають підтримувати AmneziaWG 3.1+.",
|
||
"disableCookies": "DisableCookies",
|
||
"disableCookiesHint": "Ніколи не надсилати cookie reply — прибирає відбиток для DPI, але послаблює захист від флуду."
|
||
},
|
||
"tun": {
|
||
"userLevel": "Рівень користувача"
|
||
},
|
||
"nord": {
|
||
"accessToken": "Access token",
|
||
"privateKey": "Приватний ключ",
|
||
"noServers": "Серверів для обраної країни не знайдено",
|
||
"noPublicKey": "Обраний сервер не повідомляє публічного ключа NordLynx.",
|
||
"outboundAdded": "Вихідний NordVPN додано",
|
||
"outboundUpdated": "Вихідний NordVPN оновлено"
|
||
},
|
||
"warp": {
|
||
"changeIp": "Змінити IP",
|
||
"changeIpSuccess": "IP-адресу WARP успішно змінено!",
|
||
"autoUpdateIp": "Автоматичне оновлення IP-адреси",
|
||
"intervalDays": "Інтервал (дні)",
|
||
"intervalDesc": "0 — вимкнути. Автоматично змінює IP-адресу.",
|
||
"licenseError": "Не вдалося встановити ліцензію WARP.",
|
||
"fetchFirst": "Спочатку отримайте WARP-конфіг.",
|
||
"createAccount": "Створити акаунт WARP",
|
||
"accessToken": "Access token",
|
||
"deviceId": "ID пристрою",
|
||
"licenseKey": "Ключ ліцензії",
|
||
"privateKey": "Приватний ключ",
|
||
"deleteAccount": "Видалити акаунт",
|
||
"settings": "Налаштування",
|
||
"licenseKeyLabel": "Ключ ліцензії WARP / WARP+",
|
||
"key": "Ключ",
|
||
"keyPlaceholder": "26-символьний ключ WARP+",
|
||
"accountInfo": "Інформація про акаунт",
|
||
"deviceName": "Назва пристрою",
|
||
"deviceModel": "Модель пристрою",
|
||
"deviceEnabled": "Пристрій увімкнено",
|
||
"accountType": "Тип акаунта",
|
||
"role": "Роль",
|
||
"warpPlusData": "WARP+ data",
|
||
"quota": "Квота",
|
||
"usage": "Використання",
|
||
"addOutbound": "Додати вихідний"
|
||
},
|
||
"dns": {
|
||
"enable": "Увімкнути DNS",
|
||
"enableDesc": "Увімкнути вбудований DNS-сервер",
|
||
"tag": "Мітка вхідного DNS",
|
||
"tagDesc": "Ця мітка буде доступна як вхідна мітка в правилах маршрутизації.",
|
||
"clientIp": "IP клієнта",
|
||
"clientIpDesc": "Використовується для повідомлення серверу про вказане місцезнаходження IP під час DNS-запитів",
|
||
"disableCache": "Вимкнути кеш",
|
||
"disableCacheDesc": "Вимкнути кешування DNS",
|
||
"disableFallback": "Вимкнути резервний DNS",
|
||
"disableFallbackDesc": "Вимкнути резервні DNS-запити",
|
||
"disableFallbackIfMatch": "Вимкнути резервний DNS при збігу",
|
||
"disableFallbackIfMatchDesc": "Вимкнути резервні DNS-запити при збігу списку доменів DNS-сервера",
|
||
"enableParallelQuery": "Увімкнути паралельні запити",
|
||
"enableParallelQueryDesc": "Увімкнути паралельні DNS-запити до кількох серверів для швидшого вирішення",
|
||
"strategy": "Стратегія запиту",
|
||
"strategyDesc": "Загальна стратегія вирішення доменних імен",
|
||
"add": "Додати сервер",
|
||
"edit": "Редагувати сервер",
|
||
"domains": "Домени",
|
||
"expectIPs": "Очікувані IP",
|
||
"unexpectIPs": "Неочікувані IP",
|
||
"useSystemHosts": "Використовувати системні Hosts",
|
||
"useSystemHostsDesc": "Використовувати файл hosts з встановленої системи",
|
||
"serveStale": "Видавати застарілі",
|
||
"serveStaleDesc": "Повертати застарілі результати з кешу під час фонового оновлення",
|
||
"serveExpiredTTL": "TTL застарілих",
|
||
"serveExpiredTTLDesc": "Термін дії (секунди) застарілих записів кешу; 0 = ніколи",
|
||
"timeoutMs": "Тайм-аут (мс)",
|
||
"skipFallback": "Пропустити Fallback",
|
||
"finalQuery": "Фінальний запит",
|
||
"hosts": "Hosts",
|
||
"hostsAdd": "Додати Host",
|
||
"hostsEmpty": "Host не визначено",
|
||
"hostsDomain": "Домен (напр. domain:example.com)",
|
||
"hostsValues": "IP або домен — введіть і натисніть Enter",
|
||
"usePreset": "Використати шаблон",
|
||
"dnsPresetTitle": "Шаблони DNS",
|
||
"dnsPresetFamily": "Сімейний",
|
||
"clearAll": "Видалити всі",
|
||
"clearAllTitle": "Видалити всі DNS-сервери?",
|
||
"clearAllConfirm": "Усі DNS-сервери буде видалено зі списку. Дію не можна скасувати.",
|
||
"dnsLeakWarning": "DNS може витікати через localhost, звичайний UDP/TCP, локальний режим DoH/DoQ, fallback-запити або EDNS client IP. Для приватності використовуйте маршрутизований DoH, фіксацію hosts і вимикайте fallback."
|
||
},
|
||
"fakedns": {
|
||
"add": "Додати підроблений DNS",
|
||
"ipPool": "Підмережа IP-пулу",
|
||
"poolSize": "Розмір пулу"
|
||
},
|
||
"defaultOutbound": "Вихідний за замовчуванням",
|
||
"defaultOutboundDesc": "Трафік без збігу з правилами маршрутизації йде через цей вихідний (перший у списку)."
|
||
},
|
||
"hosts": {
|
||
"addHost": "Додати хост",
|
||
"editHost": "Редагувати хост",
|
||
"selectInbound": "Виберіть вхідний",
|
||
"selectedCount": "Обрано {count}",
|
||
"summary": {
|
||
"total": "Усього",
|
||
"enabled": "Увімкнено",
|
||
"disabled": "Вимкнено"
|
||
},
|
||
"moveUp": "Вгору",
|
||
"moveDown": "Вниз",
|
||
"bulkEnable": "Увімкнути",
|
||
"bulkDisable": "Вимкнути",
|
||
"bulkDelete": "Видалити",
|
||
"bulkDeleteConfirm": "Видалити {count} обраних хост(ів)?",
|
||
"deleteConfirmTitle": "Видалити хост \"{name}\"?",
|
||
"sections": {
|
||
"basic": "Основні",
|
||
"security": "Безпека",
|
||
"advanced": "Розширені",
|
||
"general": "Загальні",
|
||
"clash": "Clash (mihomo)"
|
||
},
|
||
"fields": {
|
||
"remark": "Примітка",
|
||
"serverDescription": "Опис",
|
||
"inbound": "Вхідні",
|
||
"address": "Адреса",
|
||
"port": "Порт",
|
||
"endpoint": "Кінцева точка",
|
||
"enable": "Увімкнути",
|
||
"actions": "Дії",
|
||
"security": "Безпека",
|
||
"sni": "SNI",
|
||
"overrideSniFromAddress": "Використовувати адресу як SNI",
|
||
"keepSniBlank": "Залишити SNI порожнім",
|
||
"hostHeader": "Заголовок Host",
|
||
"path": "Шлях",
|
||
"alpn": "ALPN",
|
||
"fingerprint": "Fingerprint",
|
||
"pins": "Закріплений SHA-256 сертифіката",
|
||
"verifyPeerCertByName": "Перевіряти сертифікат пира за іменем",
|
||
"allowInsecure": "Дозволити небезпечне",
|
||
"echConfigList": "Список конфігурацій ECH",
|
||
"muxParams": "Mux",
|
||
"sockoptParams": "Sockopt",
|
||
"finalMask": "Фінальна маска",
|
||
"vlessRoute": "Маршрут VLESS",
|
||
"mihomoIpVersion": "Версія IP",
|
||
"mihomoX25519": "Mihomo X25519",
|
||
"shuffleHost": "Перемішувати host",
|
||
"tags": "Теги",
|
||
"nodeGuids": "Вузли",
|
||
"excludeFromSubTypes": "Виключити з форматів",
|
||
"inheritAddress": "Успадковує адресу"
|
||
},
|
||
"hints": {
|
||
"address": "Залиште порожнім, щоб успадкувати власну адресу вхідного.",
|
||
"port": "0 успадковує порт вхідного.",
|
||
"tags": "Не видно кінцевим користувачам; надсилається лише з RAW-підпискою. Лише великі літери, цифри, _ та :.",
|
||
"nodeGuids": "Виберіть вузли, які розв'язуються з цього хоста. Лише візуальне призначення.",
|
||
"serverDescription": "Необов'язкова примітка, що показується під приміткою.",
|
||
"allowInsecure": "Пропускати перевірку TLS-сертифіката (allowInsecure / skip-cert-verify).",
|
||
"vlessRoute": "Одне значення маршруту VLESS (0-65535), що вбудовується в UUID, напр. 443. Залиште порожнім, щоб не використовувати.",
|
||
"remark": "Звичайна мітка для цього хоста. Показується як назва конфігурації лише тоді, коли вхідний не має власної примітки."
|
||
},
|
||
"remarkVars": {
|
||
"title": "Змінні шаблону",
|
||
"intro": "Натисніть на змінну, щоб додати її. Вона замінюється для кожного клієнта під час генерації підписки.",
|
||
"preview": "Попередній перегляд",
|
||
"groups": {
|
||
"client": "Клієнт",
|
||
"traffic": "Трафік",
|
||
"time": "Час і статус",
|
||
"connection": "З'єднання"
|
||
},
|
||
"descEMAIL": "Email клієнта",
|
||
"descINBOUND": "Власна примітка вхідного (назва конфігурації)",
|
||
"descHOST": "Примітка хоста",
|
||
"descID": "UUID клієнта",
|
||
"descSHORT_ID": "Перші 8 символів UUID",
|
||
"descTELEGRAM_ID": "Telegram ID клієнта (порожньо, якщо не задано)",
|
||
"descSUB_ID": "ID підписки",
|
||
"descCOMMENT": "Коментар клієнта",
|
||
"descTRAFFIC_USED": "Використаний трафік (у зручному форматі)",
|
||
"descTRAFFIC_LEFT": "Залишок трафіку (прихований, якщо безлімітний)",
|
||
"descTRAFFIC_TOTAL": "Загальний трафік (прихований, якщо безлімітний)",
|
||
"descTRAFFIC_USED_BYTES": "Використаний трафік у байтах",
|
||
"descTRAFFIC_LEFT_BYTES": "Залишок трафіку у байтах",
|
||
"descTRAFFIC_TOTAL_BYTES": "Загальний трафік у байтах",
|
||
"descUP": "Вихідний трафік",
|
||
"descDOWN": "Вхідний трафік",
|
||
"descSTATUS": "active / expired / disabled / depleted",
|
||
"descSTATUS_EMOJI": "Статус у вигляді емодзі (✅ ⏳ 🚫)",
|
||
"descDAYS_LEFT": "Днів до закінчення (прихований, якщо безлімітний)",
|
||
"descTIME_LEFT": "Залишок часу (напр. 12d 4h 30m)",
|
||
"descUSAGE_PERCENTAGE": "Використаний трафік у відсотках (прихований, якщо безлімітний)",
|
||
"descEXPIRE_DATE": "Дата закінчення (YYYY-MM-DD)",
|
||
"descJALALI_EXPIRE_DATE": "Дата закінчення за календарем Jalali (YYYY/MM/DD)",
|
||
"descEXPIRE_UNIX": "Закінчення як мітка часу Unix (секунди)",
|
||
"descCREATED_UNIX": "Час створення як мітка часу Unix (секунди)",
|
||
"descRESET_DAYS": "Період скидання трафіку в днях",
|
||
"descRESET_DAY": "Число місяця, у яке подовжується доступ",
|
||
"descPROTOCOL": "Протокол вхідного (VLESS, VMess, Trojan, …)",
|
||
"descTRANSPORT": "Транспортна мережа (tcp, ws, grpc, …)",
|
||
"descSECURITY": "Безпека транспорту (TLS, REALITY, NONE)"
|
||
},
|
||
"toasts": {
|
||
"list": "Не вдалося завантажити хости",
|
||
"obtain": "Не вдалося завантажити хост",
|
||
"add": "Додати хост",
|
||
"update": "Оновити хост",
|
||
"delete": "Видалити хост",
|
||
"badTag": "Недійсний тег",
|
||
"badVlessRoute": "Введіть одне число від 0 до 65535"
|
||
}
|
||
}
|
||
},
|
||
"tgbot": {
|
||
"keyboardClosed": "❌ Клавіатуру закрито!",
|
||
"noResult": "❗ Немає результату!",
|
||
"noQuery": "❌ Запит не знайдено! Будь ласка, використовуйте команду ще раз!",
|
||
"wentWrong": "❌ Щось пішло не так!",
|
||
"noIpRecord": "❗ Немає запису IP!",
|
||
"noInbounds": "❗ Вхідні не знайдені!",
|
||
"unlimited": "♾ Необмежено (Скинути)",
|
||
"add": "Додати",
|
||
"month": "Місяць",
|
||
"months": "Місяці",
|
||
"days": "Дні",
|
||
"hours": "Години",
|
||
"minutes": "Хвилини",
|
||
"unknown": "Невідомо",
|
||
"inbounds": "Вхідні",
|
||
"clients": "Клієнти",
|
||
"offline": "🔴 Не в мережі",
|
||
"online": "🟢 У мережі",
|
||
"commands": {
|
||
"unknown": "❗ Невідома команда.",
|
||
"pleaseChoose": "👇 Будь ласка, виберіть:\r\n",
|
||
"help": "🤖 Ласкаво просимо до цього бота! Він розроблений, щоб надавати певні дані з веб-панелі та дозволяє вносити зміни за потреби.\r\n\r\n",
|
||
"start": "👋 Привіт <i>{{ .Firstname }}</i>.\r\n",
|
||
"welcome": "🤖 Ласкаво просимо до <b>{{ .Hostname }}</b> бота керування.\r\n",
|
||
"status": "✅ Бот в порядку!",
|
||
"usage": "❗ Введіть текст для пошуку!",
|
||
"getID": "🆔 Ваш ідентифікатор: <code>{{ .ID }}</code>",
|
||
"helpAdminCommands": "Для перезапуску Xray Core:\r\n<code>/restart</code>\r\n\r\nДля пошуку електронної пошти клієнта:\r\n<code>/usage [Електронна пошта]</code>\r\n\r\nДля пошуку вхідних (зі статистикою клієнта):\r\n<code>/inbound [Примітка]</code>\r\n\r\nID чату Telegram:\r\n<code>/id</code>",
|
||
"helpClientCommands": "Для пошуку статистики використовуйте наступну команду:\r\n<code>/usage [Електронна пошта]</code>\r\n\r\nID чату Telegram:\r\n<code>/id</code>",
|
||
"restartUsage": "\r\n\r\n<code>/restart</code>",
|
||
"restartSuccess": "✅ Операція успішна!",
|
||
"restartFailed": "❗ Помилка в операції.\r\n\r\n<code>Помилка: {{ .Error }}</code>.",
|
||
"xrayNotRunning": "❗ Xray Core не запущений.",
|
||
"startDesc": "Показати головне меню",
|
||
"helpDesc": "Довідка по боту",
|
||
"statusDesc": "Перевірити статус бота",
|
||
"idDesc": "Показати ваш Telegram ID",
|
||
"usageDesc": "Показати трафік клієнта: /usage email",
|
||
"inboundDesc": "Пошук вхідних: /inbound назва (адмін)",
|
||
"restartDesc": "Перезапустити ядро Xray (адмін)",
|
||
"clearallDesc": "Скинути трафік усіх клієнтів (адмін)"
|
||
},
|
||
"messages": {
|
||
"cpuThreshold": "Навантаження ЦП {{ .Percent }}% перевищує порогове значення {{ .Threshold }}%",
|
||
"selectUserFailed": "❌ Помилка під час вибору користувача!",
|
||
"userSaved": "✅ Користувача Telegram збережено.",
|
||
"loginSuccess": "✅ Успішно ввійшли в панель\r\n",
|
||
"loginFailed": "❗️ Помилка входу в панель.\r\n",
|
||
"report": "🕰 Заплановані звіти: {{ .RunTime }}\r\n",
|
||
"datetime": "⏰ Дата й час: {{ .DateTime }}\r\n",
|
||
"hostname": "💻 Хост: {{ .Hostname }}\r\n",
|
||
"version": "🚀 3X-UI Версія: {{ .Version }}\r\n",
|
||
"xrayVersion": "📡 Xray Версія: {{ .XrayVersion }}\r\n",
|
||
"ipv6": "🌐 IPv6: {{ .IPv6 }}\r\n",
|
||
"ipv4": "🌐 IPv4: {{ .IPv4 }}\r\n",
|
||
"ip": "🌐 IP: {{ .IP }}\r\n",
|
||
"ips": "🔢 IP:\r\n{{ .IPs }}\r\n",
|
||
"serverUpTime": "⏳ Час роботи: {{ .UpTime }} {{ .Unit }}\r\n",
|
||
"serverLoad": "📈 Завантаження системи: {{ .Load1 }}, {{ .Load2 }}, {{ .Load3 }}\r\n",
|
||
"serverMemory": "📋 RAM: {{ .Current }}/{{ .Total }}\r\n",
|
||
"tcpCount": "🔹 TCP: {{ .Count }}\r\n",
|
||
"udpCount": "🔸 UDP: {{ .Count }}\r\n",
|
||
"traffic": "🚦 Трафік: {{ .Total }} (↑{{ .Upload }},↓{{ .Download }})\r\n",
|
||
"xrayStatus": "ℹ️ Статус: {{ .State }}\r\n",
|
||
"username": "👤 Ім'я користувача: {{ .Username }}\r\n",
|
||
"reason": "❗️ Причина: {{ .Reason }}\r\n",
|
||
"time": "⏰ Час: {{ .Time }}\r\n",
|
||
"inbound": "📍 Вхідний: {{ .Remark }}\r\n",
|
||
"port": "🔌 Порт: {{ .Port }}\r\n",
|
||
"expire": "📅 Дата закінчення: {{ .Time }}\r\n",
|
||
"expireIn": "📅 Термін дії: {{ .Time }}\r\n",
|
||
"active": "💡 Активний: {{ .Enable }}\r\n",
|
||
"enabled": "🚨 Увімкнено: {{ .Enable }}\r\n",
|
||
"online": "🌐 Стан підключення: {{ .Status }}\r\n",
|
||
"lastOnline": "🔙 Був(ла) онлайн: {{ .Time }}\r\n",
|
||
"email": "📧 Email: {{ .Email }}\r\n",
|
||
"upload": "🔼 Завантаження: ↑{{ .Upload }}\r\n",
|
||
"download": "🔽 Завантаження: ↓{{ .Download }}\r\n",
|
||
"total": "📊 Усього: ↑↓{{ .UpDown }} / {{ .Total }}\r\n",
|
||
"TGUser": "👤 Користувач Telegram: {{ .TelegramID }}\r\n",
|
||
"exhaustedCount": "🚨 Вичерпано кількість {{ .Type }} count:\r\n",
|
||
"onlinesCount": "🌐 Онлайн-клієнти: {{ .Count }}\r\n",
|
||
"disabled": "🛑 Вимкнено: {{ .Disabled }}\r\n",
|
||
"depleteSoon": "🔜 Скоро вичерпається: {{ .Deplete }}\r\n\r\n",
|
||
"backupTime": "🗄 Час резервного копіювання: {{ .Time }}\r\n",
|
||
"refreshedOn": "\r\n📋🔄 Оновлено: {{ .Time }}\r\n\r\n",
|
||
"yes": "✅ Так",
|
||
"no": "❌ Ні",
|
||
"received_email": "📧📥 Електронна пошта оновлена.",
|
||
"received_comment": "💬📥 Коментар оновлено.",
|
||
"email_prompt": "📧 Стандартний email: {{ .ClientEmail }}\n\nВведіть ваш email.",
|
||
"comment_prompt": "💬 Стандартний коментар: {{ .ClientComment }}\n\nВведіть ваш коментар.",
|
||
"cancel": "❌ Процес скасовано! \n\nВи можете знову розпочати, використовуючи /start у будь-який час. 🔄",
|
||
"error_add_client": "⚠️ Помилка:\n\n {{ .error }}",
|
||
"using_default_value": "Гаразд, залишу значення за замовчуванням. 😊",
|
||
"incorrect_input": "Ваш ввід невірний.\nФрази повинні бути без пробілів.\nПравильний приклад: aaaaaa\nНеправильний приклад: aaa aaa 🚫",
|
||
"AreYouSure": "Ви впевнені? 🤔",
|
||
"SuccessResetTraffic": "📧 Електронна пошта: {{ .ClientEmail }}\n🏁 Результат: ✅ Успішно",
|
||
"FailedResetTraffic": "📧 Електронна пошта: {{ .ClientEmail }}\n🏁 Результат: ❌ Невдача \n\n🛠️ Помилка: [ {{ .ErrorMessage }} ]",
|
||
"FinishProcess": "🔚 Процес скидання трафіку завершено для всіх клієнтів.",
|
||
"eventOutboundDown": "Вихідне з'єднання {{ .Tag }} НЕДОСТУПНЕ",
|
||
"eventOutboundUp": "Вихідне з'єднання {{ .Tag }} ДОСТУПНЕ",
|
||
"eventErrorDetail": "Помилка: {{ .Error }}",
|
||
"eventDelayDetail": "Затримка: {{ .Delay }} мс",
|
||
"eventXrayCrash": "Стався збій Xray",
|
||
"eventXrayCrashError": "Помилка: {{ .Error }}",
|
||
"eventNodeDown": "Вузол {{ .Name }} НЕДОСТУПНИЙ",
|
||
"eventNodeUp": "Вузол {{ .Name }} ДОСТУПНИЙ",
|
||
"eventLoginFallback": "Невдала спроба входу з {{ .Source }}",
|
||
"memoryThreshold": "Використання пам'яті {{ .Percent }}% перевищує порогове значення {{ .Threshold }}%"
|
||
},
|
||
"buttons": {
|
||
"closeKeyboard": "❌ Закрити клавіатуру",
|
||
"cancel": "❌ Скасувати",
|
||
"cancelReset": "❌ Скасувати скидання",
|
||
"cancelIpLimit": "❌ Скасувати обмеження IP",
|
||
"confirmResetTraffic": "✅ Підтвердити скидання трафіку?",
|
||
"confirmClearIps": "✅ Підтвердити очищення IP-адрес?",
|
||
"confirmRemoveTGUser": "✅ Підтвердити видалення користувача Telegram?",
|
||
"confirmToggle": "✅ Підтвердити ввімкнути/вимкнути користувача?",
|
||
"dbBackup": "Отримати резервну копію БД",
|
||
"serverUsage": "Використання сервера",
|
||
"getInbounds": "Отримати вхідні",
|
||
"depleteSoon": "Скоро вичерпати",
|
||
"clientUsage": "Отримати використання",
|
||
"onlines": "Онлайн-клієнти",
|
||
"commands": "Команди",
|
||
"refresh": "🔄 Оновити",
|
||
"clearIPs": "❌ Очистити IP-адреси",
|
||
"removeTGUser": "❌ Видалити користувача Telegram",
|
||
"selectTGUser": "👤 Виберіть користувача Telegram",
|
||
"selectOneTGUser": "👤 Виберіть користувача Telegram:",
|
||
"resetTraffic": "📈 Скинути трафік",
|
||
"resetExpire": "📅 Змінити термін дії",
|
||
"ipLog": "🔢 IP журнал",
|
||
"ipLimit": "🔢 IP Ліміт",
|
||
"setTGUser": "👤 Встановити користувача Telegram",
|
||
"toggle": "🔘 Увімкнути / Вимкнути",
|
||
"custom": "🔢 Своє",
|
||
"confirmNumber": "✅ Підтвердити: {{ .Num }}",
|
||
"confirmNumberAdd": "✅ Підтвердити додавання: {{ .Num }}",
|
||
"limitTraffic": "🚧 Ліміт трафіку",
|
||
"getBanLogs": "Отримати журнали заборон",
|
||
"allClients": "Всі Клієнти",
|
||
"addClient": "Додати клієнта",
|
||
"submitDisable": "Надіслати як вимкнено ☑️",
|
||
"submitEnable": "Надіслати як увімкнено ✅",
|
||
"use_default": "🏷️ Використати типове",
|
||
"change_email": "⚙️📧 Email",
|
||
"change_comment": "⚙️💬 Коментар",
|
||
"ResetAllTraffics": "Скинути весь трафік",
|
||
"SortedTrafficUsageReport": "Відсортований звіт про використання трафіку"
|
||
},
|
||
"answers": {
|
||
"successfulOperation": "✅ Операція успішна!",
|
||
"errorOperation": "❗ Помилка в роботі.",
|
||
"getInboundsFailed": "❌ Не вдалося отримати вхідні повідомлення.",
|
||
"getClientsFailed": "❌ Не вдалося отримати клієнтів.",
|
||
"canceled": "❌ {{ .Email }}: Операцію скасовано.",
|
||
"clientRefreshSuccess": "✅ {{ .Email }}: Клієнт успішно оновлено.",
|
||
"IpRefreshSuccess": "✅ {{ .Email }}: IP-адреси успішно оновлено.",
|
||
"TGIdRefreshSuccess": "✅ {{ .Email }}: Користувач Telegram клієнта успішно оновлено.",
|
||
"resetTrafficSuccess": "✅ {{ .Email }}: Трафік скинуто успішно.",
|
||
"setTrafficLimitSuccess": "✅ {{ .Email }}: Ліміт трафіку успішно збережено.",
|
||
"expireResetSuccess": "✅ {{ .Email }}: Успішно скинуто дні закінчення терміну дії.",
|
||
"resetIpSuccess": "✅ {{ .Email }}: IP обмеження {{ .Count }} успішно збережено.",
|
||
"clearIpSuccess": "✅ {{ .Email }}: IP успішно очищено.",
|
||
"getIpLog": "✅ {{ .Email }}: Отримати IP-журнал.",
|
||
"getUserInfo": "✅ {{ .Email }}: Отримати інформацію про користувача Telegram.",
|
||
"removedTGUserSuccess": "✅ {{ .Email }}: Користувача Telegram видалено успішно.",
|
||
"enableSuccess": "✅ {{ .Email }}: Увімкнути успішно.",
|
||
"disableSuccess": "✅ {{ .Email }}: Успішно вимкнено.",
|
||
"askToAddUserId": "Вашу конфігурацію не знайдено!\r\nБудь ласка, попросіть свого адміністратора використовувати ваш ідентифікатор Telegram у вашій конфігурації.\r\n\r\nВаш ідентифікатор користувача: <code>{{ .TgUserID }}</code>",
|
||
"chooseClient": "Виберіть клієнта для Вхідного {{ .Inbound }}",
|
||
"chooseInbound": "Виберіть Вхідний"
|
||
}
|
||
},
|
||
"email": {
|
||
"labelStatus": "Статус",
|
||
"labelOutbound": "Вихідне з'єднання",
|
||
"labelNode": "Вузол",
|
||
"labelError": "Помилка",
|
||
"labelDelay": "Затримка",
|
||
"labelUsername": "Ім'я користувача",
|
||
"labelIP": "IP",
|
||
"labelReason": "Причина",
|
||
"labelSource": "Джерело",
|
||
"statusCrashed": "ЗБІЙ",
|
||
"statusHigh": "ВИСОКЕ",
|
||
"statusSuccess": "УСПІШНО",
|
||
"statusFailed": "НЕВДАЛО",
|
||
"statusDown": "НЕДОСТУПНО",
|
||
"statusUp": "ДОСТУПНО"
|
||
}
|
||
}
|