mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-24 20:07:13 +00:00
effcccceac
* feat(amneziawg): add native AmneziaWG protocol backend AmneziaWG (WireGuard plus DPI-resistant obfuscation) needs no Docker here — it runs as a genuine kernel interface via awg-quick/awg, managed the same way internal/mtproto manages mtg: one Inbound row is one desired Instance, and a Manager reconciles running interfaces toward the database every 10s (internal/web/job/amneziawg_job.go) plus immediately after a client edit (applyLocalAmneziaWG). Clients reuse model.Client verbatim (the same PrivateKey/PublicKey/ PreSharedKey/AllowedIPs fields WireGuard already uses), so bulk operations, the QR/share-link modal and subscriptions come from the shared inbound infrastructure instead of a parallel implementation. internal/amneziawg owns the obfuscation param generator/validator (ported from coinman-dev/3ax-ui, upgraded to AmneziaWG 2.0's S3/S4 padding and I1 signature packet) and the exec wrapper around awg-quick/awg, with fingerprint-based reconcile (noop / reload-via- syncconf / full restart) mirroring mtproto.Manager so a same-protocol edit doesn't force an unnecessary interface bounce that would drop every peer's connection. Frontend and install.sh's DKMS/awg-tools setup are tracked separately; this is backend-only. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): add frontend support and fix a Go->Zod generator gap Wires the amneziawg protocol through the panel UI the same way every other protocol is registered: a Zod settings schema (nested {server, clients}, matching the Go JSON exactly), the protocol enum, the inbound-form's per-protocol fields component and its tab-visibility allowlist, the default-settings factory, the client schema dispatcher, and the sniffing-capability exclusion (no Xray inbound exists for amneziawg, same as mtproto). Client key/allowedIPs fields are reused rather than duplicated: since AmneziaWG clients are wire-identical to WireGuard clients (same model.Client fields), ClientFormModal renders one shared field block for both, switching only the visible label by which protocol is active. The private-key input also gets a live public-key sync via a new useEffect, because unlike WireGuard's Xray-native inbound (which re-derives its public key at runtime and never stores one), AmneziaWG's server.publicKey is a real persisted field the Go backend reads directly — free-typing a new private key without this would silently save a mismatched keypair. Adds a downloadable per-client .conf (amneziawgConfig.ts, mirroring wireguardConfig.ts) with the obfuscation lines, and an InboundOption.AwgServer field on the Go side so the config builder gets the full server block in one round trip. Along the way, running tools/openapigen surfaced a real bug: it doesn't flatten anonymously-embedded Go structs the way encoding/json does, so ServerSettings embedding Obfuscation20 produced a Zod schema with a nested `obfuscation20` key that never matches the real wire JSON. Fixed by un-embedding (flat fields + an accessor method) and registering internal/amneziawg in the generator's own package list, which had been silently emitting a dangling schema reference. English and Russian translations are complete; the other 10 locale files still fall back to English for the new keys. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): complete frontend parity for the Inbounds list page The Clients page (form, CRUD, QR/config) already worked from the prior commit; this closes the remaining gap on the Inbounds side and in a couple of protocol allowlists that a plain search for existing wireguard/mtproto handling turned up. lib/xray/inbound-link.ts gets amneziawg-specific link/config builders (genAmneziaWGLink/genAmneziaWGConfig, plus the *s fan-out variants) mirroring the wireguard ones — AmneziaWG has no legacy peers-array to fall back to, so these read settings.clients directly and add the obfuscation lines every client must share with the server. Wired into genInboundLinks generically, and into three consumers that call the wireguard builders directly rather than through that dispatcher: QrCodeModal, InboundInfoModal, and InboundsPage's bulk export. ClientInfoModal, ClientBulkAddModal, and the bulk attach/detach modals each had their own protocol allowlist that needed amneziawg added alongside wireguard/mtproto. Two real gaps surfaced by grepping every remaining 'wireguard' / Protocols.WIREGUARD hit in frontend/src rather than trusting the checklist was exhaustive: - useInbounds.ts's TRACKED_PROTOCOLS gates the deactive/depleted/ expiring/online client counts shown per inbound on the list page; without amneziawg those counts would silently read zero. - inbound-tag.ts is an explicit client-side mirror of the Go backend's port_conflict.go (the file says so itself: "Keep in sync"). It still only special-cased wireguard for UDP, so an amneziawg inbound would have fallen through to the TCP default and disagreed with the backend's own port-conflict math. Also finishes translating the AmneziaWG UI strings into the 11 locale files that were still falling back to English (ar-EG, es-ES, fa-IR, id-ID, ja-JP, pt-BR, tr-TR, uk-UA, vi-VN, zh-CN, zh-TW), matching en-US/ru-RU key-for-key (26 new keys, verified by count in every file). Not run anywhere: npm run typecheck / build. This machine has neither Node nor npm, so nothing here has compiled — reviewed by hand plus brace/paren balance checks and cross-referencing the generated Zod/TS types. Treat this as needing a real typecheck before shipping. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * docs(install): note that AmneziaWG kernel module install is still manual Tracked separately (not yet ported into this script) — see coinman-dev/3ax-ui's install_amneziawg for the reference approach (ppa:amnezia/ppa). Also serves as a real, path-filter-matching change to get the previous empty commit's CI trigger to actually fire — release.yml's push trigger is paths-scoped and an empty commit changes no files, so it never matched. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): add a button to randomize obfuscation parameters Mirrors the existing key-regenerate button next to the private key field. Client-side randomization matches the ranges/constraints of GenerateObfuscation20's "default" preset (internal/amneziawg/params.go) closely enough for a form suggestion — the user can still hand-edit any field afterward. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(install): auto-install the AmneziaWG DKMS module + amneziawg-tools Ports install_amneziawg from coinman-dev/3ax-ui's install.sh, adapted to this script's broader distro coverage and NONINTERACTIVE convention: - Ubuntu/Debian/Armbian: ppa:amnezia/ppa (primary, tested path), with a reachability pre-check for the Launchpad PPA host — often blocked by hosting providers, especially Russian VPS — so a flaky network skips the feature instead of hanging apt through several retries. - Fedora/RHEL-family, Arch/Manjaro/Parch: best-effort fallback to plain wireguard-tools (+ AUR amneziawg-dkms via yay/paru when available), with a manual-install pointer. - Everything else: manual-install pointer only. Also installs ndppd and persists IPv4/IPv6 forwarding (for the future IPv6/NDP phase, not yet wired into the panel) and adds a Secure Boot warning at the end of the run, since a DKMS-built module is unsigned and won't load while it's enabled — a common trap on cloud VPS images. Never fatal: the panel installs and runs fine either way, an AmneziaWG inbound just won't bring up its tunnel until the module is present. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): resolve all 3 real CI failures (typecheck/lint/codegen) Found by checking the fork's Actions tab after the last two pushes — the release build passed (it doesn't run these checks) but the separate CI workflow caught three real issues: - golangci-lint (noctx): every internal/amneziawg/manager.go exec.Command call is now exec.CommandContext with a 30s timeout, so a hung awg-quick/awg invocation can't block the reconcile job indefinitely (mirrors internal/mtproto/process.go's own CommandContext usage). - tsc --noEmit: frontend/src/schemas/client.ts's hand-maintained InboundOptionSchema (used by the useClients hook, separate from the auto-generated one in generated/) never got an awgServer field added when the AmneziaWG frontend work was done — every read of inbound.awgServer.* in amneziawgConfig.ts was typing as {}. Added AwgServerOptionSchema, nested (not flattened like wg*) to match what amneziawgConfig.ts already expects. Also guarded server.publicKey in inbound-link.ts's genAmneziaWGLink against the schema's optional type. - codegen staleness: frontend/public/openapi.json is produced by a Node script (gen:api) this machine can't run; hand-applied the exact diff the CI failure log already showed (amneziawg protocol enum entry, ServerSettings schema, InboundOption.awgServer, one example payload), verified as valid JSON. Also confirmed independently by this run: install_amneziawg (previous commit) installed and loaded the DKMS module successfully on both amd64 and arm64 CI runners. The two "Deploy Smoke Tests" failures are unrelated to this change — this fork has only ever published the dev-latest pre-release, and GitHub's /releases/latest API deliberately excludes pre-releases, so the smoke test's no-argument install path (which resolves "latest") has nothing to find. Not a regression; needs an actual tagged release whenever that's wanted. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): Phase 2a — IPv6 support + NDP proxy Adds native dual-stack IPv6 to AmneziaWG inbounds, ported from coinman-dev/3ax-ui's approach: - ServerSettings gets ipv6Enabled/ipv6Subnet/ipv6ExternalInterface; Instance carries the server's own IPv6 address (first host of the subnet) alongside its IPv4 one. - defaultAmneziaWGClients allocates an IPv6 host address per client (second AllowedIPs entry) when the server has IPv6 enabled, reusing allocateWireguardAddress — which needed a real fix along the way: it always suffixed "/32" regardless of address family, which is wrong for an IPv6 host address (needs /128). Now family-aware. - generateServerConfig's PostUp/PostDown gains IPv6 forward-accept rules, proxy_ndp sysctl, and one `ip -6 neigh add/del proxy` entry per enabled peer with an IPv6 address — the lightweight per-client method, not the ndppd-daemon whole-subnet method (not worth the config-file-management complexity at this scale; ndppd itself is still installed by install.sh in case that changes later). - ValidateIPv6Subnet rejects a malformed subnet before save. - Frontend: ipv6Enabled/ipv6Subnet/ipv6ExternalInterface fields on the AmneziaWG inbound form, EN+RU translations, openapi.json/generated/* regenerated (the latter via `go run ./tools/openapigen`, pure Go). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): fill in IPv6 fields missed by the Phase 2a commit Two real gaps the CI caught (both new fields, both my miss): - inbound-defaults.ts's createDefaultAmneziawgInboundSettings() built a server object literal predating ipv6Enabled/ipv6Subnet/ ipv6ExternalInterface — AmneziawgServer's inferred type now requires them (zod .default() fields are non-optional post-parse), so this didn't typecheck at all. - openapi.json's ipv6Enabled property was missing the description the real generator attaches (the Go doc comment covering all three IPv6 fields is attached to the first one) — a one-line diff, but git diff --exit-code doesn't care how small. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): Phase 2b — per-client port-forwarding Admins can now set a per-client ForwardedPorts string (e.g. "80, 443, 8000-8100") that gets DNAT'd + FORWARD'd to that peer's tunnel address via iptables rules in PostUp/PostDown, ported and simplified from coinman-dev/3ax-ui's shared/portfwd. Two decisions worth flagging for future readers: - The iptables --comment tag on each rule is awg-fwd-<fnv32a(email)>, not the raw client email. Email is admin/API-supplied free text that ends up embedded in a shell-executed PostUp/PostDown line; a hash can never carry a shell metacharacter through where raw interpolation could. - The reconcile manager gained a third fingerprint (portFwdFP, next to the existing structural/peers ones). `awg syncconf` only touches the WireGuard peer table — it never re-applies PostUp/PostDown iptables rules — so a port-forward-only change has to force a full awg-quick down+up bounce, same as a structural change, rather than the lighter sync a plain peer add/remove can use. Also fixes a real pre-existing bug found while wiring up IPv6 client allocation in the previous commit's spirit: allocateWireguardAddress always suffixed "/32" regardless of address family, which produced invalid host bits for IPv6 (needs "/128"). ForwardedPorts flows through model.Client -> model.ClientRecord (gorm column wg_forwarded_ports, auto-migrated) -> ToRecord/ToClient/ MergeClientRecord, mirroring the awgServer field's earlier lesson that new fields need checking against a second, hand-maintained persistence-layer struct. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): route a client's traffic through Xray via the Routing page Every enabled AmneziaWG inbound gets its own Xray TPROXY bridge automatically, with no toggle to enable first: a loopback dokodemo-door inbound (sockopt.tproxy) tagged with the AmneziaWG inbound's own real tag, so it's already selectable in the existing Routing page's inbound-tag picker — the same trick the mtproto sidecar's own bridge already relies on (InboundService.GetInboundTags is a plain, protocol-blind SELECT over every inbound row's tag, no dedicated UI plumbing needed). internal/amneziawg's defaultPostUpDown TPROXYs every peer's traffic into that bridge unconditionally; the bridge's port is derived deterministically from the inbound's id (EgressPortForInbound) so the kernel-side reconcile loop and the Xray-config generator never need to negotiate a runtime value between them. injectAmneziawgEgress never generates a routing rule itself — whether a client's traffic goes anywhere beyond Xray's default routing is entirely up to whatever rules the admin adds through the existing Routing UI (pick the AmneziaWG inbound's tag as source, optionally a specific peer's IP via that page's own Source-IP field, and an outbound), exactly the same workflow as routing any other protocol. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): recover orphaned interfaces after an ungraceful exit Two gaps left an AmneziaWG interface stuck outside the manager's control after a crash (kill -9/OOM/panic skips StopAll): - ensureRestart's teardown was gated on the in-memory `exists` map, which is always empty on a fresh process, so a survived interface never got interfaceDown before interfaceUp tried `ip link add` against a name the kernel already had — failing forever and never populating m.ifaces, so traffic accounting silently stopped and the inbound could never be removed. Gate on isInterfaceUp instead, which checks real kernel state rather than this process's own bookkeeping. - An inbound deleted from the database entirely while the panel was down has no entry in `desired` ever again, so it never reaches the per-id cleanup loop in Reconcile (which only walks m.ifaces). Add a one-time sweepOrphansLocked scan of configDir, mirroring mtproto.Manager.sweepOrphansLocked, that tears down and removes any leftover interface/config not in the current desired set. Found by the automated review on MHSanaei/3x-ui#6105 (Finding 1). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * i18n(amneziawg): backfill IPv6/obfuscation/port-forwarding keys in 11 locales Only en-US/ru-RU ever got these 9 keys as each AmneziaWG feature landed (the regenerate-obfuscation button, then Phase 2a's IPv6 fields, then Phase 2b's per-client ForwardedPorts) — the other 11 locale files were never backfilled, so i18next has been silently falling back to English for all of them since Phase 1. Cosmetic-only (never broke anything), but now closed for every shipped locale. * fix(amneziawg): resolve 7 Medium findings from the automated PR review Each is independently reproducible; fixed together since one review pass found all of them. - manager.go: the shared "ip rule add fwmark" policy route had no existence check, so it duplicated in "ip rule show" on every interface bounce (which hostRulesFingerprint forces on any client add/remove/ re-IP). Now checked via "ip rule list | grep -q ..." first. (Finding 2) - params.go: ExternalInterface, IPv6ExternalInterface, and subnetIp/ subnetCidr are interpolated unescaped into a shell-executed PostUp/ PostDown line, but only obfuscation and the IPv6 subnet were validated before save. Added ValidateInterfaceName (a strict charset+length pattern) and ValidateSubnetIPv4 (netip.ParsePrefix), wired into normalizeAmneziaWGSettings. (Finding 3) - amneziawg_job.go: IsAwgInstalled() existed but nothing ever called it, so a host without awg/awg-quick (the Docker image, RHEL, Arch, a failed install.sh PPA step) logged a reconcile failure every 10s forever. Now checked once an inbound actually needs it, warning once instead of spamming. (Finding 4) - client_inbound_apply.go: the WireGuard/AmneziaWG credential carry-forward (added so a metadata-only client edit doesn't rotate keys) never covered ForwardedPorts, so a partial edit -- an API call or Telegram-bot toggle that omits the field -- silently wiped a client's port-forwarding spec. Carried forward and written back the same way the key fields already are. (Finding 5) - manager.go: hostRulesFingerprint keyed each peer on its IPv4 address only, and structuralFingerprint omitted IPv6Enabled/IPv6ExternalInterface entirely, so an IPv6-only change could pick the syncconf reload path (which never re-runs PostUp, leaving a stale NDP-proxy entry) or be a complete no-op. Both fingerprints now cover the IPv6 fields. (Finding 6) - port_conflict.go: the AmneziaWG egress bridge (injectAmneziawgEgress) binds 127.0.0.1:63100+id with no collision check anywhere, since it isn't a database row the ordinary port-conflict query can see -- same blind spot the reserved Xray API port already has its own check for. Added the equivalent check for the AmneziaWG bridge port. (Finding 7) - install.sh: install_amneziawg ran unconditionally for every install/ update, building a DKMS kernel module and enabling host-wide IPv4/IPv6 forwarding whether or not the feature is ever used. Gated behind a new should_install_amneziawg (XUI_INSTALL_AMNEZIAWG=true/false, or an interactive y/N prompt defaulting to no). Also replaced the deprecated apt-key adv with a dedicated keyring + signed-by= on the Debian branch, and guarded its sources.list appends against duplication on a retried install. (Finding 8) Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * feat(amneziawg): make the Xray TPROXY bridge a per-inbound opt-in Addresses Finding 10 from the automated PR review: an always-on TPROXY bridge makes every AmneziaWG tunnel hard-depend on Xray being up (all traffic, including DNS, drops whenever Xray restarts), and forces a full awg-quick down+up bounce on any client add/remove/re-IP, permanently losing the syncconf fast path. Adds ServerSettings.RouteThroughXray (off by default): - defaultPostUpDown only emits the TPROXY/policy-route rules when it's on; a plain AmneziaWG tunnel now has zero Xray dependency out of the box. - structuralFingerprint covers it (toggling it changes whether PostUp/ PostDown contain any TPROXY rules at all -- structural, not a per-peer host-rule). hostRulesFingerprint's IPv4 tracking is now itself conditional on RouteThroughXray (and IPv6 tracking on IPv6Enabled), so an instance that never uses either keeps the syncconf fast path for a plain peer re-IP. - injectAmneziawgEgress only creates a bridge for inbounds that opted in; checkAmneziawgEgressConflict (the Finding-7 fix) now parses each candidate through InstanceFromInbound so a non-routed inbound's port is correctly never treated as reserved. - New inbound-level Switch in the AmneziaWG form; the actual outbound decision is still made entirely through the panel's stock Routing page, same as before -- only whether the bridge exists at all is now a choice. Translation keys added to all 13 locales in the same commit this time, not backfilled later (see Finding 9's lesson). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): resolve 4 Low findings from the automated PR review - manager.go: serverAddress assumed subnetIp always ends in ".0"; a base like "10.8.1.5" was used verbatim as the server's own address, eventually colliding with peer allocation (which starts at .2 upward). Now derives the first host of the actual subnetIp/subnetCidr network via netip, matching serverAddressV6's own approach. A /32 base (no host bits at all) is still used as-is. (Finding 12, partial -- the /16 pool-widening half of this finding only exists on the upstream-pr/amneziawg branch's merged client_wireguard.go, not here; handled separately on that branch.) - manager.go: ensureLocked carried the previous per-peer traffic counters (`last`) forward even through a full restart, but awg-quick down+up resets the kernel's own counters to zero -- the next CollectTraffic computed a large negative delta (clamped to 0), silently discarding real traffic. Extracted the decision into nextTrafficBaseline: only a reload (syncconf) preserves the baseline. (Finding 13) - portfwd.go: exported ForwardedPortsInclude; inbound_amneziawg.go's new checkForwardedPortsConflict uses it to reject, at save time, a client's forwardedPorts that would DNAT the panel's own port or another enabled inbound's port to the tunnel client -- portForwardLines has no destination restriction, so this collision was previously silent. Wired into both the single-client update path and the add-client path (client_inbound_apply.go), plus normalizeAmneziaWGSettings for the whole-inbound save path. (Finding 14) - inbound.go: InboundOption.AwgServer sent the whole ServerSettings struct including PrivateKey to GetInboundOptions callers -- a shared, admin-wide dropdown-filling endpoint the frontend's own AwgServerOptionSchema never reads that field from. Redacted it before assigning. (Finding 11) Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): don't widen the peer address pool past AmneziaWG's own subnet Completes Finding 12 from the automated PR review (the serverAddress half of this finding was already fixed on main and cherry-picked here). This half is specific to this branch: allocateWireguardAddress's /16 pool-widening fallback is an independent addition from upstream's own main that this branch inherited during the cherry-pick rebase -- it doesn't exist on the fork's own main at all, so this fix can't be cherry-picked the normal way and is committed directly here. Widening is safe for WireGuard's own Xray-native inbound (AllowedIPs isn't tied to a strict kernel interface subnet), but AmneziaWG's kernel interface Address is exactly the configured subnet -- an address allocated from the containing /16 once the /24 fills up would be silently unroutable. allocateWireguardAddress now takes an explicit allowWidening bool: WireGuard's own caller passes true (unchanged behavior), AmneziaWG's passes false (fails loudly on exhaustion instead). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * docs(docker): note that AmneziaWG doesn't work in this image Investigated: the image is Alpine-based, and AmneziaWG's own packaging (DKMS module + amneziawg-tools) doesn't target Alpine/musl at all -- unlike the Debian/Ubuntu/Fedora/Arch paths install.sh already handles, there's no package to apk add even with full host network/capabilities. The panel already degrades gracefully (IsAwgInstalled() logs one warning instead of retrying forever), so no code change is needed -- just made the reason explicit at the point where a user would reach for cap_add/ network_mode to try to work around it. * fix(sub): include amneziawg inbounds in subscription links getInboundsBySubId's SQL protocol allowlist never had 'amneziawg' added, so every AmneziaWG client was silently excluded from all three subscription formats (plain/individual links, JSON, Clash) and from the Telegram bot's QR/individual-link buttons, which fetch through the same path. genAmneziaWGLink itself was already fully implemented and already wired into GetLink's dispatch switch -- it just never got a chance to run. Same bug shape as the earlier TRACKED_PROTOCOLS frontend gap: a hardcoded protocol list one entry short. Found while investigating whether the Telegram bot needed AmneziaWG- specific client-management code -- it doesn't (the bot itself is fully protocol-agnostic), but this is the actual root cause of "can't share an AmneziaWG client's config via the bot." Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(inbound): enforce node-eligibility server-side, not just in the UI Investigated multi-node interaction with AmneziaWG: the master's own reconcile (DesiredAmneziaWGInstances) and Xray config generation (injectAmneziawgEgress, the GenXrayInboundConfig protocol skip) all correctly filter on NodeID IS NULL, so a node-assigned AmneziaWG (or MTProto) inbound would never be managed by the master. But nothing stopped one from being created that way: NODE_ELIGIBLE_PROTOCOLS (frontend/src/pages/inbounds/form/InboundFormModal.tsx) only hides the node picker client-side -- a direct API call could set nodeId on an AmneziaWG inbound, which every node then reconciles as an ordinary local inbound (nodes run the identical binary, full cron suite included), leaving it running unmanaged and untracked by the master's own AmneziaWG bookkeeping. Added isNodeEligibleProtocol (inbound_protocol.go), mirroring the frontend's allowlist, and enforced it in both AddInbound (the actually exploitable path -- nodeId comes straight from the request) and UpdateInbound (defense in depth; NodeID is already restored from the stored row there before this check, so it mainly guards against a protocol change on an existing node-hosted inbound). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): allow TPROXY-marked traffic through a default-deny INPUT chain TPROXY never rewrites a packet's own destination address, only the routing decision. A default-deny firewall whose INPUT chain sanity-checks "is this destination actually local" (UFW's ufw-not-local, via addrtype --dst-type LOCAL, is a concrete example) silently drops the redirected packet before Xray's socket ever sees it -- RouteThroughXray looked fully configured (TPROXY rule present and counting, Xray listening with IP_TRANSPARENT set) yet every peer's traffic vanished with no trace on either side. Adds an idempotent, never-torn-down "iptables -I INPUT 1 -m mark --mark <fwmark> -j ACCEPT" alongside the existing shared policy route, so this works regardless of which firewall manager owns the rest of the INPUT chain. * fix(frontend): give AmneziaWG the same UDP tag and its own tag color The Inbounds list only special-cased isWireguard/isHysteria for the "UDP" network badge, so an AmneziaWG row showed just the bare protocol tag with no transport badge next to it. Added the missing isAmneziawg flag (mirrors isWireguard exactly) and wired it into the same branch. Client-row protocol-color maps in ClientsPage/HostList had no amneziawg entry, silently falling back to grey -- ClientInfoModal already had amneziawg: 'yellow' from earlier work, these two just never got it. * feat(logs): show which AmneziaWG client an access-log line belongs to The dokodemo-door TPROXY bridge every AmneziaWG peer's traffic is routed through has no per-user identity, so Xray's own access log never carries an "email:" token for these lines -- the Access Logs modal showed a blank Email column for every in-*-udp row, even though every other protocol's rows show the client normally. The peer's decapsulated tunnel IP does survive as the log's "from" address, and that IP deterministically maps to exactly one configured peer. Builds a "<inbound tag>|<ip>" -> email index from the same AmneziaWG inbounds already parsed elsewhere (amneziawg.InstanceFromInbound), and fills in Email from it whenever the raw log line didn't have one. * fix(amneziawg): enable sniffing on the TPROXY bridge Domain-based Routing rules could never match RouteThroughXray traffic: an AmneziaWG peer resolves DNS itself, through the tunnel, before ever sending a packet, so the decapsulated traffic TPROXY hands to the bridge is already a bare destination IP with no domain name attached at the network layer. Every other inbound recovers this via sniffing (confirmed working for the stock wireguard inbound, which does have it configured); the bridge never got a sniffing block at all, so only tag/IP/network-based rules could ever match it -- any domain rule above it in the list was silently unreachable. * docs: add an AmneziaWG config page and list it as a supported protocol Closes the PR checklist gap: the feature shipped with zero mention on the docs site. Mirrors reality.mdx's structure (key settings, setup steps, config excerpt) and notes the Docker/multi-node/Telegram-bot caveats the PR itself is honest about not having confirmed. * fix: address the fresh review round on PR #6105 (8 findings) 1. hostRulesFingerprint didn't account for ForwardedPorts when RouteThroughXray was off, so re-IPing a peer with port-forwarding configured left stale DNAT rules pointing at an address the next peer could be handed. 2. Server/client config values (keys, email, I1) were never validated for control characters before being written into the generated .conf; a newline could smuggle a PostUp hook into awg-quick's parser. Added ValidateConfigValue at save time and a sanitizeConfigValue backstop at render time. 3. checkForwardedPortsConflict didn't scope to node_id IS NULL, so a port used only on a different node produced a false collision; also hoisted the panel-port/inbounds lookup out of the per-client loop (portConflictContext) so N clients cost one query, not N. 4. PostDown commands were ";"-joined and abort on the first failure; appendOrTrue makes teardown best-effort so an external firewall flush can't leave DNAT rules to accumulate across bounces. 5. The "ip rule list | grep -q" existence check could SIGPIPE under pipefail and re-add a duplicate rule; switched to grep -c >/dev/null. 6. Ported the vpn:// share-link format (base64url of the plain .conf text, matching the real AmneziaVPN app) onto this branch -- it had only ever landed on our own fork's main, so this PR branch was still on the old amneziawg://+query-params scheme our own docs no longer described. Also corrected the docs' install.sh claim (opt-in/ interactive, not automatic) and stale pre-opt-in comments in route_egress.go. 7. install.sh: Arch's ndppd install used pacman -Syu (full system upgrade) instead of -Sy like every other call in the script; and should_install_amneziawg re-prompted on every `x-ui update` even when awg was already installed. 8. CollectTraffic could clobber a concurrent restart's freshly-reset (empty) traffic baseline with stale pre-restart counters, since getPeerStats runs lock-free; now checks pointer identity before writing back. sweepOrphansLocked permanently disabled itself on a transient os.ReadDir failure instead of allowing a retry. go build/vet/test and frontend typecheck/lint/build/vitest all pass. * fix(install.sh): check the live sysctl value, not sysctl.conf text Reviewer feedback (cherts, PR #6105): grepping /etc/sysctl.conf for the setting name is unreliable -- many distros split sysctl config across /etc/sysctl.d/*.conf, and /etc/sysctl.conf can be a symlink into that directory, so the check can miss an already-active setting (harmless duplicate append) or match a disabled/commented line (forwarding silently stays off). Query the live value via `sysctl -n` instead, which is accurate regardless of which file set it. Applied the same fix to both the IPv6 and IPv4 checks for consistency. * fix: update inbound_amneziawg.go to the split buildInboundForLocalRuntime Same fork-only-file blind spot as the one caught on our own main after the 3.6.0 sync: upstream split buildRuntimeInboundForAPI into buildInboundForNodePush / buildInboundForLocalRuntime (part of the node-sync client-deletion fix,5bc81dfd), updating every call site it could see. This file doesn't exist upstream, so it kept calling the old name even after the branch merged in that commit. * fix(frontend): recognize AmneziaWG's vpn:// scheme in share-link labels The shared link-tag/label helper (used by the client info modal, QR modal, and subscription page) had no entry for the vpn:// scheme AmneziaWG links use, so it fell through to the generic fallback: a plain "Vpn" tag with no color, and an empty remark/port that made the row's title fall back to "Link N" instead of the inbound's actual name:port — unlike every other protocol, which shows its real tag and label. vpn:// links are base64url of a plain .conf text (matching the real AmneziaVPN app's own share-link format), not a structured URL, so there's no query string or #hash to read a remark/port from. Decode the payload and pull the remark/endpoint back out of the .conf text directly instead. * fix(xray): force a full restart for TPROXY inbounds, never hot-add them Real incident: an AmneziaWG inbound with RouteThroughXray enabled lost all internet on that connection after a migration. Root-caused on the live box -- iptables TPROXY counters were incrementing (packets correctly redirected to 127.0.0.1:63110), but nothing was actually listening there (ss showed nothing on that port) until a full `systemctl restart x-ui`, after which the bridge came up immediately. Xray-core's gRPC AddInbound reports success for a new sockopt.tproxy inbound (internal/amneziawg's own Xray egress bridge is the only kind this fork ever generates) but doesn't reliably bind a working listener for it outside of process startup -- the bridge silently never comes up, and RouteThroughXray traffic goes nowhere until the next full restart happens to occur for an unrelated reason. diffInbounds already has this exact defensive pattern for REALITY inbounds ("a gRPC remove+add does not reliably rebuild the REALITY authenticator"), just never extended to TPROXY, and only in the already-existing-then-changed branch -- the "brand new inbound" branch had no such guard at all, which is exactly the path a freshly-enabled RouteThroughXray bridge takes. Added inboundUsesTproxy and wired it into both branches. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): flag Xray for resync when a peer edit changes qualifying state Real production bug, root-caused on iiadmin-vps: updateAmneziaWGInbound/ AddInbound/DelInbound only ever updated the kernel interface via amneziawg.GetManager() -- they never called SetNeedRestart the way every other protocol's mutation path does (client_crud.go, inbound.go, etc. all do). injectAmneziawgEgress's TPROXY bridge inbound depends on InstanceFromInbound finding at least one qualifying peer plus RouteThroughXray, so an edit that flips that (first peer added, last one removed, RouteThroughXray toggled on) previously required a full panel restart before the bridge actually got created, with no error anywhere: the kernel interface would handshake fine, but traffic redirected into the bridge's TPROXY port went nowhere because nothing was listening there. diffInbounds/inboundUsesTproxy already correctly force a full restart for a brand new TPROXY inbound (bdee0a20) -- that part was never the bug. The gap was entirely upstream: nothing ever told Xray a resync was even needed. * fix(clients): reject AllowedIPs already used on another WireGuard/AmneziaWG inbound defaultWireguardClients/defaultAmneziaWGClients only ever checked uniqueness against their own inbound's client list, so two inbounds sharing a subnet (same protocol or not) could silently hand out or accept the same address -- the exact scenario behind a real duplicate-IP incident where a WireGuard and an AmneziaWG client both ended up on the same address. otherTunnelAllowedIPs now collects every address already claimed on every other tunnel inbound and folds it into both the auto-allocation pool and the manual-entry collision check, naming the other inbound in the error when it fires. * fix(frontend): add the missing AmneziaWG config download on the sub page The subscription page already gave WireGuard links their own "Config" block (copy/download/QR of the actual .conf, via wireguardConfigFromLink reversing the wireguard:// query params) but had no equivalent for AmneziaWG's vpn:// links -- its isWireguardLink gate never matched them, and no reverse-parse helper existed for this page specifically. Every other surface (InboundInfoModal, ClientInfoModal, ClientQrModal) already had this parity; this was the one page that didn't. Fixed by adding amneziawgConfigFromLink (inbound-link.ts), simpler than its WireGuard counterpart since a vpn:// payload already *is* the plain .conf text -- just base64url-decode it, no query-param reconstruction needed -- and wiring it into SubPage.tsx alongside the existing WireGuard block, reusing the same pages.clients.amneziaWgConfig label the other three surfaces already use. * fix(xray): force a full restart for password-auth SOCKS5 hot-apply Real production incident: editing a client under an AmneziaWG inbound left its embedded SOCKS5 relay's settings byte-different (a new account list), and Xray's gRPC remove+add hot swap silently dropped the account for a peer whose email contained non-ASCII characters -- its tunnel kept handshaking fine but all its traffic got rejected at the SOCKS5 layer, while every other peer on the same relay was unaffected. A full restart (reading the same JSON straight from disk) always produced the correct account list. socks isn't in userDiffableProtocols (that only covers vless/vmess/trojan's clients+email shape, not accounts+user), so any settings drift on this inbound fell through to the generic remove+add path. Forces a restart instead, the same defensive choice already made for REALITY and TPROXY -- scoped to auth:"password" specifically so the other, noauth SOCKS5 bridges (panel/node/mtproto egress) keep the cheaper hot path. * Fix Attach reusing one identity's address across wg/awg inbounds ClientService.Attach deliberately copies one identity's stored AllowedIPs into every WireGuard/AmneziaWG inbound it's attached to in the same call, so the same person gets the same tunnel address on every protocol they use. Its loop calls addInboundClient once per inbound, and each of those independently computes otherTunnelAllowedIPs -- so by the second inbound in the batch, the first inbound's just-written copy of this identity's own address looked like a cross-inbound collision against itself. Real production symptom this caused: detaching then re-attaching a client to both wg and awg failed with "wireguard: allowedIPs entry X is already used by a client on inbound 'awg' (#N)" -- the exact address the identity is supposed to keep, rejected as if it belonged to someone else. Add a selfEmails exclusion to otherTunnelAllowedIPs and populate it from the client(s) being processed at the one real call site. Safe unconditionally: ClientRecord.Email is globally unique, so a match can only ever be this same identity's own entry on a sibling inbound, never a genuine different client's address. Reproduced the underlying mechanism live (manual entry correctly rejected as a cross-inbound collision; fresh auto-allocation correctly avoided a used address) before writing the fix, to confirm the guard itself works and the bug is specifically in how Attach's per-inbound calls interact with it. * Attach: allocate fresh when re-attaching with no active tunnel The previous fix (82cc69f5) made Attach's own address-reuse correctly not collide with itself across inbounds -- but it still always reused an identity's stored AllowedIPs verbatim, even when that identity currently has zero WireGuard/AmneziaWG attachments at all. A real report from testing this live: an identity fully detached from both its wg and awg inbounds, then re-attached, got its old address back even though several lower addresses were free -- because nothing about being fully detached ever cleared the stored value Attach copies from. Add hasTunnelAttachment, checked once against the identity's CURRENT inbound set before Attach's loop runs: if none of its current inbounds is WireGuard/AmneziaWG, clear the stored AllowedIPs so this attach allocates fresh (matching what a brand-new client would get) instead of resurrecting an address nothing reserves anymore. Left alone when the identity already has an active tunnel elsewhere, so extending it to a second protocol still keeps a consistent address. * Fix TestOtherTunnelAllowedIPsExcludesSelfEmail's own test setup CI caught this: the "genuinely different client" (other@wg) was seeded onto the SAME inbound passed as excludeID, which otherTunnelAllowedIPs already excludes entirely regardless of the selfEmails fix -- so the assertion that its address is still reported could never have passed, proving nothing either way. Move it onto the sibling inbound alongside shared@id, which is what the test actually needs to exercise (two clients on one sibling, one excluded by email, one not). * Attach: never inherit an address that doesn't fit the target inbound hasTunnelAttachment (from the earlier fix, commit 51067f16) only asked "does this identity have ANY tunnel attachment", treating that as license to reuse its stored address verbatim on every inbound being attached. Real production case this missed: an identity's stored address came from WireGuard's own fallback subnet (10.0.0.0/24, used when that inbound has no other clients to infer a base from), then got attached to a second, AmneziaWG inbound configured for a completely different subnet (10.8.1.0/24). defaultAmneziaWGClients's already-set-AllowedIPs branch only checks for collisions, never subnet membership, so the mismatched address was accepted silently -- producing a peer that can never actually connect, since an AmneziaWG address must fall inside the kernel interface's own configured subnet to be routable at all. Add addressesFitAmneziaWGInbound, checked per inbound inside Attach's loop: if the inherited address doesn't fit the SPECIFIC inbound being attached, clear it just for that one so it gets a fresh, valid allocation instead, while other already-attached inbounds keep their existing values. WireGuard has no equivalent strict subnet requirement (allocateWireguardAddress can widen to a fallback pool for it), so this only ever constrains AmneziaWG targets. * Give WireGuard an explicit, admin-configurable subnet field WireGuard previously had no configurable subnet at all -- only an implicit one, either inferred from existing clients' own addresses (wireguardAllocationBase) or a hardcoded 10.0.0.0/24 fallback when none exist yet. AmneziaWG, by contrast, has always had a real server.subnetIp/subnetCidr field in its settings, editable in the UI. User request: give WireGuard the same treatment. Backend: explicitWireguardSubnetBase reads an optional subnetIp/ subnetCidr pair from the inbound's own settings JSON (mirroring AmneziaWG's defaultAmneziaWGSubnetBases). defaultWireguardClients checks it first; only when unset does it fall back to today's inference-from-existing-clients behavior, so an inbound saved before this field existed keeps working exactly as it always has. Frontend: subnetIp/subnetCidr added to WireguardInboundSettingsSchema and the inbound form (mirroring AmneziaWG's own field layout/labels), with a real default (10.0.0.0/24, the same value the backend already fell back to) seeded for newly created inbounds so the field starts populated and editable rather than blank. Translated across all 13 locales. This also structurally closes the class of bug fixed in 82cc69f5/291c47b3: with wg and awg subnets explicit and independently controllable, an admin who wants matching addresses across both protocols can configure them to actually agree, instead of one silently inheriting the other's incompatible range. * Split the client edit form's AllowedIPs into per-protocol fields A client attached to both WireGuard and AmneziaWG shared one AllowedIPs form field with a dynamically-switching label, so its two genuinely different addresses could never both be shown or edited correctly. Worse, Update/Create broadcast that one shared value to every attached wg/awg inbound with no subnet-fit check, so an ordinary edit save could silently overwrite one protocol's address with the other's -- the same bug class already fixed for Attach, but reachable from any client edit. model.Client gains an optional AllowedIPsByInbound map so a caller can send distinct values per inbound; Update/Create honor it and, when it's absent, clear a shared value that doesn't fit an AmneziaWG inbound's own subnet instead of writing it through. A new TunnelAllowedIPsByInbound read path feeds the real per-inbound address to the client edit form via GET, which now renders two separate, correctly-labeled fields whenever both protocols are attached (unchanged single dynamic field otherwise). * Regenerate openapi.json for the new allowedIPsByInbound field Follow-up to 878ee839: gen:zod (frontend/src/generated) was already regenerated and committed, but gen:api (frontend/public/openapi.json) wasn't, so CI's codegen drift check failed. * Fix build breakage from merging upstream main: Update() gained a limitHwid param Two of our own AllowedIPs tests (not present upstream, so the merge never flagged them as conflicting) still called the old 3-arg Update(inboundSvc, id, client) -- upstream's hardware-ID-limit feature added a required limitHwid parameter that every other caller in this package already passes. Also drop createDefaultInboundSettings from InboundsPage.tsx: the merge conflict resolution kept the import, but upstream's clone-payload refactor (buildClonePayload, inbound-clone.ts) already calls it internally now -- this file doesn't need it directly anymore. * Fix real bug: AmneziaWG clients rejected as "empty client ID" in 3 places Three switch statements on inbound.Protocol handle "wireguard" explicitly (checking client.PublicKey) but fall through to the default case for "amneziawg" (checking client.ID, which AmneziaWG clients never set -- they use PublicKey/Email like WireGuard, not the VMess/VLESS UUID field). This is what the 4 AllowedIPs tests were actually catching: UpdateInboundClient's newClientId derivation hit this same default branch, so every Update() on an AmneziaWG client returned "empty client ID" before ever reaching the AllowedIPs logic being tested. Fixed by adding "amneziawg" alongside "wireguard" in each switch: addInboundClient's per-client validation, UpdateInboundClient's newClientId derivation, and AddInbound's per-client validation (the third one wasn't hit by these tests, but has the identical bug -- creating a brand-new AmneziaWG inbound with a client attached would fail the same way). * refactor(amneziawg): rename Obfuscation20 to Obfuscation31, drop the dead mobile preset Mechanical rename ahead of the AmneziaWG 3.1 parameter work: the type, generator and prose all said 2.0, and the "mobile" generator preset was reachable only from its own test. No behavior change. * feat(amneziawg): AmneziaWG 3.1 obfuscation parameters (backend + generated schemas) Adds the 3.1 parameter surface to the inbound settings and both Go config emitters: I2-I5 signature packets, HeaderProtectionKey (base64 32-byte, shared server<->client), ContentPaddingAddition, the five handshake-timing randomization ranges (RekeyAfterTime/RekeyTimeout/RejectAfterTime/ KeepaliveTimeout/MaxHandshakeAttempts), and the RandomTrailers/ DisableCookies switches. Freshly generated sets fill everything except I2-I5 (matching Amnezia's own generator) with jittered ranges bracketing WireGuard's stock timing constants; every reject window starts >= 30s above the rekey window by construction. Empty fields stay off the wire, so blanking a field disables just that feature. Validation generalizes the H1-H4 range checker for the new uint32-range fields, requires min 1 on timers, cross-checks rekey-vs-reject, and demands a real 32-byte base64 header-protection key. The manager warns once per process when the installed awg tools predate 3.1 but an inbound uses 3.1 parameters (awg-quick rejects unknown keys with a generic error otherwise); apply still proceeds. Requires amneziawg-tools v3.1.20260812+ / module or amneziawg-go v3.1.20260814+ on the host. * feat(amneziawg): emit and randomize 3.1 parameters in the frontend Both client-config emitters (the vpn:// link builder and the clients-page .conf builder) now carry the 3.1 [Interface] lines in the same order as the Go emitters. The obfuscation randomizer moves out of InboundFormModal into a shared lib/xray/amneziawg-obfuscation.ts that also fills the new fields, and createDefaultAmneziawgInboundSettings switches from static values to that generator — a fresh inbound now really gets the unique fingerprint the docs promise instead of the same jc=5/jmin=10 set on every install. Schema parse-time defaults for the new fields stay ''/false on purpose: real values come only from the generator, so resaving an inbound never mutates its stored parameters. A new parity test pins the hand-written AmneziawgServerSchema to the generated ServerSettings key set, so a field added on one side can no longer silently vanish from configs. * feat(amneziawg): 3.1 form fields and translations Inbound form gains inputs for I2-I5, HeaderProtectionKey (filled by the existing obfuscation Regenerate button), ContentPaddingAddition, the five timing ranges, and the RandomTrailers/DisableCookies switches; the MTU input picks up the min=1 its schema already enforced. All 13 locales get the 19 new keys and drop the "2.0" branding from the s3/s4/i1 labels. * docs(amneziawg): document 3.1 parameters; install.sh kernel/version notes The AmneziaWG page's obfuscation section moves from the 2.0 to the 3.1 parameter set: table rows for I2-I5, HeaderProtectionKey, ContentPaddingAddition, the timing-randomization ranges and the RandomTrailers/DisableCookies switches, a requirements callout (tools v3.1.20260812+, module/awg-go v3.1.20260814+, Linux 6.7+ for the DKMS path), and a sample client .conf that matches what the panel actually emits (including the DNS defaults and PersistentKeepalive it always had). install.sh warns before a DKMS build on a pre-6.7 kernel and after any install that left pre-3.1 amneziawg-tools on PATH. Also updates the hosts API operation paths ({id} -> {groupId}) in the stale ru/zh/fa reference pages: syncing docs/public/openapi.json for the new AmneziaWG schema fields surfaced that rename, which had never been copied over, and the docs build fails on paths missing from the spec. * fix(amneziawg): reject control characters and canonicalize 3.1 range values Adversarial review of the 3.1 work surfaced a validation gap: base64.DecodeString silently ignores CR/LF, so a header-protection key that picked up a line wrap in transit decoded to a valid 32 bytes, passed validation, and was emitted verbatim into every client config — where the orphan second line breaks the import while the server (whose emitter strips control chars) keeps running with the correct key. The key and range validators now reject control characters outright. Also from the same review: range values are canonicalized on save ("110 - 140" -> "110-140", whitespace-only collapses to feature-off, closing a case where the server conf rendered an invalid blank-value line the client emitters omitted); the rekey/reject invariant is now enforced against WireGuard's 120s/180s defaults when only one side is set; and the structural fingerprint joins on "\n" instead of "|", which is a legal I1-I5 character and made adjacent free-text fields join-ambiguous. * fix(install): resolve latest release tag via web redirect to dodge API rate limits The non-interactive install smoke test resolved the release version through the unauthenticated GitHub API (api.github.com/.../releases/latest), which allows only 60 requests/hour per IP. The test installs twice in one run, and on shared CI runner IPs the second call gets rate-limited, returns no tag_name, and install.sh treats an empty version as fatal (exit 1) — the same "Failed to fetch x-ui version" real users hit behind CGNAT/shared addresses. resolve_latest_tag() now reads the tag from the github.com releases/latest web redirect (not subject to the API rate limit), falling back to the API only if the redirect yields nothing. Verified with the real deploy/test/smoke-noninteractive.sh (two installs, both green). * fix(amneziawg): three review findings on #6105, plus a comment trim 1. A peer's allowedIPs reached the generated .conf unvalidated and unsanitized, unlike email/publicKey/preSharedKey which normalizeAmneziaWGSettings already guards. A newline in an entry let a following "[Interface]" re-open the interface section, whose "PostUp = ..." awg-quick then runs as root on the next apply. Reproduced end to end against generateServerConfig. The save path now rejects and canonicalizes through normalizeWireguardAllowedIPs, and the render path sanitizes as a backstop for rows predating the validation (an upgrade, a restored backup, a direct DB edit). H1-H4 get the same render-time sanitize, and the two NIC name fields a plausibility check, since stripping control characters alone would still let a shell metacharacter into a root-executed PostUp line. 2. EgressPortForInbound is 63100 + inbound id, so an id past 2435 derives a port above 65535 -- and Xray rejects the whole generated config over one invalid port, taking every other protocol down with it. It now reports ok=false past the range, and both the Xray bridge and its TPROXY rules are skipped instead of emitting an impossible port. 3. The downloadable AmneziaWG .conf read ClientRecord.allowedIPs, a single shared column that holds the WireGuard address for an identity attached to both protocols -- the exact ambiguity tunnelAllowedIPs was added to resolve for the edit form. The info and QR modals already hydrate that field, so they now pass this inbound's own address to the builder. Also trims the comment blocks in the files touched here to the 2-line guidance in CLAUDE.md: internal/amneziawg alone carried 423 comment lines in over-long blocks against 118 for the comparable internal/mtproto, and is now at 110. Every non-obvious constraint is kept (the kernel S1/S2 rule, why PostDown is best-effort, why grep -c and not -q, why the fingerprints split three ways); the narration is gone. Two hot_diff.go comments pointed at an internal/amneziawgnet package and an injectAmneziawgnetSocks function that exist nowhere in the tree; the checks themselves are unchanged. * feat(logs): add an AmneziaWG log view to the overview The overview has an access-log view for Xray but nothing for AmneziaWG, so when a tunnel misbehaves there is no way to see it from the panel at all. A kernel tunnel logs no per-request lines, so the equivalent view is built from the two things it does expose: - Live per-peer activity from `awg show <iface> dump`, joined to the client email through the desired peer set: last handshake, endpoint, allowed IPs, cumulative transfer and online state, newest handshake first. - The panel's own AmneziaWG event lines (interface up/down, awg-quick failures, the pre-3.1 tools warning), which are what actually explain a peer being absent from the table. POST /panel/api/server/amneziawglogs/:count serves both, with the same count + filter contract GetXrayLogs uses, and the modal mirrors XrayLogModal's toolbar, auto-update, mobile cards and download. The action-bar button is gated on a new status.amneziawg.configured, which stays true while an inbound exists but its interface is down -- exactly when the event lines matter. Verified against a running panel: the endpoint returns the peer table and real event lines ("awg/awg-quick not found on PATH", "create config dir: permission denied"), and count and filter both narrow as documented. One of those lines surfaced a Debugf that had been rendering as "for inbound1:amneziawg:"; fixed here since it is now user-visible. * fix(amneziawg): stop double-counting a routed inbound's traffic injectAmneziawgEgress tags its Xray bridge with the AmneziaWG inbound's own tag, so the stock Routing page can target it. Xray therefore reports that bridge's bytes under the inbound's tag, and XrayTrafficJob feeds them to AddTraffic -- which accumulates -- on top of the same bytes AmneziaWGJob already reported from `awg show dump`. An inbound with routeThroughXray on counted roughly twice its real traffic, which also inflates the quota checks that read the same counters. The awg counters are the complete measure: every peer, whether or not TPROXY routed it, and the same wire bytes the per-client totals are built from, so they stay and the Xray rows are dropped. Per-client stats were never affected -- a dokodemo-door bridge has no per-user identity, so Xray emits no user>>>email rows for it. Filtering happens before every consumer, so the DB totals, the external traffic inform and the dashboard's live speed all read one source per inbound. The set of bridge tags now comes from a predicate shared with injectAmneziawgEgress itself, with a test that pins the two together -- naming one tag too few doubles the traffic again, one too many makes real traffic vanish. * fix(amneziawg): align the three .conf emitters on one peer field order The panel builds an AmneziaWG client .conf in three independent places, and they disagreed: buildAmneziaWGClientConfig put PresharedKey right after PublicKey (wg-quick(8)'s own order, and what both WireGuard emitters on the clients side already use), while genAmneziaWGConfig and the Go amneziaWGConfigText put it after Endpoint. A user comparing a subscription link against a downloaded .conf sees the difference immediately, and the generators are exactly the kind of parallel implementation CLAUDE.md warns about drifting. Moves the two outliers onto the wg-quick order. Also drops the stray trailing newline that only appeared when PersistentKeepalive was set, so a config now always ends on its last set field whichever that is -- the same shape all three emitters produce for the same client. Parsing is unaffected either way (the format is order-insensitive, and the AmneziaVPN app reads it as a flat key-value bag), so this changes only the rendered text. Adds a test on each side that pins the peer block's field order, since nothing previously asserted it. * refactor(amneziawg): switch to the embedded amneziawg-go/gVisor architecture Replaces the kernel-module (DKMS) + awg-quick + TPROXY backend with the fork's own embedded design: amneziawg-go runs in-process over a userspace gVisor netstack, and each peer's decapsulated traffic relays into its own loopback Xray SOCKS5 inbound, so Xray's native stats/sniffing/routing work for free instead of through hand-rolled bridges. No kernel module, no DKMS, no Secure Boot conflicts, works the same in a container as on bare metal. - internal/amneziawgnet: new package (Device/UAPI, gVisor netstack, TCP/UDP forwarding, SOCKS5 relay, peer identity, IPv6 host-alias egress identity, per-client port-forwarding) - amneziawg-go v3.1.20260814 + gvisor. - internal/amneziawg: keep the reusable protocol-shape types/validation (Instance/Peer/Obfuscation, InstanceFromInbound); drop the OS-shellout half (awg-quick, TPROXY policy routing, NDP proxy, peer-stats parsing). - internal/web/service: rewire the 5 integration points (job, runtime, client-apply, web shutdown, xray config) from the old manager to the new one; the AmneziaWG log view is rebuilt on the embedded Device's own UAPI dump (extended to carry endpoint/AllowedIPs) instead of `awg show dump`. - install.sh: drop DKMS/ndppd/TPROXY/Secure-Boot installer code (~250 lines) - an entire recurring class of installer fragility goes away. - frontend: drop the now-meaningless routeThroughXray toggle (the relay is always on); keep the field in the Zod schema, unexposed, so it isn't silently stripped from stored settings on next save - two regression tests deliberately depend on the Go struct still carrying it. - docs/i18n: rewrite amneziawg.mdx for the new architecture; drop the dead routeThroughXray translation keys across all 13 locales. Real production throughput (embedded core datapath, isolated bench, same box the kernel-module path was measured on): ~296 Mbit/s up, ~640 Mbit/s down, vs. 414.69 MB/s (~3.3 Gbit/s) for the kernel module on the same hardware - a real gap, tempered by this being single-stream/no-SOCKS5-hop and most VPN traffic being latency-bound rather than throughput-saturating. * fix(amneziawg): restore the branch's own Obfuscation31 shape + 2 CodeQL findings The previous push's wholesale-copy of types.go/params.go from the fork's main branch pulled in that branch's own independent (and incompatible) naming for the same AWG 3.1 feature set: Obfuscation20/GenerateObfuscation20 instead of this branch's already-shipped Obfuscation31/GenerateObfuscation31, and a missing CanonicalizeUintRange -- broke every Go CI job (the whole matrix fails to compile when any one package doesn't, which is why govulncheck/ golangci/postgres-durable-first/race all failed identically, not just go-test). Restores params.go/params_test.go verbatim from this branch's own last commit (a strict superset of validation: it already cross-checks rekey vs. reject timing windows, which the copied version never did) and folds the 3.0/3.1 fields (HeaderProtectionKey, ContentPaddingAddition, the 5 timing fields, RandomTrailers/DisableCookies) into Obfuscation31 itself, matching the original struct exactly instead of as separate top-level Instance fields. instance.go, the two amneziawgnet call sites, and 7 amneziawgnet test files updated to match. Also drops the one test (sanitizeConfigValue) that only ever served the retired kernel-module .conf writer -- correctly not ported, so the test testing it shouldn't have been copied either. Also fixes 2 CodeQL findings the same push surfaced: a clamped uint64->int64 conversion for the new log view's live byte counters (server.go), and an unneeded len+len sum feeding a slice pre-size in the v6-egress outbound merge (xray.go) -- append already grows correctly without it. * chore(amneziawg): regenerate frontend schemas for updated doc comments npm run gen was missed after the previous commit's types.go doc-comment edits (Obfuscation20 -> Obfuscation31, ValidateHeaderProtection -> ValidateObfuscation in the prose) -- openapigen bakes those comments into the generated schema's description field, so the committed frontend/src/generated/schemas.ts and openapi.json still had the old wording. codegen's git-diff-exit-code check caught it correctly. * fix(amneziawg): narrow 2 test fixtures that collided with MaxForwardedPorts TestCheckForwardedPortsConflict_CollidesWithEnabledInboundPort and ..._NoCollisionWhenPortsDontOverlap used "8000-8100"/"9000-9100" as their ForwardedPorts fixture -- 101 ports each, one over MaxForwardedPorts (100). The cap check (checkForwardedPortsConflict, added this session alongside the SOCKS-phantom-port check) fires first, so both tests got "more than 100 forwarded ports" instead of ever reaching the collision logic they're actually testing. The cap itself has its own dedicated boundary test already; these two just needed a narrower range that still covers/misses port 8080 as intended -- 8075-8085 and 9075-9085, 11 ports each. * fix(amneziawg): checkAmneziawgnetSocksConflict had no receiver in its new home My merge-conflict resolution kept this as a method call (s.checkAmneziawgnetSocksConflict) inside checkPortConflictTx, a plain function with no *InboundService receiver -- upstream's #6225 fix moved the port-conflict check out of the (s *InboundService) method and into this new tx-scoped free function, and I didn't notice the call site needed to change shape too. CI caught it immediately (undefined: s); nothing in this specific package can be locally verified past internal/database's own unrelated, pre-existing CGO build issue on this dev machine. Since the signature had to change either way, folded in the fix already flagged as a separate follow-up: checkAmneziawgnetSocksConflict now takes the caller's db handle instead of fetching its own via database.GetDB(), so it actually runs inside the same serialized transaction #6225 introduced -- previously it sat right next to that race fix without benefiting from it. * fix: address the review findings on the embedded AmneziaWG PR 5 blocking findings: - Floor S3/S4 at 12 in both obfuscation generators (Go and frontend) and reject a hand-edited value below that when HeaderProtectionKey is set -- IpcSet requires it, and ~39% of previously-generated sets violated it silently. - Guard PrivateKey/PrimaryDNS/SecondaryDNS/remark against newline injection in the AmneziaWG .conf builder (both the Go subscription-link path and the frontend downloadable-config path) -- unguarded, any of them could inject an arbitrary config line into a subscriber's client. - Bound the derived AmneziaWG SOCKS relay port to <= 65535 once an inbound's id is known, and check the reverse direction (does the relay port collide with an existing inbound's port) on both create and update -- previously only port -> relay collisions were checked, not relay -> port. - Gate injectAmneziawgV6Egress on the same V6AliasesActive predicate desiredV6Aliases already uses, so the two can't disagree about whether a peer's IPv6 identity is actually active at the OS level. 2 minor findings: - Fix the forwarded-ports cap check's off-by-one (a spec covering exactly the cap was rejected as if it were over it). - Correct docker-compose.yml's stale comment describing the retired DKMS/kernel-module architecture. * chore: retrigger CI build (armv5) failed on a transient Go module proxy network error (INTERNAL_ERROR stream reset on sagernet/sing), unrelated to this PR's changes. * docs: fix doc comments still describing the retired DKMS/awg-quick design A few doc comments (and one illustrative test log line) survived the embedded-architecture cutover unchanged and now contradict the code they sit next to: - internal/amneziawg/types.go's package comment claimed this package still owns a Manager that reconciles OS-level interfaces via awg-quick/DKMS -- that Manager was removed; the reconcile loop lives in internal/amneziawgnet now, and this package is protocol-shape-only. - internal/amneziawg/params.go's ValidateObfuscation/ValidateConfigValue comments cited "awg-quick up" / "awg-quick executes as root" as the reason to validate -- the server itself never calls awg-quick in this architecture; the same value still reaches a real rendered .conf that a client app or an admin's own awg-quick CLI applies downstream, so the validation is still warranted, just for a different consumer. Mirrored the same fix in inbound_amneziawg.go's matching comment and its test's comment. - internal/amneziawgnet/manager.go's Manager doc comments (x3) pointed readers at "internal/amneziawg.Manager" for comparison -- that type no longer exists in this diff at all. Repointed at internal/mtproto.Manager, the pattern this was actually modeled on and the one that's still real. - Swapped one test's illustrative "awg-quick up awg2 failed" log line for a message shaped like this architecture's actual amneziawgnet logging, so a reader skimming the test doesn't wonder whether the server still shells out to awg-quick. No behavior change. * fix(docs): re-run codegen for xray-settings.mdx after conflict merge The automated conflict-resolution hand-merge for this generated file was content-correct but didn't byte-match a real regen (different YAML long-string folding style). Re-ran npm run gen + docs' gen:api and kept that canonical output instead. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> * fix(amneziawg): drop the dead access-log email backfill amneziawgEmailIndex keyed peers by "<tag>|<tunnel IP>", a scheme built for the retired TPROXY bridge where the peer's decapsulated tunnel address survived as the access log's from-address. The embedded architecture relays through a loopback SOCKS5 dial, so every AmneziaWG log line's from-address is 127.0.0.1:<ephemeral> and the lookup could never match: the index was rebuilt on every log view just to miss. Remove the index, its GetXrayLogs wiring and its test. If per-line emails are wanted back, the relay would have to publish a local-port->email registry for the viewer to resolve loopback sources. * fix(api): generate AmneziaWGLogs/PeerActivity schemas instead of hand-writing them The amneziawglogs endpoint's response structs were missing from openapigen's StructAllow, so they were silently absent from every generated schema/example, the endpoints.ts entry carried a hand-written response, and AmneziaWGLogModal.tsx duplicated the shapes as local interfaces - the exact drift the allowlist rule exists to prevent. Allowlist both structs with example tags, point the endpoint at the generated schema, import the generated types in the modal, and sync docs/public/openapi.json. * chore(amneziawg): drop the unreferenced quiccapture package Nothing imports internal/amneziawg/quiccapture and no route exposes it; its package doc justifies the code as a port of frontend/src/lib/xray/i1Generators.ts, which does not exist in this repository, and promises an API round-trip that also does not exist. 1,110 lines of unreachable code with misleading provenance claims. Revert this commit to bring the package back when the live-capture I1 feature and its frontend counterpart actually land. * fix(clients): re-run cross-inbound conflict checks on the serialized writer The new client-level checks - cross-inbound AllowedIPs collisions and AmneziaWG forwardedPorts conflicts - read a fresh DB snapshot, decide, and only then enter runSerializedTx, while lockInbound only serializes writers on the SAME inbound. Two concurrent client creates on two different tunnel inbounds both passed the read and both committed, yielding two peers with one address: the exact check-then-claim race81cfd857(#6225) closed for AddInbound, which this PR's own checkAmneziawgnetSocksReverseConflict already cites. Keep the pre-tx pass for fail-fast UX and re-validate inside the transaction, where the single writer makes the answer authoritative. The race test drives two goroutines at two inbounds and demands exactly one winner; it fails with committed=2 when the in-tx re-check is removed. * fix(amneziawg): hot-apply depletion disables like mtproto does applyTrafficMutationBatch special-cases MTProto so a quota/expiry depletion cuts the sidecar immediately, but AmneziaWG fell through to runtime AddUser/RemoveUser - explicit no-ops for this protocol - so a depleted peer kept tunneling until the next 10s reconcile tick. Route it through applyLocalAmneziaWG, whose own contract (re-read committed settings, filter depleted clients, push to the interface) is exactly this case; the comment claiming it mirrors applyLocalMtproto is now true for the depletion path too. * fix(amneziawg): persist cleared DNS fields instead of resurrecting defaults PrimaryDNS/SecondaryDNS marshaled with omitempty, so clearing them persisted settings with no key at all - and the frontend re-parses stored settings through a Zod schema whose .default('8.8.8.8') / .default('8.8.4.4') fire on missing keys, silently repopulating the form on every load and re-persisting the defaults on the next save. Blank is a documented, meaningful state (no DNS line in client configs); drop omitempty so a cleared value survives the round-trip. The regression test normalizes a server block with cleared DNS and fails when the keys are dropped. * fix(amneziawg): accept cleared numeric obfuscation/subnet fields in the form AntD InputNumber emits null when cleared, Zod .default() only replaces undefined, and unlike wireguard.ts - whose optionalClearedInt comment documents exactly this failure mode - the AmneziaWG schema declared subnetCidr and jc/jmin/jmax/s1-s4 as bare z.number() defaults. Clearing any of the eight fields made safeParse reject the null and block the save until the user retyped a value. Absorb null into undefined while keeping each field's schema default, so a cleared field refills its documented default and legacy blobs with absent keys behave as before. * fix(amneziawg): guard the third .conf emitter against newline injection The review-round fix added the newline guard to amneziaWGConfigText (Go) and buildAmneziaWGClientConfig, but genAmneziaWGConfig in inbound-link.ts - the third of the three emitters its own comment says must not drift - still rendered privateKey/primaryDns/secondaryDns/remark unescaped, so a newline there injected a config line (e.g. a rogue PostUp) into the inbound form's downloaded .conf. Add the same guard, plus the regression tests the original fix shipped without: all four fields on the Go and both frontend emitters go red if any guard is removed. * test(amneziawg): pin the S3/S4 floors the TS drift guard claims to mirror The test's docstring says it mirrors internal/amneziawg/params_test.go, but it asserted S3>=8/S4>=4 while the Go test and both generators pin 12/12 - the floor ValidateObfuscation enforces whenever a header protection key is set, which this generator always sets. A regression narrowing the TS floors into 8-11/4-11 would have passed the drift guard and produced configs the backend rejects on save. * docs: restore the pia repo-map entry and document the AmneziaWG subsystem Merging main dropped CLAUDE.md's internal/pia/ bullet (added by #6272) while resolving the repo-map conflict - the package itself is untouched. Restore it, add the missing map entries for the two packages this branch introduces (internal/amneziawg/, internal/amneziawgnet/), bump the cron count, and give amneziawg_job its row in architecture.md's 5.4 table. * chore(amneziawg): correct comments stranded by the architecture pivot ae77c7e9's cutover to the embedded gVisor path deleted the kernel-module code but left several comments describing it in the present tense: hot_diff.go cited the removed service.amneziawgEgressStreamSettings and wrongly claimed AmneziaWG is the only sockopt.tproxy source (tunnel's TProxy mode is the live one the guard protects), socks_config.go pointed at the deleted EgressBasePort/EgressPortForInbound, manager.go referred to the deleted Manager and its fingerprinting as live code, web.go's cron registration claimed the job scrapes traffic (its own doc says it does not), and types.go capped ContentPaddingAddition at uint16 when validation and upstream both use uint32. * style(lint): satisfy gofumpt/goimports so make verify is green json_service.go's two 'Tag: "proxy"}' literals came in with main's owncc245a90formatting commit and fail the repo's gofumpt gate for everyone; the import grouping in inbound_amneziawg.go is from the serialized-writer fix on this branch. --------- Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> Co-authored-by: Sanaei <ho3ein.sanaei@gmail.com> Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
2253 lines
158 KiB
JSON
2253 lines
158 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": "معرّف الاشتراك",
|
||
"status": "الحالة",
|
||
"downloaded": "التنزيل",
|
||
"uploaded": "الرفع",
|
||
"expiry": "تاريخ الانتهاء",
|
||
"totalQuota": "الحصة الإجمالية",
|
||
"individualLinks": "روابط فردية",
|
||
"active": "نشط",
|
||
"inactive": "غير نشط",
|
||
"unlimited": "غير محدود",
|
||
"noExpiry": "بدون انتهاء",
|
||
"copyAllConfigs": "نسخ جميع الإعدادات",
|
||
"copyAllConfigsCopied": "تم نسخ جميع الإعدادات",
|
||
"email": "البريد"
|
||
},
|
||
"menu": {
|
||
"theme": "الثيم",
|
||
"dashboard": "نظرة عامة",
|
||
"inbounds": "الواردات",
|
||
"clients": "العملاء",
|
||
"groups": "المجموعات",
|
||
"nodes": "النودز",
|
||
"settings": "إعدادات اللوحة",
|
||
"xray": "إعدادات Xray",
|
||
"routing": "التوجيه",
|
||
"outbounds": "الصادرات",
|
||
"apiDocs": "توثيق API",
|
||
"donate": "تبرع",
|
||
"hosts": "المضيفات",
|
||
"docs": "التوثيق",
|
||
"openMenu": "فتح القائمة",
|
||
"pinSidebar": "تثبيت الشريط الجانبي",
|
||
"unpinSidebar": "إلغاء تثبيت الشريط الجانبي",
|
||
"subFormats": "Sub Formats"
|
||
},
|
||
"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": "Heap",
|
||
"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 بتنزيل هذه الملفات حسب الجدول الزمني وإعادة تحميلها دون إعادة تشغيل. يجب أن تكون الروابط HTTPS. يجب أن يكون كل ملف موجوداً مسبقاً في مجلد bin حتى يتمكن Xray من تحديثه.",
|
||
"geodataCron": "الجدولة (cron)",
|
||
"geodataOutbound": "التنزيل عبر outbound (اختياري)",
|
||
"geodataFile": "اسم الملف",
|
||
"geodataAddFile": "إضافة ملف",
|
||
"geodataSaveRestart": "حفظ وإعادة تشغيل Xray",
|
||
"geodataConfirmTitle": "حفظ إعدادات geodata؟",
|
||
"geodataConfirmContent": "سيتم تحديث قالب إعدادات Xray وإعادة تشغيل Xray.",
|
||
"geodataInvalidUrl": "كل ملف يحتاج إلى رابط HTTPS.",
|
||
"geodataInvalidFile": "يجب أن يكون اسم الملف اسماً بسيطاً مثل geosite_custom.dat (بدون مسارات).",
|
||
"geodataInvalidCron": "يجب أن يتكون cron من 5 حقول، مثل 0 4 * * *",
|
||
"geodataEmpty": "لا توجد ملفات مهيأة. في قواعد التوجيه يُشار إلى الملفات بالشكل ext:geosite_custom.dat:category.",
|
||
"dontRefresh": "التثبيت شغال، متعملش Refresh للصفحة",
|
||
"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": "Debug",
|
||
"logLevelInfo": "Info",
|
||
"logLevelNotice": "Notice",
|
||
"logLevelWarning": "Warning",
|
||
"logLevelError": "Error",
|
||
"accessDirect": "DIRECT",
|
||
"accessBlocked": "BLOCKED",
|
||
"accessProxy": "PROXY",
|
||
"importKeepHostSettings": "الاحتفاظ بإعدادات هذا الجهاز",
|
||
"importKeepHostSettingsDesc": "يحتفظ بعناوين الاستماع والمنافذ والمسار الأساسي والشهادات وهوية العقدة الخاصة بهذه اللوحة بدلًا من أخذها من الملف المرفوع."
|
||
},
|
||
"inbounds": {
|
||
"totalDownUp": "إجمالي المرسل/المستقبل",
|
||
"totalUsage": "إجمالي الاستخدام",
|
||
"inboundCount": "عدد الإدخالات",
|
||
"operate": "القائمة",
|
||
"enable": "مفعل",
|
||
"remark": "ملاحظة",
|
||
"node": "العقدة",
|
||
"deployTo": "نشر على",
|
||
"localPanel": "بانل محلي",
|
||
"fallbacks": {
|
||
"title": "Fallbacks",
|
||
"empty": "لا توجد fallbacks بعد",
|
||
"add": "إضافة fallback",
|
||
"pickInbound": "اختر inbound",
|
||
"matchAny": "أي",
|
||
"destPlaceholder": "تلقائي (listen:port للفرع)",
|
||
"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": "ابحث بالبريد أو التعليق",
|
||
"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": "انسخ الرابط",
|
||
"address": "العنوان",
|
||
"network": "الشبكة",
|
||
"destinationPort": "بورت الوجهة",
|
||
"targetAddress": "عنوان الهدف",
|
||
"monitorDesc": "سيبها فاضية لو عايز تستمع على كل الـ IPs",
|
||
"meansNoLimit": "= غير محدود. (الوحدة: GB)",
|
||
"totalFlow": "إجمالي التدفق",
|
||
"leaveBlankToNeverExpire": "سيبها فاضية عشان ماتنتهيش",
|
||
"certificatePath": "مسار الملف",
|
||
"certificateContent": "محتوى الملف",
|
||
"publicKey": "المفتاح العام",
|
||
"privatekey": "المفتاح الخاص",
|
||
"client": "عميل",
|
||
"export": "تصدير كل الروابط",
|
||
"clone": "استنساخ",
|
||
"resetAllTraffic": "إعادة ضبط ترافيك كل الإدخالات",
|
||
"resetAllTrafficTitle": "إعادة ضبط ترافيك كل الإدخالات",
|
||
"resetAllTrafficContent": "متأكد إنك عايز تعيد ضبط الترافيك لكل الإدخالات؟",
|
||
"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": "الهدف مناسب — تم ملء الهدف و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": "ويندوز فقط. تُضاف CIDR تلقائياً إلى جدول التوجيه ليمر المرور المطابق عبر TUN.",
|
||
"autoOutboundsInterface": "واجهة صادر تلقائية",
|
||
"autoOutboundsInterfaceTooltip": "الواجهة الفعلية لحركة المرور الصادرة. استخدم 'auto' للاكتشاف؛ يتم تفعيلها تلقائياً عند تعيين Auto system routes.",
|
||
"rewriteAddress": "إعادة كتابة العنوان",
|
||
"rewritePort": "إعادة كتابة المنفذ",
|
||
"allowedNetwork": "الشبكة المسموح بها",
|
||
"followRedirect": "اتبع إعادة التوجيه",
|
||
"accounts": "الحسابات",
|
||
"allowTransparent": "السماح بالشفاف",
|
||
"encryptionMethod": "طريقة التشفير",
|
||
"fakeTlsDomain": "نطاق FakeTLS (SNI)",
|
||
"mtprotoSecret": "المفتاح السري",
|
||
"mtgDomainFrontingIp": "عنوان IP لـ Domain fronting",
|
||
"mtgDomainFrontingPort": "منفذ Domain fronting",
|
||
"mtgDomainFrontingProxyProtocol": "بروتوكول PROXY لـ Domain fronting",
|
||
"mtgDomainFrontingHint": "المكان الذي يرسل إليه mtg حركة المرور غير الخاصة بتيليجرام — مثل موقع 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",
|
||
"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": "أقصى بايت ترويسة الخادم",
|
||
"paddingBytes": "بايتات Padding",
|
||
"uplinkHttpMethod": "Uplink HTTP method",
|
||
"paddingObfsMode": "وضع تشويش Padding",
|
||
"paddingKey": "Padding Key",
|
||
"paddingHeader": "Padding Header",
|
||
"paddingPlacement": "موضع Padding",
|
||
"paddingMethod": "طريقة Padding",
|
||
"sessionPlacement": "Session Placement",
|
||
"sessionKey": "Session Key",
|
||
"sessionIDTable": "جدول معرّف الجلسة",
|
||
"sessionIDTableHint": "مجموعة الأحرف لتوليد معرّف الجلسة: اسم معرّف مسبقًا (ALPHABET، Base62، hex، number، …) أو سلسلة ASCII. اتركه فارغًا لاستخدام الإعداد الافتراضي لـ xray-core.",
|
||
"sessionIDLength": "طول معرّف الجلسة",
|
||
"sessionIDLengthHint": "طول أو نطاق (مثل 8-16) لمعرّف الجلسة المُولَّد. يُستخدم فقط عند تعيين جدول معرّف الجلسة؛ يجب أن يكون الحد الأدنى أكبر من 0.",
|
||
"sequencePlacement": "Sequence Placement",
|
||
"sequenceKey": "Sequence Key",
|
||
"uplinkDataPlacement": "Uplink Data Placement",
|
||
"uplinkDataKey": "Uplink Data Key",
|
||
"noSseHeader": "بدون ترويسة SSE",
|
||
"ttiMs": "TTI (ms)",
|
||
"uplinkMbps": "رفع (MB/s)",
|
||
"downlinkMbps": "تنزيل (MB/s)",
|
||
"cwndMultiplier": "معامل CWND",
|
||
"maxSendingWindow": "أقصى نافذة إرسال",
|
||
"externalProxy": "وكيل خارجي",
|
||
"forceTls": "فرض TLS",
|
||
"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 الحقيقي للزائر عندما يصل المرور إلى هذا الـ inbound عبر 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": "تأخير المحاولة (ms)",
|
||
"prioritizeIPv6": "أولوية IPv6",
|
||
"interleave": "Interleave",
|
||
"maxConcurrentTry": "أقصى محاولات متزامنة",
|
||
"customSockopt": "sockopt مخصص",
|
||
"addCustomOption": "إضافة خيار مخصص",
|
||
"serverNameIndication": "SNI",
|
||
"cipherSuites": "Cipher Suites",
|
||
"autoOption": "تلقائي",
|
||
"minMaxVersion": "إصدار أدنى/أقصى",
|
||
"rejectUnknownSni": "رفض SNI غير معروف",
|
||
"disableSystemRoot": "تعطيل System Root",
|
||
"sessionResumption": "استئناف الجلسة",
|
||
"oneTimeLoading": "تحميل لمرة واحدة",
|
||
"usageOption": "خيار الاستخدام",
|
||
"buildChain": "بناء السلسلة",
|
||
"echKey": "ECH key",
|
||
"echConfig": "تكوين ECH",
|
||
"pinnedPeerCertSha256": "SHA-256 لشهادة النظير المثبَّتة",
|
||
"pinnedPeerCertSha256Tip": "تجزئات SHA-256 لشهادة النظير كسلسلة سداسية عشرية (مثل e8e2d3…)، مفصولة بفواصل. للوحة فقط — لا تُكتب في إعدادات xray على الخادم، لكنها تُضمَّن في روابط المشاركة ليتمكَّن العملاء من تثبيت الشهادة.",
|
||
"pinnedPeerCertSha256Placeholder": "تجزئة (تجزئات) سداسية عشرية، مفصولة بفواصل",
|
||
"getNewEchCert": "احصل على شهادة ECH جديدة",
|
||
"show": "عرض",
|
||
"xver": "Xver",
|
||
"target": "الهدف",
|
||
"maxTimeDiff": "أقصى فرق زمن (ms)",
|
||
"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 socket (مثل /run/xray/in.sock)، أو اسم socket مجرد مسبوقًا بـ @ (مثل @xray/in.sock)، للاستماع على socket بدلاً من منفذ TCP — في هذه الحالة اضبط المنفذ على 0.",
|
||
"shareAddrStrategy": "استراتيجية عنوان المشاركة",
|
||
"shareAddrStrategyHelp": "تحدد العنوان الذي يُكتب في روابط المشاركة المصدّرة ورموز QR ومخرجات الاشتراك.",
|
||
"shareAddr": "عنوان مشاركة مخصص",
|
||
"shareAddrHelp": "يُستخدم فقط عندما تكون استراتيجية عنوان المشاركة مخصصة. أدخل اسم مضيف أو عنوان IP بدون بروتوكول أو منفذ.",
|
||
"subSortIndex": "ترتيب الروابط في الاشتراك",
|
||
"subSortIndexHelp": "موضع روابط هذا الوارد في مخرجات الاشتراك (صفحة الاشتراك وتطبيقات العملاء). القيم الأقل تظهر أولاً، والقيم المتساوية تحافظ على ترتيب الإنشاء. لا يؤثر على قائمة الواردات في اللوحة.",
|
||
"disableFlow": "تعطيل تدفق XTLS",
|
||
"disableFlowHelp": "استثناء هذا الـ inbound من الحقن التلقائي لـ xtls-rprx-vision، حتى عندما يكون النقل قادرًا على الـ flow (مثل inbound من نوع XHTTP عبر نفق مع تشفير VLESS). يحتفظ العملاء بـ Vision على باقي الـ inbounds القادرة ضمن نفس الاشتراك. لـ VLESS فقط.",
|
||
"shareAddrStrategyOptions": {
|
||
"node": "عنوان العقدة",
|
||
"listen": "عنوان استماع الوارد",
|
||
"custom": "مخصص"
|
||
},
|
||
"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": "اجلب الهاش عبر ping على الـ SNI (xray tls ping)",
|
||
"pinFromRemoteNoSni": "حدّد الـ SNI (serverName) الأول عشان تعمل ping للشهادة البعيدة.",
|
||
"pinFromRemoteFailed": "تعذّر جلب هاش الشهادة البعيدة.",
|
||
"limitFallback": "تحديد الـ Fallback",
|
||
"limitFallbackUpload": "تحديد رفع الـ Fallback",
|
||
"limitFallbackDownload": "تحديد تنزيل الـ Fallback",
|
||
"afterBytes": "بعد البايتات",
|
||
"afterBytesTip": "خلي الـ fallback يشتغل بالسرعة الكاملة لعدد البايتات ده، وبعدين يبدأ التحجيم. 0 = حجّم من أول بايت.",
|
||
"bytesPerSec": "بايت في الثانية",
|
||
"bytesPerSecTip": "حد السرعة (بايت/ثانية) المطبّق على مرور الـ fallback بعد العتبة، عشان الفحوصات ماتقدرش تستخدم سيرفرك كنطاق ترددي مجاني للهدف. 0 = بلا حد (بيعطّل الاتجاه ده).",
|
||
"burstBytesPerSec": "بايت في الثانية للدفقة",
|
||
"burstBytesPerSecTip": "السماح بدفقات قصيرة فوق المعدل الثابت (حجم token-bucket). لو أقل من بايت في الثانية بيترفع ليطابقه."
|
||
},
|
||
"info": {
|
||
"mode": "الوضع",
|
||
"grpcServiceName": "grpc serviceName",
|
||
"grpcMultiMode": "grpc multiMode",
|
||
"interfaceName": "اسم الواجهة",
|
||
"mtu": "MTU",
|
||
"gateway": "Gateway",
|
||
"dns": "DNS",
|
||
"outboundsInterface": "واجهة الصادر",
|
||
"autoSystemRoutes": "توجيهات نظام تلقائية",
|
||
"followRedirect": "FollowRedirect",
|
||
"auth": "Auth",
|
||
"noKernelTun": "TUN بدون نواة",
|
||
"keepAlive": "Keep alive",
|
||
"peerNumber": "Peer {n}",
|
||
"peerNumberConfig": "تكوين Peer {n}"
|
||
},
|
||
"sniffingDestOverride": "تجاوز الوجهة"
|
||
},
|
||
"clients": {
|
||
"tabBasics": "أساسي",
|
||
"tabCredentials": "بيانات الاعتماد",
|
||
"tabLinks": "الروابط",
|
||
"wireguardConfig": "إعدادات WireGuard",
|
||
"config": "الإعداد",
|
||
"linksHint": "أضف روابط مشاركة من جهات خارجية وعناوين اشتراك خارجية لتضمينها في اشتراك هذا العميل.",
|
||
"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": "ابحث بالبريد، التعليق، sub ID، UUID، كلمة المرور، auth، Telegram ID…",
|
||
"filterTitle": "تصفية العملاء",
|
||
"clearAllFilters": "مسح الكل",
|
||
"filters": {
|
||
"nodes": "النودز",
|
||
"localPanel": "محلي (هذه اللوحة)"
|
||
},
|
||
"showingCount": "عرض {shown} من {total}",
|
||
"sortOldest": "الأقدم أولاً",
|
||
"sortNewest": "الأحدث أولاً",
|
||
"sortRecentlyUpdated": "محدّث مؤخراً",
|
||
"sortRecentlyOnline": "متصل مؤخراً",
|
||
"sortEmailAZ": "بريد A→Z",
|
||
"sortEmailZA": "بريد Z→A",
|
||
"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 من قائمة x-ui النصية لتفعيل هذا الخيار.",
|
||
"limitIpFail2banWindows": "Fail2ban غير متوفّر على نظام Windows، لذا لا يمكن تطبيق حد عناوين IP.",
|
||
"limitIpDisabled": "ميزة حد عناوين IP معطّلة على هذا الخادم.",
|
||
"password": "كلمة المرور",
|
||
"passwordDesc": "تُستخدم فقط من قبل عملاء Trojan و Shadowsocks؛ ويتم تجاهلها لـ VLESS و VMess و Hysteria و WireGuard.",
|
||
"subId": "معرّف الاشتراك",
|
||
"online": "متصل",
|
||
"email": "البريد",
|
||
"emailInvalidChars": "لا يمكن أن يحتوي البريد الإلكتروني على مسافات أو '/' أو '\\' أو أحرف تحكم",
|
||
"subIdInvalidChars": "لا يمكن أن يحتوي معرّف الاشتراك على مسافات أو '/' أو '\\' أو أحرف تحكم",
|
||
"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": "روابط الاشتراك ({count})",
|
||
"addToGroupTitle": "إضافة {count} عميل إلى مجموعة",
|
||
"addToGroupTooltip": "اختر مجموعة موجودة أو أدخل اسماً جديداً. استخدم Ungroup لإزالة العملاء من مجموعتهم الحالية.",
|
||
"groupName": "اسم المجموعة",
|
||
"addToGroupSuccessToast": "تمت إضافة {count} عميل إلى {group}",
|
||
"ungroupSuccessToast": "تم مسح المجموعة من {count} عميل",
|
||
"ungroup": "إزالة من المجموعة",
|
||
"ungroupConfirmTitle": "إزالة {count} عميل من مجموعتهم؟",
|
||
"ungroupConfirmContent": "يمسح تسمية المجموعة من كل عميل محدد. يُحفظ العملاء (استخدم Delete للإزالة الكاملة).",
|
||
"addToGroup": "إضافة إلى مجموعة",
|
||
"attach": "إرفاق",
|
||
"adjust": "ضبط",
|
||
"subLinks": "روابط الاشتراك",
|
||
"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": "روابط الاشتراك ({count})",
|
||
"subLinkColumn": "رابط الاشتراك",
|
||
"subJsonLinkColumn": "رابط JSON للاشتراك",
|
||
"subLinksCopyAll": "نسخ الكل",
|
||
"subLinksCopiedAll": "تم نسخ {count} رابط",
|
||
"subLinksEmpty": "لا يحتوي أي من العملاء المحددين على معرف اشتراك.",
|
||
"subLinksDisabled": "خدمة الاشتراك معطلة.",
|
||
"subLinksDisabledHint": "فعّل الاشتراك من إعدادات اللوحة → الاشتراك لإنشاء الروابط.",
|
||
"bulkDeleteConfirmTitle": "حذف {count} عميل؟",
|
||
"bulkDeleteConfirmContent": "سيتم إزالة كل عميل محدد من جميع الاتصالات الواردة المرتبطة وحذف سجل حركة مروره. لا يمكن التراجع.",
|
||
"bulkAdjustTitle": "تعديل {count} عميل",
|
||
"bulkAdjustHint": "القيم الموجبة تزيد، السالبة تنقص. العملاء بصلاحية أو ترافيك غير محدود يُتخطّون لذلك الحقل.",
|
||
"bulkAdjustNothing": "حدد الأيام أو الترافيك قبل التطبيق.",
|
||
"addDays": "إضافة أيام",
|
||
"addTrafficGB": "إضافة ترافيك (GB)",
|
||
"bulkFlow": "تعيين التدفق",
|
||
"bulkFlowNoChange": "بدون تغيير",
|
||
"bulkFlowDisable": "تعطيل (مسح التدفق)",
|
||
"delDepleted": "حذف المنتهية",
|
||
"delDepletedConfirmTitle": "حذف العملاء المنتهية حصصهم؟",
|
||
"delDepletedConfirmContent": "يُحذف كل عميل استُنفِدت حصة حركة مروره أو انتهت صلاحيته. لا يمكن التراجع.",
|
||
"exportClients": "تصدير العملاء",
|
||
"importClients": "استيراد العملاء",
|
||
"import": "استيراد",
|
||
"delOrphans": "حذف العملاء غير المرتبطين",
|
||
"delOrphansConfirmTitle": "حذف العملاء بلا اتصال وارد؟",
|
||
"delOrphansConfirmContent": "يزيل كل عميل غير مرتبط بأي اتصال وارد مع سجل حركة مروره. لا يمكن التراجع.",
|
||
"auth": "Auth",
|
||
"hysteriaAuth": "Hysteria Auth",
|
||
"hysteriaAuthDesc": "بيانات اعتماد يستخدمها عملاء Hysteria فقط. أما Trojan و Shadowsocks فيستخدمان حقل «كلمة المرور» بدلاً منها.",
|
||
"uuid": "UUID",
|
||
"flow": "Flow",
|
||
"vmessSecurity": "أمان VMess",
|
||
"wireguardPrivateKey": "مفتاح وايرغارد الخاص",
|
||
"wireguardPublicKey": "مفتاح وايرغارد العام",
|
||
"wireguardPreSharedKey": "مفتاح وايرغارد المشترك مسبقًا",
|
||
"wireguardAllowedIPs": "عناوين IP المسموحة لوايرغارد",
|
||
"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 حرفًا ست عشريًا يتم الحصول عليها عند تسجيل البروكسي في تلغرام. عند تعيينها، يتم توجيه هذا العميل عبر البروكسيات الوسيطة في تلغرام وتظهر قناة مموّلة أعلى قائمة محادثاته.",
|
||
"reverseTag": "وسم عكسي",
|
||
"reverseTagPlaceholder": "Reverse tag اختياري",
|
||
"telegramId": "معرّف مستخدم تلغرام",
|
||
"telegramIdPlaceholder": "معرّف مستخدم تلغرام رقمي (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": "يتم التجديد في هذا اليوم من كل شهر ميلادي، عند منتصف الليل بتوقيت اللوحة، بدلاً من كل N يوم. إذا كان الشهر أقصر من اليوم المختار، يتم التجديد في آخر يوم منه. القيمة 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 اللوحة لهذه العقدة عبر outbound Xray المحدد. يتم إضافة inbound جسر loopback تلقائيًا إلى التكوين قيد التشغيل وتطبيقه مباشرة. اتركه فارغًا للاتصال المباشر.",
|
||
"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} 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": "بوت تيليجرام",
|
||
"panelListeningIP": "IP الاستماع",
|
||
"panelListeningIPDesc": "عنوان IP للبانل. (سيبه فاضي عشان يستمع على كل الـ IPs)",
|
||
"panelListeningDomain": "دومين الاستماع",
|
||
"panelListeningDomainDesc": "اسم الدومين للبانل. (سيبه فاضي عشان يستمع على كل الدومينات والـ IPs)",
|
||
"panelPort": "بورت الاستماع",
|
||
"panelPortDesc": "رقم البورت للبانل. (لازم يكون بورت فاضي)",
|
||
"publicKeyPath": "مسار المفتاح العام",
|
||
"publicKeyPathDesc": "مسار ملف المفتاح العام للبانل. (يبدأ بـ '/')",
|
||
"privateKeyPath": "مسار المفتاح الخاص",
|
||
"privateKeyPathDesc": "مسار ملف المفتاح الخاص للبانل. (يبدأ بـ '/')",
|
||
"panelUrlPath": "مسار URI",
|
||
"panelUrlPathDesc": "مسار URI للبانل. (يبدأ بـ '/' وبينتهي بـ '/')",
|
||
"pageSize": "حجم الصفحة",
|
||
"pageSizeDesc": "حدد حجم الصفحة لجدول الإدخالات. (0 = تعطيل)",
|
||
"panelOutbound": "صادر ترافيك اللوحة",
|
||
"panelOutboundDesc": "بيوجه طلبات اللوحة نفسها — فحص إصدارات وتنزيلات اللوحة/Xray، تيليجرام، وتحديث ملفات geo العادي — عبر صادر Xray ده لتجاوز فلترة GitHub/تيليجرام على الخادم. وارد جسر محلي بيتضاف تلقائياً للإعداد الشغال وبيتطبق مباشرة. تحديث Geodata التلقائي الأصلي في Xray مش متأثر؛ ليه صادر تنزيل خاص بيه. اتركه فارغاً للاتصال المباشر.",
|
||
"panelOutboundPh": "اتصال مباشر",
|
||
"datepicker": "نوع التقويم",
|
||
"datepickerPlaceholder": "اختار التاريخ",
|
||
"datepickerDescription": "المهام المجدولة هتشتغل بناءً على التقويم ده.",
|
||
"oldUsername": "اسم المستخدم الحالي",
|
||
"currentPassword": "الباسورد الحالي",
|
||
"newUsername": "اسم المستخدم الجديد",
|
||
"newPassword": "الباسورد الجديد",
|
||
"telegramBotEnable": "تفعيل بوت Telegram",
|
||
"telegramBotEnableDesc": "يفعل بوت Telegram.",
|
||
"telegramToken": "رمز تيليجرام",
|
||
"telegramTokenDesc": "توكن البوت اللي جبت من '{'@'}BotFather'.",
|
||
"telegramProxy": "وكيل SOCKS",
|
||
"telegramProxyDesc": "يفعل بروكسي SOCKS5 للاتصال بـ Telegram. (اضبط الإعدادات حسب الدليل)",
|
||
"telegramAPIServer": "خادم API لتيليجرام",
|
||
"telegramAPIServerDesc": "سيرفر Telegram API المستخدم. سيبه فاضي لاستخدام الافتراضي.",
|
||
"telegramChatId": "ID شات الأدمن",
|
||
"telegramChatIdDesc": "ID شات الأدمن في Telegram. (مفصول بفواصل)(تقدر تجيبه من {'@'}userinfobot) أو (استخدم '/id' في البوت)",
|
||
"telegramNotifyTime": "وقت الإشعار",
|
||
"telegramNotifyTimeDesc": "عدد مرات إرسال البوت للتقارير الدورية. اختر فترة جاهزة، أو اختر «مخصص» لإدخال تعبير 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": "عند التفعيل، يتلقى العملاء المتوافقون المعروفون الذين يطلبون رابط الاشتراك القياسي مصفوفة إعدادات Xray JSON تلقائيًا. يحصل العملاء الآخرون على الاستجابة الخام/Base64. يتطلب تفعيل اشتراك JSON وإعادة تشغيل اللوحة.",
|
||
"subJsonAlwaysArray": "إرجاع مصفوفة JSON دائمًا",
|
||
"subJsonAlwaysArrayDesc": "يعيد مسار اشتراك JSON الصريح كمصفوفة حتى عند وجود ملف واحد، وفقًا لمعيار XTLS. تستخدم استجابات JSON المكتشفة تلقائيًا المصفوفات دائمًا. عطّله للاحتفاظ باستجابة الكائن الواحد القديمة.",
|
||
"subJsonUserAgentRegex": "تعبير User-Agent لعملاء Xray JSON",
|
||
"subJsonUserAgentRegexDesc": "تعبير Go RE2 منتظم يُطابَق مع وكيل المستخدم (User-Agent) لاختيار صيغة Xray JSON تلقائيًا على رابط الاشتراك القياسي. فارغ افتراضيًا، لذا يبقى الاكتشاف التلقائي معطلاً حتى تحدد نمطًا للعملاء الذين تريد خدمتهم. يحصل العملاء الآخرون على الاستجابة الخام/Base64. أعد تشغيل اللوحة بعد التغيير.",
|
||
"subClashAutoDetect": "اكتشاف عملاء Clash/Mihomo تلقائيًا",
|
||
"subClashAutoDetectDesc": "عند التفعيل، يتلقى عملاء Clash/Mihomo المعروفون الذين يطلبون رابط الاشتراك القياسي إعداد Clash بصيغة YAML تلقائيًا. تستمر المتصفحات في عرض صفحة الاشتراك، ويحصل العملاء الآخرون على الاستجابة الخام/Base64، وتبقى روابط JSON وClash الصريحة متاحة. يتطلب تفعيل اشتراك Clash/Mihomo وإعادة تشغيل اللوحة لتطبيق التغيير.",
|
||
"subClashUserAgentRegex": "تعبير User-Agent لعملاء Clash/Mihomo",
|
||
"subClashUserAgentRegexDesc": "تعبير Go RE2 منتظم يُطابَق مع وكيل المستخدم (User-Agent) للتعرف على عملاء Clash/Mihomo في رابط الاشتراك القياسي. اتركه فارغًا لاستخدام النمط الافتراضي. أعد تشغيل اللوحة بعد التغيير.",
|
||
"subTitle": "عنوان الاشتراك",
|
||
"subTitleDesc": "العنوان اللي هيظهر في عميل VPN. يدعم رموز هوية العميل: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subSupportUrl": "رابط الدعم",
|
||
"subSupportUrlDesc": "رابط الدعم الفني المعروض في عميل VPN. يدعم رموز هوية العميل: {{EMAIL}}, {{ID}}, {{SHORT_ID}}, {{SUB_ID}}, {{TELEGRAM_ID}}.",
|
||
"subProfileUrl": "رابط الملف الشخصي",
|
||
"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": "إعداد عام لتمكين التوجيه (Routing) في عميل 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 لخدمة الاشتراك. (سيبه فاضي عشان يستمع على كل الـ IPs)",
|
||
"subPort": "بورت الاستماع",
|
||
"subPortDesc": "رقم البورت لخدمة الاشتراك. (لازم يكون بورت فاضي). كمان بيتحسب منه رابط الاشتراك/الـ QR اللي بيظهر في اللوحة لو حقل «مسار البروكسي العكسي» تحت فاضي — لو الاشتراك بيتفتح من ورا بروكسي عكسي على بورت مختلف، املا «مسار البروكسي العكسي» بدل كده.",
|
||
"subCertPath": "مسار المفتاح العام",
|
||
"subCertPathDesc": "مسار ملف المفتاح العام لخدمة الاشتراك. (يبدأ بـ '/')",
|
||
"subKeyPath": "مسار المفتاح الخاص",
|
||
"subKeyPathDesc": "مسار ملف المفتاح الخاص لخدمة الاشتراك. (يبدأ بـ '/')",
|
||
"subPath": "مسار URI",
|
||
"subPathDesc": "مسار URI لخدمة الاشتراك. (يبدأ بـ '/' وبينتهي بـ '/')",
|
||
"subDomain": "دومين الاستماع",
|
||
"subDomainDesc": "اسم الدومين لخدمة الاشتراك. (سيبه فاضي عشان يستمع على كل الدومينات والـ IPs). كمان بيتستخدم كدومين افتراضي لرابط الاشتراك اللي بيظهر لو حقل «مسار البروكسي العكسي» فاضي — املا «مسار البروكسي العكسي» لو اللوحة والاشتراك بيتفتحوا من دومينات مختلفة (زي لما يكونوا ورا بروكسي عكسي).",
|
||
"subUpdates": "فترات التحديث",
|
||
"subUpdatesDesc": "فترات تحديث رابط الاشتراك في تطبيقات العملاء. (الوحدة: ساعة)",
|
||
"subEncrypt": "تشفير",
|
||
"subEncryptDesc": "المحتوى اللي هيترجع من خدمة الاشتراك هيكون مشفر بـ Base64.",
|
||
"subURI": "مسار البروكسي العكسي",
|
||
"subURIDesc": "الرابط الأساسي الكامل (scheme://domain[:port]/path/) لرابط الاشتراك وكود الـQR، بيتستخدم بدل دومين الاستماع/بورت الاستماع. املا الحقل ده لو الاشتراك بيتفتح من ورا بروكسي عكسي أو على دومين/بورت مختلف عن اللي فوق.",
|
||
"externalTrafficInformEnable": "تنبيه الترافيك الخارجي",
|
||
"externalTrafficInformEnableDesc": "إخطار واجهة API خارجية بكل تحديث لحركة المرور.",
|
||
"externalTrafficInformURI": "مسار تنبيه الترافيك الخارجي",
|
||
"externalTrafficInformURIDesc": "تحديثات الترافيك هتتبعت للمسار ده.",
|
||
"restartXrayOnClientDisable": "إعادة تشغيل Xray بعد التعطيل التلقائي",
|
||
"restartXrayOnClientDisableDesc": "عند تعطيل العميل تلقائيا بسبب انتهاء الصلاحية أو حد حركة المرور، أعد تشغيل Xray.",
|
||
"fragment": "تجزئة",
|
||
"fragmentDesc": "يفعل تجزئة لحزمة TLS hello.",
|
||
"fragmentSett": "إعدادات التجزئة",
|
||
"noisesDesc": "يفعل التشويش.",
|
||
"noisesSett": "إعدادات التشويش",
|
||
"trustedProxyCidrs": "CIDR وكلاء موثوقين",
|
||
"trustedProxyCidrsDesc": "IPs/CIDRs مفصولة بفواصل يُسمح لها بتعيين ترويسات 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": "الإجمالي الافتراضي (GB)",
|
||
"defaultExpiryDays": "الانتهاء الافتراضي (أيام)",
|
||
"defaultIpLimit": "حد IP الافتراضي"
|
||
},
|
||
"subFormats": {
|
||
"finalMask": "Final Mask",
|
||
"finalMaskDesc": "يضيف أقنعة TCP/UDP الخاصة بـ Xray finalmask ومعلمات QUIC إلى كل ملف Xray JSON يتم إنشاؤه. يتطلب تطبيقًا يدعم اشتراكات Xray JSON وإصدارًا حديثًا من نواة Xray.",
|
||
"packets": "الحزم",
|
||
"length": "الطول",
|
||
"interval": "الفاصل",
|
||
"maxSplit": "أقصى تقسيم",
|
||
"noises": "الضوضاء",
|
||
"noiseItem": "ضوضاء №{n}",
|
||
"type": "النوع",
|
||
"packet": "حزمة",
|
||
"delayMs": "التأخير (ms)",
|
||
"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": "تفعيل المصادقة الثنائية",
|
||
"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": "ارتفاع استخدام المعالج (%)",
|
||
"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": "Gregorian (Standard)",
|
||
"calendarJalalian": "Jalalian (شمسی)",
|
||
"ipLimitAllowlist": "قائمة سماح حد IP",
|
||
"ipLimitAllowlistDesc": "عناوين وشبكات لا يحسبها حد IP ولا يحظرها، حتى لا يستهلك عنوان مكتب أو حرم جامعي مشترك حد العميل. IPs/CIDRs مفصولة بفواصل.",
|
||
"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": "معرّف غير صالح"
|
||
},
|
||
"tabBalancers": "موازنات التحميل",
|
||
"tabObservatory": "المرصد",
|
||
"observatory": {
|
||
"title": "مرصد الموزّع",
|
||
"desc": "معاملات probe لـ burstObservatory المُضمَّن في كل ملف leastPing/leastLoad. random/roundRobin بلا مرصد. يُحفظ كإعداد شامل لاشتراك JSON.",
|
||
"destination": "عنوان probe",
|
||
"destinationDesc": "العنوان الذي يقيس العميل به كل صادر عضو.",
|
||
"connectivity": "عنوان الاتصالية",
|
||
"connectivityDesc": "عنوان اختياري للتحقق مرة واحدة من وصول العضو للهدف. اتركه فارغًا للتخطي.",
|
||
"interval": "فترة probe",
|
||
"intervalDesc": "الزمن بين جولات probe، مثال 1m.",
|
||
"timeout": "مهلة probe",
|
||
"timeoutDesc": "مهلة probe واحدة، مثال 5s.",
|
||
"sampling": "أخذ العينات",
|
||
"samplingDesc": "عدد probe المتتالية لقياس الاستقرار.",
|
||
"httpMethod": "أسلوب HTTP",
|
||
"httpMethodDesc": "الأسلوب المستخدم في طلبات probe.",
|
||
"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": "حظر IPs",
|
||
"blockdomains": "حظر دومينات",
|
||
"directips": "اتصالات مباشرة لـ IPs",
|
||
"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": "رابط اختبار المخرج",
|
||
"outboundTestUrlDesc": "الرابط المستخدم عند اختبار اتصال المخرج",
|
||
"Torrent": "حظر بروتوكول التورنت",
|
||
"Inbounds": "الواردات",
|
||
"Outbounds": "الصادرات",
|
||
"importRules": "استيراد القواعد",
|
||
"exportRules": "تصدير القواعد",
|
||
"importOutbounds": "استيراد الصادرات",
|
||
"exportOutbounds": "تصدير الصادرات",
|
||
"importInvalidJson": "JSON غير صالح — المتوقع مصفوفة أو كائن بمفتاح مطابق.",
|
||
"metricsListen": "نقطة نهاية المقاييس",
|
||
"metricsListenDesc": "بتعرض مقاييس Xray بنمط Prometheus على العنوان:المنفذ ده (مثلاً 127.0.0.1:11111). سيبه فاضي عشان تعطّله. اربطه بـ localhost وحطّ قدامه reverse-proxy — لإنه من غير مصادقة.",
|
||
"metricsTag": "وسم المقاييس",
|
||
"Balancers": "موازنات التحميل",
|
||
"balancerTagRequired": "الوسم مطلوب",
|
||
"balancerSelectorRequired": "اختر صادراً واحداً على الأقل",
|
||
"balancerLive": "الهدف الحالي",
|
||
"balancerOverride": "تجاوز الاختيار",
|
||
"balancerOverridePh": "تلقائي (الاستراتيجية)",
|
||
"balancerLiveRefresh": "تحديث حالة موازن التحميل",
|
||
"balancerNotRunning": "موازن التحميل ده مش نشط في Xray الشغال — احفظ التغييرات أو ابدأ Xray الأول",
|
||
"routeTester": "اختبار المسار",
|
||
"routeTesterDesc": "اسأل Xray الشغال أي صادر هيتعامل مع الاتصال ده. مفيش ترافيك بيتبعت — القرار بييجي مباشرة من محرك التوجيه الحي.",
|
||
"routeTesterDest": "نطاق أو IP",
|
||
"routeTesterPort": "المنفذ",
|
||
"routeTesterInbound": "الوارد",
|
||
"routeTesterProtocol": "البروتوكول المكتشف",
|
||
"routeTesterTest": "اختبر المسار",
|
||
"routeTesterMatchedOutbound": "الصادر المطابق",
|
||
"routeTesterViaBalancer": "عبر موازن التحميل",
|
||
"routeTesterDefaultOutbound": "ما في قاعدة توجيه اتطابقت — الترافيك رايح للصادر الافتراضي (الأول).",
|
||
"Routings": "قواعد التوجيه",
|
||
"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": "لا توجد قواعد geo في مجلد Xray",
|
||
"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": "IPs المصدر",
|
||
"sourcePort": "منفذ المصدر",
|
||
"vlessRoute": "مسار VLESS",
|
||
"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": "تأخير الحظر (ms)",
|
||
"reverseSniffing": "Sniffing عكسي",
|
||
"reserved": "محجوز",
|
||
"minUploadInterval": "أدنى فاصل رفع (ms)",
|
||
"maxUploadSizeBytes": "حجم الرفع الأقصى (بايت)",
|
||
"uplinkChunkSize": "حجم chunk الرفع",
|
||
"noGrpcHeader": "بدون ترويسة gRPC",
|
||
"maxConcurrency": "أقصى تزامن",
|
||
"maxConnections": "أقصى اتصالات",
|
||
"maxReuseTimes": "أقصى مرات إعادة استخدام",
|
||
"maxRequestTimes": "أقصى طلبات",
|
||
"maxReusableSecs": "أقصى ثوانٍ قابلة لإعادة الاستخدام",
|
||
"keepAlivePeriod": "فترة keep alive",
|
||
"authPassword": "كلمة مرور Auth",
|
||
"visionTestpre": "Vision testpre",
|
||
"serverNamePlaceholder": "اسم الخادم",
|
||
"verifyPeerName": "التحقق من اسم peer",
|
||
"pinnedSha256": "SHA256 مثبت",
|
||
"shortId": "Short ID",
|
||
"sockopts": "Sockopts",
|
||
"keepAliveInterval": "فاصل keep alive",
|
||
"markFwmark": "Mark (fwmark)",
|
||
"interface": "الواجهة",
|
||
"proxyProtocol": "Proxy protocol",
|
||
"tcpUserTimeoutMs": "TCP user timeout (ms)",
|
||
"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 سريع. HTTP: طلب كامل عبر xray. التأخير الفعلي: الوقت الكامل شاملاً إنشاء الاتصال.",
|
||
"testAll": "اختبار الكل",
|
||
"httpStatus": "حالة HTTP",
|
||
"breakdownConnect": "اتصال البروكسي",
|
||
"breakdownTls": "TLS عبر الصادر",
|
||
"breakdownTtfb": "أول بايت",
|
||
"country": "الدولة",
|
||
"server": "الخادم",
|
||
"city": "المدينة",
|
||
"allCities": "كل المدن",
|
||
"moveToTop": "نقل إلى الأعلى"
|
||
},
|
||
"outboundSub": {
|
||
"manage": "الاشتراكات",
|
||
"title": "اشتراكات الصادرات",
|
||
"remark": "ملاحظة (اختياري)",
|
||
"remarkPlaceholder": "مثلاً نودز هونج كونج",
|
||
"url": "رابط الاشتراك",
|
||
"urlPlaceholder": "https://... (قائمة روابط بصيغة base64)",
|
||
"tagPrefix": "بادئة الوسم",
|
||
"tagPrefixPlaceholder": "hk-",
|
||
"interval": "فاصل التحديث",
|
||
"hours": "س",
|
||
"minutes": "د",
|
||
"intervalHint": "الافتراضي 10 دقايق. المهمة اللي بتشتغل في الخلفية بتشيك بشكل متكرر؛ كل اشتراك بيعيد الجلب لما يعدّي الفاصل الخاص بيه بس.",
|
||
"enabled": "مفعّل",
|
||
"allowPrivate": "السماح بالعناوين الخاصة",
|
||
"allowPrivateHint": "اسمح بعناوين localhost / الشبكة المحلية (LAN) / عناوين IP الخاصة لرابط الاشتراك ده. متعطّل افتراضياً لدواعي الأمان — فعّله بس لو المصدر المحلي موثوق.",
|
||
"prepend": "قبل الصادرات اليدوية",
|
||
"prependHint": "حُط صادرات الاشتراك ده قبل الصادرات اللي ضبطتها بإيدك، عشان واحد منها يقدر يبقى الافتراضي.",
|
||
"preview": "معاينة",
|
||
"previewEmpty": "مفيش صادرات على الرابط ده.",
|
||
"refreshAll": "حدّث الكل",
|
||
"statusOk": "تمام",
|
||
"toastUpdated": "تم تحديث الاشتراك",
|
||
"addButton": "إضافة",
|
||
"active": "الاشتراكات النشطة",
|
||
"empty": "مفيش اشتراكات لسه. أضف واحد من فوق.",
|
||
"colRemark": "ملاحظة",
|
||
"colLastFetch": "آخر جلب",
|
||
"colEnabled": "مفعّل",
|
||
"auto": "تلقائي",
|
||
"never": "أبداً",
|
||
"refreshNow": "حدّث الآن",
|
||
"deleteConfirm": "تحذف الاشتراك ده؟",
|
||
"restartHint": "بعد الإضافة أو التحديث، أعد تشغيل Xray (أو استنى إعادة التحميل التلقائي اللي جاية) عشان تفعّل الصادرات.",
|
||
"fromSubsTitle": "من اشتراكات الصادرات (للقراءة فقط)",
|
||
"fromSubsDesc": "مستوردة من اشتراكاتك النشطة. تقدر تديرها من لوحة الاشتراكات اللي فوق.",
|
||
"toastLoadFailed": "فشل تحميل الاشتراكات",
|
||
"toastUrlRequired": "رابط الاشتراك مطلوب",
|
||
"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": "الرابط الذي يُطلب لقياس كل وجهة صادرة. يجب أن يُعيد HTTP 204.",
|
||
"probeInterval": "فترة الفحص",
|
||
"probeIntervalDesc": "كم مرة يتم فحص كل وجهة صادرة، مثل 30s أو 1m أو 2h45m.",
|
||
"enableConcurrency": "فحص متزامن",
|
||
"enableConcurrencyDesc": "افحص كل الوجهات المراقَبة دفعة واحدة بدلًا من واحدة تلو الأخرى. أسرع، لكنه أكثر وضوحًا على الشبكة.",
|
||
"destination": "وجهة الفحص",
|
||
"destinationDesc": "الرابط الذي يُطلب لقياس كل وجهة صادرة. يجب أن يُعيد HTTP 204.",
|
||
"connectivity": "فحص الاتصال",
|
||
"connectivityDesc": "رابط اختياري لفحص الشبكة المحلية، يُجرَّب فقط بعد فشل الوجهة. اتركه فارغًا للتخطي.",
|
||
"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 (حشو رد الكوكي)",
|
||
"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": "عدم إرسال ردود الكوكي — يزيل بصمة 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": "معرف الجهاز",
|
||
"licenseKey": "مفتاح الرخصة",
|
||
"privateKey": "المفتاح الخاص",
|
||
"deleteAccount": "حذف الحساب",
|
||
"settings": "الإعدادات",
|
||
"licenseKeyLabel": "مفتاح رخصة WARP / WARP+",
|
||
"key": "المفتاح",
|
||
"keyPlaceholder": "مفتاح WARP+ مكوّن من 26 حرفاً",
|
||
"accountInfo": "معلومات الحساب",
|
||
"deviceName": "اسم الجهاز",
|
||
"deviceModel": "طراز الجهاز",
|
||
"deviceEnabled": "الجهاز مفعّل",
|
||
"accountType": "نوع الحساب",
|
||
"role": "الدور",
|
||
"warpPlusData": "بيانات WARP+",
|
||
"quota": "الحصة",
|
||
"usage": "الاستخدام",
|
||
"addOutbound": "إضافة صادر"
|
||
},
|
||
"dns": {
|
||
"enable": "فعل DNS",
|
||
"enableDesc": "فعل سيرفر DNS المدمج",
|
||
"tag": "تاج إدخال DNS",
|
||
"tagDesc": "التاج ده هيبقى متاح كإدخال في قواعد التوجيه.",
|
||
"clientIp": "IP العميل",
|
||
"clientIpDesc": "بيحدد موقع العميل خلال استعلامات DNS",
|
||
"disableCache": "تعطيل الكاش",
|
||
"disableCacheDesc": "بيعطل تخزين نتائج DNS مؤقتاً",
|
||
"disableFallback": "تعطيل النسخ الاحتياطي",
|
||
"disableFallbackDesc": "بيعطل استعلامات DNS الاحتياطية",
|
||
"disableFallbackIfMatch": "تعطيل النسخ الاحتياطي عند التطابق",
|
||
"disableFallbackIfMatchDesc": "بيعطل استعلامات DNS الاحتياطية لما يتحقق تطابق مع قائمة الدومينات",
|
||
"enableParallelQuery": "تفعيل الاستعلام المتوازي",
|
||
"enableParallelQueryDesc": "تفعيل استعلامات DNS المتوازية لعدة خوادم لحل أسرع",
|
||
"strategy": "استراتيجية الاستعلام",
|
||
"strategyDesc": "الاستراتيجية العامة لحل أسماء الدومين",
|
||
"add": "أضف سيرفر",
|
||
"edit": "عدل السيرفر",
|
||
"domains": "النطاقات",
|
||
"expectIPs": "العناوين المتوقعة",
|
||
"unexpectIPs": "عناوين IP غير متوقعة",
|
||
"useSystemHosts": "استخدام ملف Hosts الخاص بالنظام",
|
||
"useSystemHostsDesc": "استخدام ملف hosts من نظام مثبت",
|
||
"serveStale": "تقديم النتائج المنتهية",
|
||
"serveStaleDesc": "إرجاع نتائج الكاش المنتهية الصلاحية أثناء التحديث في الخلفية",
|
||
"serveExpiredTTL": "مدة صلاحية النتائج المنتهية",
|
||
"serveExpiredTTLDesc": "مدة صلاحية إدخالات الكاش المنتهية بالثواني؛ 0 = لا تنتهي أبدًا",
|
||
"timeoutMs": "المهلة (مللي ثانية)",
|
||
"skipFallback": "تخطي الاحتياطي",
|
||
"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 المحلي أو استعلامات الرجوع أو EDNS client IP. استخدم DoH عبر التوجيه، وثبت أسماء المحللات في hosts، وعطل الرجوع عندما تكون الخصوصية مهمة."
|
||
},
|
||
"fakedns": {
|
||
"add": "أضف Fake DNS",
|
||
"ipPool": "نطاق IP Pool",
|
||
"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": "بصمة",
|
||
"pins": "SHA-256 للشهادة المثبّتة",
|
||
"allowInsecure": "السماح بغير الآمن",
|
||
"echConfigList": "قائمة إعدادات ECH",
|
||
"muxParams": "Mux",
|
||
"sockoptParams": "Sockopt",
|
||
"finalMask": "Final Mask",
|
||
"vlessRoute": "مسار VLESS",
|
||
"mihomoIpVersion": "إصدار IP",
|
||
"mihomoX25519": "Mihomo X25519",
|
||
"shuffleHost": "خلط المضيف",
|
||
"tags": "وسوم",
|
||
"nodeGuids": "النودز",
|
||
"excludeFromSubTypes": "استبعاد من الصيغ",
|
||
"verifyPeerCertByName": "التحقق من شهادة النظير بالاسم",
|
||
"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": "بريد العميل",
|
||
"descINBOUND": "ملاحظة الوارد نفسه (اسم الإعداد)",
|
||
"descHOST": "ملاحظة المضيف",
|
||
"descID": "UUID العميل",
|
||
"descSHORT_ID": "أول 8 أحرف من الـ UUID",
|
||
"descTELEGRAM_ID": "معرّف تلغرام للعميل (فارغ إذا لم يُحدَّد)",
|
||
"descSUB_ID": "معرّف الاشتراك",
|
||
"descCOMMENT": "تعليق العميل",
|
||
"descTRAFFIC_USED": "حركة المرور المستخدمة (قابلة للقراءة)",
|
||
"descTRAFFIC_LEFT": "حركة المرور المتبقية (مخفية إذا كانت غير محدودة)",
|
||
"descTRAFFIC_TOTAL": "إجمالي حركة المرور (مخفي إذا كان غير محدود)",
|
||
"descTRAFFIC_USED_BYTES": "حركة المرور المستخدمة بالبايت",
|
||
"descTRAFFIC_LEFT_BYTES": "حركة المرور المتبقية بالبايت",
|
||
"descTRAFFIC_TOTAL_BYTES": "إجمالي حركة المرور بالبايت",
|
||
"descUP": "حركة مرور الرفع",
|
||
"descDOWN": "حركة مرور التنزيل",
|
||
"descSTATUS": "نشط / منتهٍ / معطّل / مستنفد",
|
||
"descSTATUS_EMOJI": "الحالة كرمز تعبيري (✅ ⏳ 🚫)",
|
||
"descDAYS_LEFT": "الأيام حتى الانتهاء (مخفية إذا كانت غير محدودة)",
|
||
"descTIME_LEFT": "الوقت المتبقي (مثال: 12d 4h 30m)",
|
||
"descUSAGE_PERCENTAGE": "حركة المرور المستخدمة كنسبة مئوية (مخفية إذا كانت غير محدودة)",
|
||
"descEXPIRE_DATE": "تاريخ الانتهاء (YYYY-MM-DD)",
|
||
"descJALALI_EXPIRE_DATE": "تاريخ الانتهاء بالتقويم الجلالي (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": "🤖 أهلا بيك في البوت! البوت ده معمول عشان يديك بيانات معينة من البانل ويسمحلك بالتعديلات.",
|
||
"start": "👋 أهلا <i>{{ .Firstname }}</i>.\r\n",
|
||
"welcome": "🤖 أهلا بيك في بوت إدارة <b>{{ .Hostname }}</b>.\r\n",
|
||
"status": "✅ البوت شغال!",
|
||
"usage": "❗ من فضلك ادخل نص للتبحث عنه!",
|
||
"getID": "🆔 الـ ID بتاعك: <code>{{ .ID }}</code>",
|
||
"helpAdminCommands": "عشان تعيد تشغيل Xray Core:\r\n<code>/restart</code>\r\n\r\nعشان تدور على إيميل عميل:\r\n<code>/usage [Email]</code>\r\n\r\nعشان تدور على إدخالات (مع إحصائيات العملاء):\r\n<code>/inbound [Remark]</code>\r\n\r\nID شات Telegram:\r\n<code>/id</code>",
|
||
"helpClientCommands": "عشان تدور على الإحصائيات، استخدم الأمر ده:\r\n\r\n<code>/usage [Email]</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: {{ .Error }}</code>.",
|
||
"xrayNotRunning": "❗ Xray Core مش شغال.",
|
||
"startDesc": "عرض القائمة الرئيسية",
|
||
"helpDesc": "مساعدة البوت",
|
||
"statusDesc": "التحقق من حالة البوت",
|
||
"idDesc": "عرض معرف Telegram الخاص بك",
|
||
"usageDesc": "عرض استهلاك العميل: /usage البريد",
|
||
"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": "🔢 IPs:\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 }}\r\n",
|
||
"upload": "🔼 الرفع: ↑{{ .Upload }}\r\n",
|
||
"download": "🔽 التنزيل: ↓{{ .Download }}\r\n",
|
||
"total": "📊 الإجمالي: ↑↓{{ .UpDown }} / {{ .Total }}\r\n",
|
||
"TGUser": "👤 مستخدم Telegram: {{ .TelegramID }}\r\n",
|
||
"exhaustedCount": "🚨 عدد النفاذ لـ {{ .Type }}:\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": "📧 الإيميل الافتراضي: {{ .ClientEmail }}\n\nادخل الإيميل بتاعك.",
|
||
"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": "✅ تأكيد مسح الـ IPs؟",
|
||
"confirmRemoveTGUser": "✅ تأكيد حذف مستخدم Telegram؟",
|
||
"confirmToggle": "✅ تأكيد تفعيل/تعطيل المستخدم؟",
|
||
"dbBackup": "احصل على نسخة DB",
|
||
"serverUsage": "استخدام السيرفر",
|
||
"getInbounds": "احصل على الإدخالات",
|
||
"depleteSoon": "هينتهي قريب",
|
||
"clientUsage": "استخدام العميل",
|
||
"onlines": "العملاء الأونلاين",
|
||
"commands": "الأوامر",
|
||
"refresh": "🔄 تجديد",
|
||
"clearIPs": "❌ مسح الـ IPs",
|
||
"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": "⚙️📧 البريد",
|
||
"change_comment": "⚙️💬 تعليق",
|
||
"ResetAllTraffics": "إعادة ضبط جميع الترافيك",
|
||
"SortedTrafficUsageReport": "تقرير استخدام الترافيك المرتب"
|
||
},
|
||
"answers": {
|
||
"successfulOperation": "✅ العملية نجحت!",
|
||
"errorOperation": "❗ حصل خطأ في العملية.",
|
||
"getInboundsFailed": "❌ فشل الحصول على الإدخالات.",
|
||
"getClientsFailed": "❌ فشل الحصول على العملاء.",
|
||
"canceled": "❌ {{ .Email }}: العملية اتلغت.",
|
||
"clientRefreshSuccess": "✅ {{ .Email }}: العميل اتحدث بنجاح.",
|
||
"IpRefreshSuccess": "✅ {{ .Email }}: الـ IPs اتحدثت بنجاح.",
|
||
"TGIdRefreshSuccess": "✅ {{ .Email }}: مستخدم Telegram اتحدث بنجاح.",
|
||
"resetTrafficSuccess": "✅ {{ .Email }}: الترافيك اتظبط بنجاح.",
|
||
"setTrafficLimitSuccess": "✅ {{ .Email }}: حد الترافيك اتسجل بنجاح.",
|
||
"expireResetSuccess": "✅ {{ .Email }}: أيام الانتهاء اتظبطت بنجاح.",
|
||
"resetIpSuccess": "✅ {{ .Email }}: حد الـ IP ({{ .Count }}) اتسجل بنجاح.",
|
||
"clearIpSuccess": "✅ {{ .Email }}: الـ IPs اتمسحت بنجاح.",
|
||
"getIpLog": "✅ {{ .Email }}: سجل الـ IP اتجاب.",
|
||
"getUserInfo": "✅ {{ .Email }}: بيانات مستخدم Telegram اتجاب.",
|
||
"removedTGUserSuccess": "✅ {{ .Email }}: مستخدم Telegram اتحذف بنجاح.",
|
||
"enableSuccess": "✅ {{ .Email }}: اتفعل بنجاح.",
|
||
"disableSuccess": "✅ {{ .Email }}: اتعطل بنجاح.",
|
||
"askToAddUserId": "مافيش إعدادات ليك!\r\nاطلب من الأدمن يضيف الـ Telegram ChatID الخاص بيك في إعداداتك.\r\n\r\nالـ ChatID بتاعك: <code>{{ .TgUserID }}</code>",
|
||
"chooseClient": "اختار عميل للإدخال {{ .Inbound }}",
|
||
"chooseInbound": "اختار الإدخال"
|
||
}
|
||
},
|
||
"email": {
|
||
"labelStatus": "الحالة",
|
||
"labelOutbound": "الصادر",
|
||
"labelNode": "العقدة",
|
||
"labelError": "الخطأ",
|
||
"labelDelay": "التأخير",
|
||
"labelUsername": "اسم المستخدم",
|
||
"labelIP": "IP",
|
||
"labelReason": "السبب",
|
||
"labelSource": "المصدر",
|
||
"statusCrashed": "متعطّل",
|
||
"statusHigh": "مرتفع",
|
||
"statusSuccess": "نجاح",
|
||
"statusFailed": "فشل",
|
||
"statusDown": "غير متصل",
|
||
"statusUp": "متصل"
|
||
}
|
||
}
|