mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-07-17 10:06:08 +00:00
5e1cb7693b
* fix(email): resolve a name-addr smtpFrom into bare envelope address and display name The save-time validator accepts any RFC 5322 address form, so a value like '3x-ui Panel <panel(at)example.com>' passes validation, but Send and TestConnection fed that raw string to MAIL FROM, which strict servers reject with 501, and buildMessage mangled it into a quoted local part. Parse the configured sender at the point of use: the envelope gets the bare address and, when no explicit sender name is set, the display name embedded in the setting is used for the From header. * fix(email): report a missing sender address from the SMTP connection test TestConnection skipped the empty-from guard that Send enforces, so with no sender and no username configured the test issued the null reverse-path and could report success against a lenient relay while every real notification send kept failing with the missing-sender error. Guard the test path the same way and surface a dedicated translated message. * fix(sub): fall back to the raw subscription when an auto-detected format has no content With format auto-detection enabled, a client whose User-Agent matched the Clash or JSON regex was routed straight to that format handler. For a subscription whose entries convert to neither format (an MTProto-only subscription, for example) the handler returns an empty document and the request ended as 404, breaking a URL that served the raw list before the toggle. The auto-detect branches now serve the detected format only when it produces content and otherwise continue to the raw response; the explicit format endpoints keep answering 404 for empty documents. * fix(node): match prefixed central tags when filtering a selected-mode node snapshot FilterNodeSnapshot compared a node snapshot's inbound tags against the raw selected-tag list with an exact match, while its two siblings (SnapshotHasUnadoptedInbounds and the reconcile tagToCentral map) expand each selected tag to both its bare node-side form and its n<id>- prefixed central form. A panel-created node inbound is recorded in the selected list under the central prefixed tag but reported by the node under the bare tag, so the exact match dropped it from every snapshot and the orphan sweep then deleted its central row one tick after creation. Expand the allowed set with the same prefix flip the siblings use. * fix(client): refuse a bulk quota reduction that would fall to or below zero BulkAdjust clamped a client's new traffic limit with max(total+addBytes, 0). Because 0 is the unlimited sentinel, reducing a client's quota by more than it had left silently granted that client unlimited traffic. The sibling expiry branch already refuses an over-reduction; mirror it for quota so the adjustment is skipped with a clear reason instead of crossing the sentinel. * fix(client): persist a bulk adjustment's applied field even when the sibling field is skipped In a mixed BulkAdjust (both a days delta and a bytes delta), a per-field planning skip such as "unlimited expiry" or "unlimited traffic" was recorded in the same map that gated the client_traffics write. The applied field was already written to the inbound JSON and the clients table, but the enforcement row was left untouched, so the depletion job cut the client on the old limit while the panel showed the new one. Gate the traffic-row write on an actual inbound-processing failure rather than on any planning-phase skip note. * fix(inbound): always create in AddInbound instead of overwriting a row whose id was posted The add controller binds the inbound model's id form field and never clears it, and AddInbound persisted with GORM Save, which updates in place when the primary key is non-zero. A client that reused an existing id (for instance by duplicating an inbound fetched from /get and changing the port) silently overwrote that stored row instead of creating a new inbound. Zero the id at the top of AddInbound, matching how it already zeroes the client-stat ids. * fix(inbound): accept WireGuard clients when creating an inbound AddInbound's per-client validation switch had cases for every protocol except WireGuard, so a WireGuard client fell through to the default branch that requires a non-empty id. WireGuard clients are keyed by their public key and carry no id, so importing a WireGuard inbound or re-adding one to a reconciling node was rejected with "empty client ID". Add a wireguard case that validates the client key, mirroring addInboundClient. * fix(client): stop holding the inbound-lock registry mutex while waiting on one inbound lockInbound acquired the global registry mutex and then blocked on the per-inbound mutex without releasing the registry first. A slow client operation holding one inbound's mutex (for example a bulk delete pushing to an unreachable node) made the next waiter park on that inbound while still holding the registry mutex, which in turn blocked lockInbound for every other inbound — freezing client mutations panel-wide. Release the registry mutex before taking the per-inbound lock. * fix(client): honor keepTraffic when deleting a client that is attached to inbounds Delete, DeleteByEmail and BulkDelete all pass keepTraffic to their final cleanup transaction, but each called the per-inbound delete helper with a hardcoded false. That helper purges the client's traffic, IP and stat rows before the gated cleanup runs, so keepTraffic=true still destroyed all traffic history for any client actually attached to an inbound (the pinned test only covered a record with no inbound mappings). Thread the caller's keepTraffic through to the per-inbound helper at all three call sites. * fix(inbound): defer a local MTProto inbound edit's sidecar push until after commit UpdateInbound applied a local MTProto inbound change by calling the runtime UpdateInbound (which stops/starts the mtg sidecar or talks to it) from inside runSerializedTx. That runs process and network I/O on the single traffic-writer goroutine while a DB transaction is open, so a slow sidecar stalls traffic accounting and every concurrent client mutation, and a later step failing the transaction leaves the sidecar ahead of the rolled-back row. Move the push into the post-commit hook, matching the xray branch. Adds a SetLocalRuntimeOverride test seam mirroring the existing node override so the deferral is regression tested. * fix(client): delete external-link rows when bulk-deleting clients The single-client Delete path removes a client's client_external_links rows, but BulkDelete (and the DelDepleted reaper that routes through it) deleted the record, mappings and traffic while leaving the external-link rows keyed by the now-dead client id, so they accumulated as orphans. Delete them in the same cleanup transaction, keyed by client id like the single path. * fix(inbound): request an xray restart when toggling a routed MTProto inbound AddInbound, DelInbound and UpdateInbound all flag needRestart when an inbound routes MTProto through xray, so the egress SOCKS bridge is regenerated. Only SetInboundEnable's local path omitted it, so toggling a routed MTProto inbound off then on left the bridge out of the running config while the sidecar dialed its loopback port, blackholing that inbound until an unrelated restart. Flag the restart on the local enable path too. * fix(client): apply enable-by-email to every inbound a client is attached to ToggleClientEnableByEmail (Telegram bot) and SetClientEnableByEmail (LDAP sync) resolved a single inbound via the legacy client_traffics pointer and flipped enable only there. A client attached to several inbounds kept connecting through the siblings' running Xray after being disabled, and the next edit could re-enable it everywhere from a stale sibling. Route both through the applyClientFieldByEmail fan-out (the #5039 fix path) so the whole multi-inbound identity is toggled at once, dropping the circular Set/Toggle dependency. * fix(traffic): commit a traffic tick even when a best-effort maintenance helper fails addTrafficLocked stages the inbound and client deltas, then runs three helpers (auto-renew, disable depleted clients, disable depleted inbounds) that are meant to log and continue. All three reused the function-scope err that the deferred commit/rollback inspects, so the last helper's error decided the whole tick: a failure in disableInvalidInbounds rolled back the already-staged traffic while AddTraffic reported success, and because xray had already advanced its counter baseline that traffic was lost for good. Give each best-effort helper its own error variable so only a genuine staging failure rolls the tick back. * fix(traffic): re-enable clients and serialize the write in Reset All Client Traffic ClientService.ResetAllTraffics zeroed up/down but, unlike every sibling reset path, never restored enable=true, so clients that had been auto-disabled for exceeding their quota stayed cut with zero usage after a reset. It also wrote client_traffics directly on the shared DB handle instead of through the serial traffic writer, reintroducing the cross-transaction lock-order deadlock the writer exists to prevent. Restore enable and run the reset inside submitTrafficWrite within one transaction. * fix(traffic): keep node reset propagation out of the serial traffic writer ResetAllTraffics and ResetInboundTraffic performed their remote-node reset HTTP calls inside submitTrafficWrite. Each call can block up to the remote timeout, and Reset All Traffics loops every node serially, so the single traffic-writer goroutine was held for seconds — long enough that the concurrent 5s traffic poll timed out submitting its own write and dropped the deltas it had already drained from xray. Do the DB reset inside the writer, then propagate to the nodes after it returns, matching how the mtproto quota reset is already sequenced. * fix(sub): stop the subscription from 500ing on valid-but-unusual stream settings The raw share-link generators used unchecked type assertions and unguarded array indexing: an empty Reality shortIds/serverNames array (random.Num(0) panics), a tcp-http header with no request block or an empty request.path, a grpc block missing its keys, empty stream settings, and a non-string Host header all panicked mid-generation. Because getSubs loops every client's link with no recover, one such client 500s the entire subscription for everyone. The sibling JSON, Clash and frontend generators already guard these; make the raw generators match with comma-ok assertions and length checks. * fix(sub): tolerate a hysteria inbound without hysteriaSettings in the JSON subscription genHy asserted stream["hysteriaSettings"].(map[string]any) without the comma-ok form, so a hysteria inbound whose StreamSettings omit the hysteriaSettings key (a valid, representable shape the raw generator renders fine) panicked and 500ed the entire JSON subscription. Use comma-ok; the downstream reads already guard each key, so a nil map degrades gracefully. * fix(sub): emit the pinned peer cert sha256 in Clash subscriptions The Clash stream builder computed tlsSettings["pin-sha256"] from the inbound's pinnedPeerCertSha256, but applySecurity's tls case never copied it onto the proxy, so it was written with no reader and silently dropped. Clash subscribers lost certificate pinning while JSON subscribers kept it. Surface pin-sha256 on the proxy in the tls case, matching the JSON emitter. * fix(link): parse the snake_case and extra-blob xhttp fields when importing a share link The panel's share-link emitters (Go and TS) carry advanced xhttp knobs as a snake_case x_padding_bytes plus an extra=<json> payload, but the Go parser's xhttp branch read only top-level camelCase params, so importing an xhttp link via the outbound-subscription feature dropped xPaddingBytes, scMaxEachPostBytes and the rest, silently reverting them to the stream defaults and producing a non-working outbound. Mirror the TS parser: read the snake_case alias, merge the extra JSON blob, then let explicit camelCase params win. * fix(frontend): decode URL-safe base64 when parsing an imported share link Base64.decode called window.atob directly, which rejects the base64url alphabet (- and _) and unpadded input. But the panel's own share-link emitter uses Base64.encode(x, true) (URL-safe, unpadded), and real SIP002 links do too, so importing a Shadowsocks link whose method:password encodes with a - or _ threw, fell back to the raw undecoded string, and produced a wrong method and garbage password (the vmess parser shared the same limitation). Normalize base64url and re-pad before atob so decode round-trips every emitted link. * fix(link): honor the vmess ws path and hysteria2 vcn params on import Two Go/TS parser parity gaps in the outbound share-link import path: parseVmess only applied a ws link's path when the inner JSON also carried a host key, so a generator that omits host dropped the path back to the default; and parseHysteria2 hardcoded verifyPeerCertByName to empty, ignoring the vcn param the panel emits, so a hysteria2 outbound with a decoy SNI and a distinct cert name failed TLS verification after import. The TS parser handles both; make the Go parser match. * fix(ui): stop the sniffing form island from clobbering unrendered fields antd's Form.useWatch only reports registered fields, so while the sniffing toggle was off the island emitted { enabled: false } upward and replaced the full Sniffing object in form state. Saving a VLESS reverse outbound then crashed in sniffingToWire on the missing ipsExcluded array; the loopback outbound and the inbound sniffing tab shared the same hole. Watch the store with preserve: true so unrendered fields keep their values, and seed a missing value from the schema defaults instead of an empty cast. * fix(sub): drop empty remark segments instead of leaving a stray separator expandSegment dropped a "|" segment only when its tokens rendered the unlimited mark, so a segment whose only token resolved to the empty string (a client with no comment, an unlimited client's expiry date) was kept as bare decoration, leaving a trailing "|" or a dangling emoji on every share link's remark. Drop a token-bearing segment whenever none of its tokens produce a real value, while still keeping pure-literal segments. * fix(xray): keep source- and domains-scoped routing rules when an inbound is deleted removeInboundTagFromRules drops a routing rule whose inboundTag list becomes empty only if the rule has no other matcher, but routingMatcherKeys omitted xray-core's canonical source and domains keys. A rule scoped by source or domains (common in hand-authored or imported configs) therefore lost its whole body — including a security-relevant block — when its single listed inbound was deleted, instead of just having the tag trimmed. Recognize source and domains as live matchers. * fix(xray): guard RemoveUser against an uninitialized handler client Every XrayAPI handler method returns an error when HandlerServiceClient is nil, except RemoveUser, which dereferenced it directly. A depletion sweep runs Init with the port ignored and, during a restart window where the fresh process's api port is still 0, Init fails and leaves the client nil — so RemoveUser panicked (recovered by the traffic writer, but re-thrown every poll) instead of returning an error. Add the same nil guard the siblings have. * fix(xray): do not revive a manually stopped Xray on a background restart RestartXray cleared isManuallyStopped unconditionally at its top, so the @30s pending-config cron (and warp/ldap/outbound reconcile jobs) that call RestartXray(false) resurrected an Xray the admin had deliberately stopped — unlike the crash-detector, which honors the manual-stop flag. Skip a non-forced restart while the stop flag is set; only an explicit forced restart clears it. * fix(xray): retry a failed pending-restart instead of dropping the config change The 30s cron consumed the need-restart flag with IsNeedRestartAndSetFalse before calling RestartXray and only logged a failure. If RestartXray failed early (a transient GetXrayConfig DB error) the old process kept running the old config, the crash detector saw a running process and never retried, and the flag stayed cleared — so an admin's saved change silently never reached the core. Move the consume/restart/retry into ApplyPendingRestart, which re-arms the flag on failure so the next tick retries. * fix(xray): synchronize the process version and apiPort fields Start writes p.version and p.apiPort (via refreshVersion/refreshAPIPort) after flipping the process to running, while GetXrayVersion and GetAPIPort read them lock-free from the status and traffic poll goroutines. The struct mutex deliberately excluded these fields, so a restart racing a poll was a real data race — a torn read of the version string header can crash. Extend the mutex to cover version and apiPort, doing the blocking version probe before taking the lock. * fix(settings): detect a wildcard listen collision between the web and sub ports The web/sub same-port check compared the two listen addresses as raw strings, so binding both on all interfaces with different spellings (webListen 0.0.0.0 vs an empty subListen) slipped past validation and only failed at startup with an opaque bind error. Treat any wildcard listen ('', 0.0.0.0, ::) as overlapping so the clash is reported up front, while still allowing two distinct specific addresses to share a port. * fix(db): mark the IP-limit cleanup seeder done on a fresh install ResetIpLimitNoFail2ban is a one-time migration that, on a host without fail2ban, zeroes every existing client's limitIp because the limit can't be enforced. It was missing from the fresh-install fast-path seeder list, so on a brand-new DB it did not run on the first boot but fired on the second — wiping any IP limits the admin had set in between. Add it to the fast-path so a truly fresh install marks it done up front (there is nothing to clean), leaving later admin-set limits intact. * fix(security): dial outbound subscriptions through the SSRF guard The outbound-subscription fetch validated the URL host once (resolving DNS and rejecting private targets) but then fetched with a plain HTTP client that re-resolves the host at dial time, so a subscription domain the attacker controls could pass validation as a public IP and rebind to 127.0.0.1 / a cloud metadata endpoint / an internal host for the actual dial — a blind SSRF into the panel's network. Route the direct fetch (and its redirects) through netsafe.SSRFGuardedDialContext, which resolves, checks and dials the same IP atomically, carrying the subscription's AllowPrivate flag on the request context; a configured egress proxy still dials its loopback bridge unguarded. * fix(security): bound the login-limiter attempts map The login rate limiter keys its records on the caller-supplied username and only evicted a record when that exact key was revisited or the login succeeded. An unauthenticated attacker replaying one CSRF token while rotating a fresh username per request seeded a record that was never revisited, growing the map without bound until the panel OOMs. Cap the map: before inserting a new record, reclaim records whose block has lapsed and whose failures aged out, and if the map is still at the ceiling under a broad flood, drop one so memory can never grow past the cap. * fix(tgbot): require admin for privileged callbacks, not just the first switch answerCallback wraps only its first callback switch in an isAdmin guard; the second switch (server usage, inbound/online enumeration, database backup export, ban logs, mass traffic reset, client creation) ran for every caller. Telegram delivers a callback with the tapping user's id, so a non-admin who can see an admin's inline keyboard — as when the bot runs in a group — could tap Backup and receive the full database and config, or reset all traffic. Default-deny before the second switch: a non-admin may only run the per-user client_* callbacks that resolve their own data from their Telegram id. * fix(eventbus): dispatch each subscriber in its own goroutine The fan-out loop called every subscriber's handler sequentially on the single dispatch goroutine. The email and Telegram notifiers block on network I/O for tens of seconds (or minutes when the remote is slow), so one slow subscriber stalled the whole loop: the 256-slot channel then filled and Publish silently dropped later events — including high-value xray.crash and node.down notifications unrelated to the slow handler. Hand each delivered event to every handler in its own goroutine so a blocking subscriber can no longer stall delivery to the others. safeCall already recovers panics, so a detached handler cannot take down the bus. * fix(integration): cap WARP API response body size doWarpRequest read the response with an unbounded io.ReadAll, unlike the sibling NordVPN client which already caps every read at maxResponseSize. A hostile panel egress proxy or a MITM on the Cloudflare WARP endpoint could stream an arbitrarily large body and force the panel into an unbounded allocation. Wrap the body in an io.LimitReader(maxResponseSize) to match the NordVPN client. * fix(email): bound every SMTP step with a connection deadline The "starttls"/"none" transport delivered through net/smtp.SendMail, which dials with an untimed net.Dial and never sets a socket deadline. When an SMTP server accepted the TCP connection but then stalled (or was a blackhole), the caller was released by Send's 30s select, but the sender goroutine and its socket stayed blocked until the OS TCP timeout — minutes per notification, leaking a goroutine and a connection each time. sendWithTLS dialed with a timeout but likewise armed no deadline on the protocol phase, and TestConnection (called synchronously from the settings handler, with no select guard) could hang the request indefinitely. Replace SendMail with sendPlain, which dials with smtpConnectTimeout and arms conn.SetDeadline(smtpDeadline) before the greeting read, preserving SendMail's opportunistic STARTTLS upgrade. Arm the same deadline in sendWithTLS and TestConnection so every SMTP step is bounded. * fix(server): guard access-log parser against malformed lines GetXrayLogs split each Xray access-log line on whitespace and then read fixed offsets — parts[1] for the timestamp and parts[i+1] after the "from", "accepted" and "email:" markers — without checking the line had that many fields. A truncated or malformed line (the logged destination is attacker-influenced) indexed past the slice and panicked; the panel handler returned a 500 via Gin's recovery. Extract the per-line field parsing into parseAccessLogFields and length guard every positional lookup so a short line yields a partial entry instead of panicking. * fix(server): guard xray key-generator output parsing GetNewX25519Cert, GetNewmldsa65 and GetNewmlkem768 parsed xray's stdout by reading lines[0], lines[1] and each line's second colon-separated field without any length check — unlike GetNewEchCert, which already guards its line count. If the xray binary printed fewer than two lines or reformatted its labels (a version change, or a silent failure that emitted nothing), the fixed slice index panicked and the handler 500'd. Extract the shared parsing into parseXrayKeyPairOutput, which length guards the line count and each label split and returns an error instead of panicking, then route all three generators through it. * fix(tgbot): stop auto-deleted messages from resetting wizard state SendMsgToTgbotDeleteAfter spawns a goroutine that, after the display delay, deleted the transient message and then unconditionally cleared the chat's conversation state. Every caller that ends a wizard step already clears the state synchronously, so that call was redundant — and harmful: if within the delay the user advanced to the next step (a callback sets a fresh awaiting_* state), the late goroutine wiped it, and the user's next message fell through unrecognized, silently dropping their input. Move the delayed deletion into deleteMessageAfterDelay, which only removes the message and no longer touches the conversation state. Guard deleteMessageTgBot against a nil bot so the deletion path is unit-testable. * fix(frontend): refetch a fresh CSRF token on 403 instead of reusing the stale meta tag On a 403 to an unsafe method the client cleared its cached CSRF token and called ensureCsrfToken to retry. But ensureCsrfToken prefers the <meta name="csrf-token"> tag baked into the page, which the production panel always injects, so the "refresh" re-read the same stale token and the /csrf-token refetch was never reached — the retry re-sent the token that had just been rejected and the save failed with an error toast. The token lives in the session and rotates when the session is regenerated (for example re-login in another tab), leaving the tab's baked-in meta token stale. Fetch the current token straight from /csrf-token in the 403 branch so the retry uses the authoritative server value. The existing tests only passed because they strip the meta tag; the new test keeps a stale tag present. * fix(frontend): surface backend error text from failed requests HttpUtil.get/post read the thrown HttpError body as response.data.message, but the backend error envelope (entity.Msg) serializes its text as msg. On any non-2xx JSON response the real reason was therefore dropped and the operator saw only the generic "Request failed with status N" toast. Read response.data.msg first (keeping message and the native error text as fallbacks). The sibling test had pinned the wrong body shape ({ message }); correct it to the real backend shape ({ success:false, msg }) so it exercises the actual envelope. * fix(frontend): share one WebSocket connection across bridge and hooks websocketBridge.ts and useWebSocket.ts each declared their own module-scoped sharedClient plus an identical getSharedClient, so the "shared" client was not shared between them: whenever a page using useWebSocket (Clients/Inbounds) mounted alongside the always-mounted bridge, the panel opened two sockets to /ws. The server then pushed every traffic/stats/nodes/inbounds snapshot to both, doubling WebSocket bandwidth and running two independent reconnect loops, and the hook's socket was never disconnected on unmount. Hoist a single getSharedWebSocketClient into api/websocket.ts and route both the bridge and the hook through it, so exactly one connection is opened. * fix(frontend): guard the outbounds WebSocket handler against non-array payloads onOutbounds wrote the raw WebSocket payload straight into the outboundsTraffic cache, unlike the sibling onNodes/onInbounds handlers which first check Array.isArray. A malformed non-array push (for example an object) would land in the cache with staleTime Infinity; consumers that call .find()/.map() on the outbounds list would then throw and crash the Outbounds tab. Add the same Array.isArray guard so a bad push is ignored. * fix(frontend): key the node table by the computed row key, not id The desktop node table used rowKey="id", but transitive sub-nodes (the read-only rows surfaced from downstream nodes) all carry id 0, so a topology with two or more transitive rows gave React duplicate keys. antd's rowKey prop overrides the row object's own computed `key` (`t-${guid}` for transitive rows, the numeric id otherwise), so the unique key the code already builds was ignored — causing row-state/DOM mis-association on any re-render (heartbeat refetch, address-eye toggle). The mobile card path already keyed by record.key. Key the table by "key" so transitive rows get their distinct t-${guid} identity; direct nodes keep key === id, so row selection (filtered to numeric keys) is unchanged. * fix(frontend): map routing row actions through the rule's real index The routing table hides balancer-loopback rules (`_bl_*`) but keeps each visible row's original index in `key`, then handed antd's positional row index straight to edit/delete/toggle/move/drag — all of which mutate the full, unfiltered routing.rules array. Once a hidden loopback rule precedes a visible one (e.g. a balancer whose fallback is another balancer, plus any rule added afterwards), the positional index no longer matches the array index, so deleting or editing a rule silently hit the wrong one — including destroying the loopback rule that keeps the balancer alive. Add originalRuleIndex to translate a positional row index back through the row's `key`, and route every mutating handler (openEdit, confirmDelete, toggleRule, moveUp/moveDown, drag) through it. When no loopback rows are hidden the mapping is the identity, so ordinary configs are unaffected. * fix(frontend): map outbound row actions through the outbound's real index The outbounds table hides balancer-loopback outbounds (`_bl_*`) but keeps each visible row's original index in `key`, then passed antd's positional row index to edit/delete/move and to the per-row probe (onTest) and its result lookup — all of which address the full, unfiltered outbounds array. Once a hidden loopback outbound precedes a visible one, the positional index diverges from the array index, so deleting or editing an outbound hit the wrong one (its deletion-impact plan and removal targeting the wrong entry), and the test button probed / showed results against the wrong outbound. Add originalOutboundIndex and route the mutating handlers through it; key the probe trigger and test-result columns by record.key. With no loopback rows hidden the mapping is the identity, so ordinary configs are unaffected. * fix(frontend): tolerate a malformed happyEyeballs value in the Xray Basics tab BasicsTab derived directHappyEyeballs by calling HappyEyeballsSchema.parse during render, guarding only against null/non-object. A wrong-typed field (e.g. happyEyeballs.tryDelayMs as a string) or any other shape mismatch — reachable via the Complete Template JSON editor or an imported config — threw straight out of render, white-screening the default Xray landing tab. Use safeParse and fall back to null so a bad value degrades to "no override" instead of crashing the page. * fix(frontend): preserve routing-rule fields the form does not surface The rule form rebuilt the rule from a fixed literal of only the fields it edits, and RoutingTab replaces the rule wholesale on confirm. Fields the form never exposes — localPort, localIP, process, ruleTag, webhook — are in the rule schema and can arrive via the advanced JSON editor or Import Rules; opening such a rule in the form and saving silently dropped them. Carry over every key of the original rule the form does not manage before applying the form-derived fields, so an edit only touches what it surfaces. * fix(frontend): re-sync the sniffing island when its value changes externally The sniffing config editor froze its seed value at mount and only watched its own inner AntD form, never reflecting a later change to the shared RHF `sniffing` path. Because the inbound form mounts every tab with forceRender, the friendly Sniffing tab and the Advanced JSON editor are live at once: editing sniffing in the JSON editor updated the RHF value but not the frozen island, so the next interaction with the friendly tab emitted the stale value and silently discarded the JSON edit. Add an effect that pushes an external value change into the inner form, guarded by the same lastEmitted marker the emit path uses so the island never re-seeds from its own echo and no update loop forms. * fix(frontend): don't drift a client's byte quota on a no-op save The quota field shows the total in GB rounded to two decimals; editing a client and saving converted that display value straight back to bytes. A byte total not aligned to 0.01 GB — one set via the API or an import — was therefore rewritten to the rounded value on any save that never touched the field, losing a few MB each time. Add resolveTotalBytes: keep the original byte total when the displayed GB still matches it, and only re-derive from GB when the user actually changed the field. * fix(eventbus): deliver events on a bounded per-subscriber worker The previous fix dispatched each event to every subscriber with a bare `go safeCall`. That unblocked the dispatch loop, but removed the bus's backpressure: under a login-attempt flood (which both notifier subscribers process without rate-limiting) with email/Telegram enabled, every attempt spawned handler goroutines that each block on network I/O for up to ~30s, with no bound — a goroutine and outbound-connection storm. It also let a subscriber's handler run concurrently with itself, racing the Telegram notifier's lazily-cached hostname. Give each subscriber its own bounded queue drained by a single worker goroutine. Dispatch does a non-blocking send per subscriber (dropping only that subscriber's event when its queue is full), so a slow subscriber still can't stall the others, concurrency is bounded to one in-flight handler per subscriber, per-subscriber event order is preserved, and Stop again waits for in-flight handlers to finish. * fix(frontend): map outbound mobile-card actions through the real index too The desktop outbounds table was keyed by the outbound's real index, but the mobile card list was left keying the probe trigger and every test-state lookup by the positional row index. With a hidden balancer-loopback outbound present, tapping Check on a mobile card probed the wrong outbound and the Test-All results landed on the wrong card. Key onTest and the testResult/isTesting reads by record.key, matching the desktop columns. * fix(frontend): meet WCAG AA contrast on the config-block link text The Storybook accessibility test flagged the share-link <code> block: with no explicit color it inherited a muted grey that renders as #888888 on the #f8f8f8 tertiary-fill background in CI's Chromium — a 3.33:1 contrast, below the 4.5:1 AA threshold. Set the text to the theme's primary text token so the colour is explicit and high-contrast in both light and dark themes instead of depending on an inherited value that varies by browser. * style(sub): simplify a negated conjunction to satisfy staticcheck QF1001 golangci-lint (staticcheck QF1001) flagged the `!(a && b)` guard in expandSegment. Rewrite it via De Morgan's law to the equivalent `!a || !b` form so the linter passes; behavior is unchanged. * fix: close panics and races the audit's own fixes left nearby Second-pass review of the 54-commit self-correcting audit. Each item below was confirmed by reading the surrounding source (and, where practical, the pre-fix code) before being changed; regression tests are included for every behavioral fix. Concurrency: - eventbus: Bus.Subscribe called wg.Add with no synchronization against a concurrent Bus.Stop's wg.Wait, a real "WaitGroup misuse" panic risk (e.g. a Telegram-bot settings save racing panel shutdown/restart). Stop now flips a mu-guarded `stopped` flag before waiting, and Subscribe checks it under the same lock, so Add and Wait can no longer race. Security: - login_limiter: evictForRoom's fallback eviction picked an arbitrary map key, including ones still under an active cooldown - an attacker flooding /login with fresh usernames could evict their own (or anyone's) blocked record and reset the lockout. The fallback now skips actively-blocked records, only falling back to an unconditional evict if the map is somehow entirely full of active blocks (preserves the hard memory cap). Subscription-endpoint panics (reachable by any client hitting /sub): - internal/sub/service.go: applyPathAndHostParams/Obj (ws/httpupgrade/xhttp with no path settings object) and the TLS alpn readers in three places used unchecked type assertions - exactly the bug classabab7cd0patched elsewhere in the same switch statements, just not these call sites. - internal/sub/json_service.go, clash_service.go: the externalProxy loops in the JSON and Clash generators used unchecked assertions on a legacy/admin-supplied field (missing "port", non-object entry, etc.). - internal/sub/json_service.go: realityData's shortId/serverName selection could assert a non-string array element. Other correctness: - client_traffic.go: ResetAllTraffics (touched by3eb214d0) still skipped clearing NodeClientTraffic node-sync baselines, unlike its sibling reset paths in the same file - a node's next sync would re-add pre-reset delta on top of the freshly-zeroed counter. - inbound_traffic.go: the traffic-tick tx's Commit/Rollback errors were silently discarded; now logged so a backend-level commit failure (e.g. an aborted Postgres tx from a best-effort helper) doesn't masquerade as a successful tick. - outbound_subscription.go: the new subscriptionFetchClient doc comment was wedged between fetchAndStore's existing comment and fetchAndStore itself, leaving fetchAndStore undocumented and the comment describing the wrong function. Convention cleanup: - Removed narrative // comments added by the audit that violate this repo's no-inline-comment rule (mostly narrating the specific bug/fix rather than a lasting contract, and mostly on new Test functions, which this repo's existing tests never comment) - calibrated against this exact codebase's own pre-existing comment style so legitimate godoc-style doc comments were left alone. --------- Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
2241 lines
153 KiB
JSON
2241 lines
153 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": "暗号化",
|
||
"useIPv4ForHost": "ホストにIPv4を使用",
|
||
"transmission": "伝送",
|
||
"host": "ホスト",
|
||
"path": "パス",
|
||
"camouflage": "難読化",
|
||
"status": "ステータス",
|
||
"enabled": "有効",
|
||
"disabled": "無効",
|
||
"depleted": "消耗済み",
|
||
"depletingSoon": "間もなく消耗",
|
||
"offline": "オフライン",
|
||
"online": "オンライン",
|
||
"domainName": "ドメイン名",
|
||
"monitor": "監視",
|
||
"certificate": "証明書",
|
||
"fail": "失敗",
|
||
"comment": "コメント",
|
||
"success": "成功",
|
||
"lastOnline": "最終オンライン",
|
||
"getVersion": "バージョン取得",
|
||
"install": "インストール",
|
||
"clients": "クライアント",
|
||
"usage": "利用状況",
|
||
"twoFactorCode": "コード",
|
||
"remained": "残り",
|
||
"security": "セキュリティ",
|
||
"secAlertTitle": "セキュリティアラート",
|
||
"secAlertSsl": "この接続は安全ではありません。TLSを有効にしてデータ保護を行うまで、機密情報を入力しないでください。",
|
||
"secAlertConf": "一部の設定は脆弱です。潜在的な脆弱性を防ぐために、セキュリティプロトコルを強化することをお勧めします。",
|
||
"secAlertSSL": "セキュアな接続がありません。データ保護のためにTLS証明書をインストールしてください。",
|
||
"secAlertPanelPort": "デフォルトのポートにはセキュリティリスクがあります。ランダムなポートまたは特定のポートを設定してください。",
|
||
"secAlertPanelURI": "デフォルトのURIパスは安全ではありません。複雑なURIパスを設定してください。",
|
||
"secAlertSubURI": "サブスクリプションのデフォルトURIパスは安全ではありません。複雑なURIパスを設定してください。",
|
||
"secAlertSubJsonURI": "JSONサブスクリプションのデフォルトURIパスは安全ではありません。複雑なURIパスを設定してください。",
|
||
"emptyDnsDesc": "追加されたDNSサーバーはありません。",
|
||
"emptyFakeDnsDesc": "追加されたFake DNSサーバーはありません。",
|
||
"emptyBalancersDesc": "追加されたバランサーはありません。",
|
||
"emptyReverseDesc": "追加されたリバースプロキシはありません。",
|
||
"somethingWentWrong": "エラーが発生しました",
|
||
"subscription": {
|
||
"title": "サブスクリプション情報",
|
||
"subId": "サブスクリプションID",
|
||
"status": "ステータス",
|
||
"downloaded": "ダウンロード",
|
||
"uploaded": "アップロード",
|
||
"expiry": "有効期限",
|
||
"totalQuota": "合計クォータ",
|
||
"individualLinks": "個別リンク",
|
||
"active": "有効",
|
||
"inactive": "無効",
|
||
"unlimited": "無制限",
|
||
"noExpiry": "期限なし",
|
||
"copyAllConfigs": "すべての設定をコピー",
|
||
"copyAllConfigsCopied": "すべての設定をコピーしました",
|
||
"email": "メール"
|
||
},
|
||
"menu": {
|
||
"theme": "テーマ",
|
||
"dark": "ダーク",
|
||
"ultraDark": "ウルトラダーク",
|
||
"dashboard": "ダッシュボード",
|
||
"inbounds": "インバウンド",
|
||
"clients": "クライアント",
|
||
"groups": "グループ",
|
||
"nodes": "ノード",
|
||
"settings": "パネル設定",
|
||
"xray": "Xray 設定",
|
||
"routing": "ルーティング",
|
||
"outbounds": "アウトバウンド",
|
||
"apiDocs": "API ドキュメント",
|
||
"logout": "ログアウト",
|
||
"link": "リンク管理",
|
||
"donate": "寄付",
|
||
"hosts": "ホスト",
|
||
"docs": "ドキュメント",
|
||
"openMenu": "メニューを開く"
|
||
},
|
||
"pages": {
|
||
"login": {
|
||
"hello": "こんにちは",
|
||
"title": "ようこそ",
|
||
"loginAgain": "ログインセッションが切れました。再度ログインしてください。",
|
||
"toasts": {
|
||
"invalidFormData": "データ形式エラー",
|
||
"emptyUsername": "ユーザー名を入力してください",
|
||
"emptyPassword": "パスワードを入力してください",
|
||
"wrongUsernameOrPassword": "ユーザー名、パスワード、または二段階認証コードが無効です。",
|
||
"successLogin": "アカウントに正常にログインしました。"
|
||
}
|
||
},
|
||
"index": {
|
||
"title": "システムステータス",
|
||
"cpu": "CPU",
|
||
"logicalProcessors": "論理プロセッサ",
|
||
"frequency": "周波数",
|
||
"swap": "スワップ",
|
||
"storage": "ストレージ",
|
||
"memory": "メモリ",
|
||
"threads": "スレッド",
|
||
"xrayStatus": "Xray",
|
||
"stopXray": "停止",
|
||
"restartXray": "再起動",
|
||
"xraySwitch": "バージョン",
|
||
"xrayUpdates": "Xrayの更新",
|
||
"xraySwitchClick": "切り替えるバージョンを選択してください",
|
||
"xraySwitchClickDesk": "慎重に選択してください。古いバージョンは現在の設定と互換性がない可能性があります。",
|
||
"updatePanel": "パネルを更新",
|
||
"panelUpdateDesc": "これにより3X-UIが最新リリースに更新され、パネルサービスが再起動されます。",
|
||
"currentPanelVersion": "現在のパネルバージョン",
|
||
"latestPanelVersion": "最新のパネルバージョン",
|
||
"panelUpToDate": "パネルは最新です",
|
||
"devChannel": "開発チャンネル",
|
||
"devChannelWarning": "開発ビルドは main の各コミットを追跡し、安定版ではありません。自動ダウングレードはありません。",
|
||
"currentCommit": "現在のコミット",
|
||
"latestCommit": "最新のコミット",
|
||
"updateChannelChanged": "更新チャンネルを変更しました",
|
||
"upToDate": "最新",
|
||
"xrayStatusUnknown": "不明",
|
||
"xrayStatusRunning": "実行中",
|
||
"xrayStatusStop": "停止",
|
||
"xrayStatusError": "エラー",
|
||
"xrayErrorPopoverTitle": "Xrayの実行中にエラーが発生しました",
|
||
"operationHours": "システム稼働時間",
|
||
"systemHistoryTitle": "システム履歴",
|
||
"historyTitleCpu": "CPU 使用率",
|
||
"historyTitleMem": "メモリ使用率",
|
||
"historyTitleNetwork": "ネットワーク帯域幅",
|
||
"historyTitlePackets": "ネットワークパケット",
|
||
"historyTitleDisk": "ディスク I/O",
|
||
"historyTitleOnline": "オンラインクライアント",
|
||
"historyTitleLoad": "システム平均負荷(1分 / 5分 / 15分)",
|
||
"historyTitleConnections": "アクティブな接続 (TCP / UDP)",
|
||
"historyTitleDiskUsage": "ディスク使用率",
|
||
"historyTabBandwidth": "帯域幅",
|
||
"historyTabPackets": "パケット",
|
||
"historyTabDisk": "ディスク I/O",
|
||
"historyTabOnline": "オンライン",
|
||
"historyTabLoad": "負荷",
|
||
"historyTabConnections": "接続数",
|
||
"historyTabDiskUsage": "ディスク使用量",
|
||
"charts": "チャート",
|
||
"xrayMetricsTitle": "Xray メトリクス",
|
||
"xrayTitleHeap": "割り当て済みヒープメモリ",
|
||
"xrayTitleSys": "OS から確保したメモリ",
|
||
"xrayTitleObjects": "ヒープオブジェクト数",
|
||
"xrayTitleGcCount": "完了した GC サイクル",
|
||
"xrayTitleGcPause": "GC 一時停止時間",
|
||
"xrayTitleObservatory": "アウトバウンド接続の状態",
|
||
"xrayTabHeap": "ヒープ",
|
||
"xrayTabSys": "Sys",
|
||
"xrayTabObjects": "オブジェクト",
|
||
"xrayTabGcCount": "GC 回数",
|
||
"xrayTabGcPause": "GC 一時停止",
|
||
"xrayTabObservatory": "オブザーバトリ",
|
||
"xrayMetricsDisabled": "Xray メトリクスエンドポイントが設定されていません",
|
||
"xrayMetricsHint": "xray 設定にトップレベルの metrics ブロック(tag: metrics_out、listen: 127.0.0.1:11111)を追加し、xray を再起動してください。",
|
||
"xrayObservatoryEmpty": "Observatory データはまだありません",
|
||
"xrayObservatoryHint": "xray 設定に observatory ブロックを追加し、プローブする outbound タグを列挙してから xray を再起動してください。",
|
||
"xrayObservatoryTagPlaceholder": "Outbound を選択",
|
||
"xrayObservatoryAlive": "稼働中",
|
||
"xrayObservatoryDead": "停止",
|
||
"xrayObservatoryLastSeen": "最終確認",
|
||
"xrayObservatoryLastTry": "最終試行",
|
||
"trendLast2Min": "直近2分",
|
||
"systemLoad": "システム負荷",
|
||
"systemLoadDesc": "過去1、5、15分間のシステム平均負荷",
|
||
"connectionCount": "接続数",
|
||
"ipAddresses": "IPアドレス",
|
||
"toggleIpVisibility": "IPの表示を切り替える",
|
||
"overallSpeed": "全体の速度",
|
||
"upload": "アップロード",
|
||
"download": "ダウンロード",
|
||
"totalData": "総データ量",
|
||
"sent": "送信",
|
||
"received": "受信",
|
||
"documentation": "ドキュメント",
|
||
"xraySwitchVersionDialog": "Xrayのバージョンを本当に変更しますか?",
|
||
"xraySwitchVersionDialogDesc": "Xrayのバージョンが#version#に変更されます。",
|
||
"xraySwitchVersionPopover": "Xrayの更新が成功しました",
|
||
"panelUpdateDialog": "本当にパネルを更新しますか?",
|
||
"panelUpdateDialogDesc": "これにより3X-UIが#version#に更新され、パネルサービスが再起動されます。",
|
||
"panelUpdateCheckPopover": "パネルの更新確認に失敗しました",
|
||
"panelUpdateStartedPopover": "パネルの更新を開始しました",
|
||
"panelUpdateFailedTitle": "パネルの更新に失敗しました",
|
||
"panelUpdateFailedDesc": "更新が正常に完了しませんでした。サーバーのログを確認するか、コマンドラインで「x-ui update」を実行してください。",
|
||
"panelUpdateUnknownTitle": "更新が完了したか確認できませんでした",
|
||
"panelUpdateUnknownDesc": "パネルから時間内に結果が報告されませんでした。再読み込みして現在のバージョンを確認するか、サーバーのログを確認してください。",
|
||
"geofileUpdateDialog": "ジオファイルを本当に更新しますか?",
|
||
"geofileUpdateDialogDesc": "これにより#filename#ファイルが更新されます。",
|
||
"geofilesUpdateDialogDesc": "これにより、すべてのファイルが更新されます。",
|
||
"geofilesUpdateAll": "すべて更新",
|
||
"geofileUpdatePopover": "ジオファイルの更新が成功しました",
|
||
"geodataTitle": "Geodata 自動更新",
|
||
"geodataHint": "Xray はスケジュールに従ってこれらのファイルをダウンロードし、再起動なしでホットリロードします。URL は HTTPS が必須です。各ファイルは事前に bin フォルダーに存在している必要があります。",
|
||
"geodataCron": "スケジュール (cron)",
|
||
"geodataOutbound": "アウトバウンド経由でダウンロード(任意)",
|
||
"geodataFile": "ファイル名",
|
||
"geodataAddFile": "ファイルを追加",
|
||
"geodataSaveRestart": "保存して Xray を再起動",
|
||
"geodataConfirmTitle": "geodata 設定を保存しますか?",
|
||
"geodataConfirmContent": "Xray 設定テンプレートを更新し、Xray を再起動します。",
|
||
"geodataInvalidUrl": "各ファイルには HTTPS URL が必要です。",
|
||
"geodataInvalidFile": "ファイル名はパスを含まない単純な名前にしてください(例: geosite_custom.dat)。",
|
||
"geodataInvalidCron": "Cron は 5 フィールド必要です(例: 0 4 * * *)",
|
||
"geodataEmpty": "ファイルが設定されていません。ルーティングルールでは ext:geosite_custom.dat:category の形式で参照します。",
|
||
"dontRefresh": "インストール中、このページをリロードしないでください",
|
||
"logs": "ログ",
|
||
"accessLogs": "アクセスログ",
|
||
"autoUpdate": "自動更新",
|
||
"config": "設定",
|
||
"backup": "バックアップ",
|
||
"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": "PostgreSQL のデータから作成した .db SQLite データベースをダウンロードします。このパネルを SQLite で実行する準備が整います。"
|
||
},
|
||
"inbounds": {
|
||
"title": "インバウンド",
|
||
"totalDownUp": "総アップロード / ダウンロード",
|
||
"totalUsage": "総使用量",
|
||
"inboundCount": "インバウンド数",
|
||
"operate": "メニュー",
|
||
"enable": "有効化",
|
||
"remark": "備考",
|
||
"node": "ノード",
|
||
"deployTo": "デプロイ先",
|
||
"localPanel": "ローカルパネル",
|
||
"fallbacks": {
|
||
"title": "Fallbacks",
|
||
"help": "このインバウンドへの接続がどのクライアントにも一致しない場合、別の宛先へルーティングします。下から子インバウンドを選ぶとルーティング項目(SNI / ALPN / Path / xver)がそのトランスポートから自動的に埋められます。あるいは選択を空のままにして Dest を直接指定すると(例: 8080 または 127.0.0.1:8080)、Nginx などの外部サーバーへルーティングできます。各子インバウンドは 127.0.0.1 で security=none をリッスンする必要があります。",
|
||
"empty": "フォールバックはまだありません",
|
||
"add": "フォールバックを追加",
|
||
"pickInbound": "インバウンドを選択",
|
||
"matchAny": "任意",
|
||
"destPlaceholder": "自動(子の listen:port)",
|
||
"rederive": "子から再取得",
|
||
"rederived": "子から再取得しました",
|
||
"editAdvanced": "ルーティング項目を編集",
|
||
"hideAdvanced": "詳細を隠す",
|
||
"quickAddAll": "対象のインバウンドをすべて一括追加",
|
||
"quickAdded": "{n} 件のフォールバックを追加しました",
|
||
"quickAddedNone": "追加可能な新規インバウンドはありません",
|
||
"routesWhen": "次の条件でルーティング",
|
||
"defaultCatchAll": "デフォルト — その他すべてを捕捉",
|
||
"needsTls": "フォールバックは、セキュリティタブで TLS または Reality を選択すると設定できます(RAW 上の VLESS/Trojan のみ)。"
|
||
},
|
||
"protocol": "プロトコル",
|
||
"port": "ポート",
|
||
"portMap": "ポートマッピング",
|
||
"traffic": "トラフィック",
|
||
"speed": "速度",
|
||
"details": "詳細情報",
|
||
"transportConfig": "トランスポート",
|
||
"expireDate": "有効期限",
|
||
"createdAt": "作成",
|
||
"updatedAt": "更新",
|
||
"resetTraffic": "トラフィックをリセット",
|
||
"addInbound": "インバウンド追加",
|
||
"generalActions": "一般操作",
|
||
"modifyInbound": "インバウンド修正",
|
||
"deleteInbound": "インバウンド削除",
|
||
"deleteInboundContent": "インバウンドを削除してもよろしいですか?",
|
||
"deleteConfirmTitle": "インバウンド「{remark}」を削除しますか?",
|
||
"deleteConfirmContent": "インバウンドと関連付けされたすべてのクライアントを削除します。元に戻せません。",
|
||
"resetConfirmTitle": "「{remark}」のトラフィックをリセットしますか?",
|
||
"resetConfirmContent": "このインバウンドの送受信カウンタを 0 にリセットします。",
|
||
"selectedCount": "{count} 選択中",
|
||
"selectAll": "すべて選択",
|
||
"bulkDeleteConfirmTitle": "{count} 件のインバウンドを削除しますか?",
|
||
"bulkDeleteConfirmContent": "選択したインバウンドと関連付けされたすべてのクライアントを削除します。元に戻せません。",
|
||
"cloneConfirmTitle": "インバウンド「{remark}」を複製しますか?",
|
||
"cloneConfirmContent": "新しいポートと空のクライアント一覧でコピーを作成します。",
|
||
"delAllClients": "すべてのクライアントを削除",
|
||
"delAllClientsConfirmTitle": "「{remark}」から {count} 件のクライアントをすべて削除しますか?",
|
||
"delAllClientsConfirmContent": "このインバウンドからすべてのクライアントを削除し、トラフィックレコードも破棄します。インバウンド自体は保持されます。この操作は取り消せません。",
|
||
"attachClients": "クライアントをアタッチ…",
|
||
"addClientsToGroup": "クライアントをグループに追加…",
|
||
"attachClientsTitle": "「{remark}」のクライアントをアタッチ",
|
||
"attachClientsDesc": "同じ {count} クライアント(同じ UUID/パスワードと共有トラフィック)を選択したインバウンドにアタッチします。このインバウンドにも残ります。",
|
||
"attachClientsTargets": "ターゲットインバウンド",
|
||
"attachClientsNoTargets": "アタッチ可能な互換インバウンドがありません。",
|
||
"attachClientsResult": "アタッチ {attached}、スキップ {skipped}。",
|
||
"attachClientsResultMixed": "アタッチ {attached}、スキップ {skipped}、エラー {errors}。",
|
||
"attachClientsSelectLabel": "アタッチするクライアント",
|
||
"attachClientsSearchPlaceholder": "メールまたはコメントを検索",
|
||
"attachClientsStatusDisabled": "無効",
|
||
"attachClientsSelectedCount": "{total} 中 {selected} 選択中",
|
||
"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",
|
||
"deleteClient": "クライアント削除",
|
||
"deleteClientContent": "クライアントを削除してもよろしいですか?",
|
||
"resetTrafficContent": "トラフィックをリセットしてもよろしいですか?",
|
||
"copyLink": "リンクをコピー",
|
||
"address": "アドレス",
|
||
"network": "ネットワーク",
|
||
"destinationPort": "宛先ポート",
|
||
"targetAddress": "宛先アドレス",
|
||
"monitorDesc": "空白にするとすべてのIPを監視",
|
||
"meansNoLimit": "= 無制限。(単位: GB)",
|
||
"totalFlow": "総トラフィック",
|
||
"leaveBlankToNeverExpire": "空白にすると期限なし",
|
||
"noRecommendKeepDefault": "デフォルト値を保持することをお勧めします",
|
||
"certificatePath": "ファイルパス",
|
||
"certificateContent": "ファイル内容",
|
||
"publicKey": "公開鍵",
|
||
"privatekey": "秘密鍵",
|
||
"clickOnQRcode": "QRコードをクリックしてコピー",
|
||
"client": "クライアント",
|
||
"export": "リンクエクスポート",
|
||
"clone": "複製",
|
||
"cloneInbound": "複製",
|
||
"cloneInboundContent": "このインバウンドルールは、ポート(Port)、リスニングIP(Listening IP)、クライアント(Clients)を除くすべての設定がクローンされます",
|
||
"cloneInboundOk": "クローン作成",
|
||
"resetAllTraffic": "すべてのインバウンドトラフィックをリセット",
|
||
"resetAllTrafficTitle": "すべてのインバウンドトラフィックをリセット",
|
||
"resetAllTrafficContent": "すべてのインバウンドトラフィックをリセットしてもよろしいですか?",
|
||
"resetInboundClientTraffics": "クライアントトラフィックをリセット",
|
||
"resetInboundClientTrafficTitle": "すべてのクライアントトラフィックをリセット",
|
||
"resetInboundClientTrafficContent": "このインバウンドクライアントのすべてのトラフィックをリセットしてもよろしいですか?",
|
||
"resetAllClientTraffics": "すべてのクライアントトラフィックをリセット",
|
||
"resetAllClientTrafficTitle": "すべてのクライアントトラフィックをリセット",
|
||
"resetAllClientTrafficContent": "すべてのクライアントのトラフィックをリセットしてもよろしいですか?",
|
||
"delDepletedClients": "トラフィックが尽きたクライアントを削除",
|
||
"delDepletedClientsTitle": "トラフィックが尽きたクライアントを削除",
|
||
"delDepletedClientsContent": "トラフィックが尽きたすべてのクライアントを削除してもよろしいですか?",
|
||
"email": "メール",
|
||
"emailDesc": "メールアドレスは一意でなければなりません",
|
||
"IPLimit": "IP制限",
|
||
"IPLimitDesc": "設定値を超えるとインバウンドトラフィックが無効になります。(0 = 無効)",
|
||
"IPLimitlog": "IPログ",
|
||
"IPLimitlogDesc": "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": "すべてのフィールドを含むインバウンドオブジェクト全体を 1 つのエディターで編集します。",
|
||
"settings": "設定",
|
||
"settingsHelp": "Xray settings ブロックのラッパー:",
|
||
"sniffing": "Sniffing",
|
||
"sniffingHelp": "Xray sniffing ブロックのラッパー:",
|
||
"stream": "Stream",
|
||
"streamHelp": "Xray stream ブロックのラッパー:",
|
||
"jsonErrorPrefix": "高度な JSON"
|
||
},
|
||
"telegramDesc": "TelegramチャットIDを提供してください。(ボットで'/id'コマンドを使用)または({'@'}userinfobot)",
|
||
"subscriptionDesc": "サブスクリプションURLを見つけるには、“詳細情報”に移動してください。また、複数のクライアントに同じ名前を使用することができます。",
|
||
"subSortIndex": "サブ並び順",
|
||
"same": "同じ",
|
||
"inboundInfo": "インバウンド情報",
|
||
"exportInbound": "インバウンドルールをエクスポート",
|
||
"import": "インポート",
|
||
"importInbound": "インバウンドルールをインポート",
|
||
"periodicTrafficResetTitle": "トラフィックリセット",
|
||
"periodicTrafficResetDesc": "指定された間隔でトラフィックカウンタを自動的にリセット",
|
||
"lastReset": "最後のリセット",
|
||
"periodicTrafficReset": {
|
||
"never": "なし",
|
||
"daily": "毎日",
|
||
"weekly": "毎週",
|
||
"monthly": "毎月",
|
||
"hourly": "毎時"
|
||
},
|
||
"toasts": {
|
||
"obtain": "取得",
|
||
"updateSuccess": "更新が成功しました",
|
||
"logCleanSuccess": "ログがクリアされました",
|
||
"inboundsUpdateSuccess": "インバウンドが正常に更新されました",
|
||
"inboundUpdateSuccess": "インバウンドが正常に更新されました",
|
||
"inboundCreateSuccess": "インバウンドが正常に作成されました",
|
||
"bulkDeleted": "{count} 件のインバウンドを削除しました",
|
||
"bulkDeletedMixed": "{ok} 件削除、{failed} 件失敗",
|
||
"inboundDeleteSuccess": "インバウンドが正常に削除されました",
|
||
"inboundClientAddSuccess": "インバウンドクライアントが追加されました",
|
||
"inboundClientDeleteSuccess": "インバウンドクライアントが削除されました",
|
||
"inboundClientUpdateSuccess": "インバウンドクライアントが更新されました",
|
||
"savedNodeOfflineWillSync": "ローカルに保存しました。バックエンドのノードがオフラインまたは無効になっています — 再接続後に変更が同期されます。",
|
||
"delDepletedClientsSuccess": "すべての枯渇したクライアントが削除されました",
|
||
"resetAllClientTrafficSuccess": "クライアントのすべてのトラフィックがリセットされました",
|
||
"resetAllTrafficSuccess": "すべてのトラフィックがリセットされました",
|
||
"resetInboundClientTrafficSuccess": "トラフィックがリセットされました",
|
||
"resetInboundTrafficSuccess": "受信トラフィックがリセットされました",
|
||
"trafficGetError": "トラフィックの取得中にエラーが発生しました",
|
||
"getNewX25519CertError": "X25519証明書の取得中にエラーが発生しました。",
|
||
"getNewmldsa65Error": "mldsa65証明書の取得中にエラーが発生しました。",
|
||
"getNewVlessEncError": "VlessEnc証明書の取得中にエラーが発生しました。",
|
||
"scanRealityTargetError": "REALITY ターゲットのスキャンに失敗しました。",
|
||
"scanRealityTargetFeasible": "ターゲットは利用可能です — ターゲットと SNI を入力しました。",
|
||
"scanRealityTargetNotFeasible": "ターゲットには到達できますが、REALITY には利用できません。",
|
||
"invalidClientField": "クライアント {client}: フィールド {field} — {reason}",
|
||
"invalidField": "{field} — {reason}",
|
||
"moreIssues": "{message} (他 {count} 件)"
|
||
},
|
||
"form": {
|
||
"echSockopt": "ECH Sockopt",
|
||
"echSockoptTip": "Xray が ECH config リストを取得するために使用する接続のソケットオプション(例: ルックアップを dialerProxy アウトバウンド経由にする)。既定値を使う場合は無効のままにします。",
|
||
"curvePreferences": "曲線の優先設定",
|
||
"curvePreferencesTip": "サーバーが提供する TLS 鍵交換の曲線を優先順位順に制限します(例: X25519MLKEM768, X25519)。空欄にすると Xray-core の既定値を使用します。",
|
||
"masterKeyLog": "マスターキーログ",
|
||
"masterKeyLogTip": "Wireshark でのデバッグ用に TLS マスターキー(SSLKEYLOGFILE 形式)を書き出すパス。本番環境では空欄にしてください — このファイルを持つ者は誰でも通信を復号できます。",
|
||
"verifyPeerCertByName": "名前でピア証明書を検証",
|
||
"verifyPeerCertByNameTip": "クライアントに対し、SNI ではなくこの名前でサーバー証明書を検証するよう指示します。名前はカンマ区切り。パネル専用 — 共有リンクに含まれます(vcn)。2026-06-01 以降 Xray が削除した allowInsecure の最新の代替手段です。",
|
||
"pinFromCert": "このインバウンドの証明書から入力",
|
||
"pinFromRemote": "SNI に ping して(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 のサイズ)。バイト/秒より小さい場合は同じ値まで引き上げられます。",
|
||
"moveUp": "上へ",
|
||
"moveDown": "下へ",
|
||
"addAll": "すべて追加",
|
||
"addAllFallbackTooltip": "まだ接続されていないすべての対象インバウンドに対し fallback 行を追加",
|
||
"peers": "Peers",
|
||
"addPeer": "peer を追加",
|
||
"keepAlive": "Keep-alive",
|
||
"autoSystemRoutesTooltip": "Windows のみ。CIDR はシステムルーティングテーブルに自動追加され、一致するトラフィックは TUN を経由します。",
|
||
"autoOutboundsInterface": "自動アウトバウンドインターフェース",
|
||
"autoOutboundsInterfaceTooltip": "アウトバウンドトラフィック用の物理インターフェース。検出には 'auto' を使用; Auto system routes が設定されていると自動的に有効。",
|
||
"rewriteAddress": "アドレス書き換え",
|
||
"rewritePort": "ポート書き換え",
|
||
"allowedNetwork": "許可されたネットワーク",
|
||
"followRedirect": "リダイレクトに従う",
|
||
"accounts": "アカウント",
|
||
"allowTransparent": "透過を許可",
|
||
"encryptionMethod": "暗号化方式",
|
||
"fakeTlsDomain": "FakeTLS ドメイン (SNI)",
|
||
"mtprotoSecret": "シークレット",
|
||
"mtgDomainFrontingIp": "ドメインフロンティング IP",
|
||
"mtgDomainFrontingPort": "ドメインフロンティング ポート",
|
||
"mtgDomainFrontingProxyProtocol": "ドメインフロンティング PROXY プロトコル",
|
||
"mtgDomainFrontingHint": "mtg が Telegram 以外のトラフィックを転送する先 — 例: あなたの NGINX ダミーサイト。IP を空欄にすると DNS 経由で FakeTLS ドメインを使用します。デフォルトポートは 443 です。",
|
||
"mtgProxyProtocolListener": "PROXY プロトコルを受け入れる(リスナー)",
|
||
"mtgPreferIp": "IP の優先設定",
|
||
"mtgDebug": "デバッグログ",
|
||
"mtgRouteThroughXray": "Xray 経由でルーティング",
|
||
"mtgRouteThroughXrayHint": "このプロキシの Telegram トラフィックを Xray 経由にして、ルーティングルールに従わせます。mtg サイドカーは、この受信のタグを付けたループバック SOCKS ブリッジ経由で接続します。高度なルールでは、ルーティングタブでそのタグを参照してください。",
|
||
"mtgRouteOutbound": "アウトバウンド",
|
||
"mtgRouteOutboundHint": "任意。Telegram トラフィックをこのアウトバウンド(またはバランサー)から強制的に送出します。空欄にするとルーティングルールに従います。",
|
||
"mtgRouteOutboundPlaceholder": "ルーティングルールを使用",
|
||
"mtprotoFakeTlsDomainHint": "新しいクライアントのシークレット生成に使う既定の FakeTLS ドメイン。クライアントごとに別のドメインを使用できます。",
|
||
"mtgThrottleMaxConnections": "最大接続数",
|
||
"mtgThrottleMaxConnectionsHint": "全ユーザーの同時接続数を公平配分で制限します。0 で無効。",
|
||
"mtgAdTagInvalid": "広告タグは正確に 32 文字の 16 進数である必要があります。",
|
||
"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": "ハートビート間隔",
|
||
"serviceName": "サービス名",
|
||
"authority": "Authority",
|
||
"multiMode": "Multi Mode",
|
||
"maxBufferedUpload": "最大バッファアップロード",
|
||
"maxUploadSize": "最大アップロードサイズ (バイト)",
|
||
"streamUpServer": "Stream-Up Server",
|
||
"serverMaxHeaderBytes": "サーバー最大ヘッダーバイト",
|
||
"paddingBytes": "Padding バイト",
|
||
"uplinkHttpMethod": "Uplink HTTP メソッド",
|
||
"paddingObfsMode": "Padding 難読化モード",
|
||
"paddingKey": "Padding Key",
|
||
"paddingHeader": "Padding Header",
|
||
"paddingPlacement": "Padding 配置",
|
||
"paddingMethod": "Padding 方法",
|
||
"sessionPlacement": "Session Placement",
|
||
"sessionKey": "Session Key",
|
||
"sessionIDTable": "セッション ID テーブル",
|
||
"sessionIDTableHint": "セッション ID 生成に使う文字セット:定義済みの名前(ALPHABET、Base62、hex、number など)またはリテラル ASCII 文字列。空欄で xray-core の既定値を使用します。",
|
||
"sessionIDLength": "セッション ID の長さ",
|
||
"sessionIDLengthHint": "生成するセッション ID の長さまたは範囲(例: 8-16)。セッション ID テーブルを設定したときのみ有効です。最小値は 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": "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": "OS のデフォルトを使うには 0 のままにします。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 を取得するためにこのリクエストヘッダーを信頼します(例: Cloudflare CDN の背後の CF-Connecting-IP)。WebSocket、HTTPUpgrade、XHTTP、gRPC トランスポートでのみ有効です。空欄にすると転送ヘッダーを無視します。",
|
||
"proxyProtocolHint": "PROXY protocol ヘッダーを受け入れ、上流の L4 トンネル/リレー(HAProxy、gost、nginx-stream、Xray dokodemo-door)または Cloudflare Spectrum から実際のクライアント IP を取得します。上流は必ず PROXY protocol を送信する必要があります。TCP、WebSocket、HTTPUpgrade、gRPC で動作します。mKCP では動作しません。",
|
||
"realClientIp": "実際のクライアント IP",
|
||
"realClientIpHint": "トラフィックが CDN やリレーを経由してこのインバウンドに到達したときに、中継ノードのアドレスではなく訪問者の実際の IP を取得します。プリセットを選ぶと、下の対応する 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": "Build Chain",
|
||
"echKey": "ECH key",
|
||
"echConfig": "ECH config",
|
||
"pinnedPeerCertSha256": "ピン留めピア証明書 SHA-256",
|
||
"pinnedPeerCertSha256Tip": "ピア証明書の SHA-256 ハッシュ(16進数文字列、例: e8e2d3…)、カンマ区切り。パネルのみ — サーバーの xray 設定には書き込まれませんが、共有リンクには含まれ、クライアントが証明書をピン留めできます。",
|
||
"pinnedPeerCertSha256Placeholder": "16進ハッシュ、カンマ区切り",
|
||
"getNewEchCert": "新しい ECH 証明書を取得",
|
||
"show": "表示",
|
||
"xver": "Xver",
|
||
"target": "ターゲット",
|
||
"maxTimeDiff": "最大時間差 (ms)",
|
||
"minClientVer": "最小クライアントバージョン",
|
||
"maxClientVer": "最大クライアントバージョン",
|
||
"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": "信頼できません",
|
||
"scanLatency": "レイテンシ",
|
||
"scanUse": "使用",
|
||
"scanRescan": "再スキャン",
|
||
"spiderX": "SpiderX",
|
||
"spiderXHint": "クライアントごとのシード。パネルはこれから各クライアント固有の spx パスを生成します。再生成で全員のパスを更新します",
|
||
"getNewCert": "新しい証明書を取得",
|
||
"mldsa65Seed": "mldsa65 Seed",
|
||
"mldsa65Verify": "mldsa65 Verify",
|
||
"getNewSeed": "新しい Seed を取得",
|
||
"listenHelp": "TCP ポートの代わりに Unix ソケットのパス(例: /run/xray/in.sock)、または @ を先頭に付けた抽象ソケット名(例: @xray/in.sock)を入力してソケットでリッスンすることもできます。その場合はポートを 0 に設定してください。",
|
||
"shareAddrStrategy": "共有アドレス戦略",
|
||
"shareAddrStrategyHelp": "エクスポートされる共有リンク、QRコード、サブスクリプション出力に書き込むアドレスを制御します。",
|
||
"shareAddr": "カスタム共有アドレス",
|
||
"shareAddrHelp": "共有アドレス戦略がカスタムの場合のみ使用されます。スキームやポートを含めずにホスト名またはIPを入力してください。",
|
||
"subSortIndex": "サブスクリプションでの並び順",
|
||
"subSortIndexHelp": "サブスクリプション出力(サブスクリプションページおよびクライアントアプリ)におけるこのインバウンドのリンクの位置。値が小さいほど先頭に表示され、同じ値の場合は作成順が維持されます。パネルのインバウンド一覧には影響しません。",
|
||
"shareAddrStrategyOptions": {
|
||
"node": "ノードアドレス",
|
||
"listen": "インバウンドのリッスンアドレス",
|
||
"custom": "カスタム"
|
||
}
|
||
},
|
||
"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} 設定"
|
||
},
|
||
"stream": {
|
||
"general": {
|
||
"request": "リクエスト",
|
||
"response": "レスポンス",
|
||
"name": "名前",
|
||
"value": "値"
|
||
},
|
||
"tcp": {
|
||
"version": "バージョン",
|
||
"method": "方法",
|
||
"path": "パス",
|
||
"status": "ステータス",
|
||
"statusDescription": "ステータス説明",
|
||
"requestHeader": "リクエストヘッダー",
|
||
"responseHeader": "レスポンスヘッダー"
|
||
}
|
||
},
|
||
"sniffingDestOverride": "宛先のオーバーライド"
|
||
},
|
||
"clients": {
|
||
"tabBasics": "基本",
|
||
"tabCredentials": "認証情報",
|
||
"tabLinks": "リンク",
|
||
"wireguardConfig": "WireGuard 設定",
|
||
"config": "設定",
|
||
"linksHint": "サードパーティの共有リンクやリモートのサブスクリプションURLを追加して、このクライアントのサブスクリプションに含めます。",
|
||
"addExternalLink": "外部リンクを追加",
|
||
"addExternalSubscription": "外部サブスクリプションを追加",
|
||
"noExternalLinks": "外部リンクはまだありません。",
|
||
"noExternalSubscriptions": "外部サブスクリプションはまだありません。",
|
||
"add": "クライアントを追加",
|
||
"edit": "クライアントを編集",
|
||
"submitAdd": "クライアントを追加",
|
||
"submitEdit": "変更を保存",
|
||
"clientCount": "クライアント数",
|
||
"bulk": "一括追加",
|
||
"copyFromInbound": "インバウンドからクライアントをコピー",
|
||
"copyToInbound": "コピー先",
|
||
"copySelected": "選択をコピー",
|
||
"copySource": "コピー元",
|
||
"copyEmailPreview": "生成されるメールのプレビュー",
|
||
"copySelectSourceFirst": "まずコピー元のインバウンドを選択してください。",
|
||
"copyResult": "コピー結果",
|
||
"copyResultSuccess": "コピーに成功しました",
|
||
"copyResultNone": "コピーする対象がありません。クライアントが選択されていないか、コピー元が空です",
|
||
"copyResultErrors": "コピーエラー",
|
||
"copyFlowLabel": "新規クライアントの Flow (VLESS)",
|
||
"copyFlowHint": "コピーされる全クライアントに適用されます。空欄でスキップします。",
|
||
"selectAll": "すべて選択",
|
||
"clearAll": "すべてクリア",
|
||
"method": "メソッド",
|
||
"first": "最初",
|
||
"last": "最後",
|
||
"ipLog": "IP ログ",
|
||
"prefix": "プレフィックス",
|
||
"postfix": "サフィックス",
|
||
"delayedStart": "初回使用から開始",
|
||
"expireDays": "期間 (日)",
|
||
"days": "日",
|
||
"renew": "自動更新",
|
||
"renewDesc": "有効期限切れ後に自動更新します。(0 = 無効) (単位: 日)",
|
||
"renewDays": "自動更新 (日)",
|
||
"searchPlaceholder": "メール、コメント、sub ID、UUID、パスワード、auth、Telegram ID を検索…",
|
||
"filterTitle": "クライアントをフィルタ",
|
||
"clearAllFilters": "すべてクリア",
|
||
"filters": {
|
||
"nodes": "ノード",
|
||
"localPanel": "ローカル(このパネル)"
|
||
},
|
||
"showingCount": "{total} 件中 {shown} 件を表示",
|
||
"sortOldest": "古い順",
|
||
"sortNewest": "新しい順",
|
||
"sortRecentlyUpdated": "最近更新",
|
||
"sortRecentlyOnline": "最近オンライン",
|
||
"sortEmailAZ": "メール A→Z",
|
||
"sortEmailZA": "メール Z→A",
|
||
"sortMostTraffic": "トラフィック多い順",
|
||
"sortHighestRemaining": "残量多い順",
|
||
"sortExpiringSoonest": "もうすぐ期限切れ",
|
||
"has": "あり",
|
||
"hasNot": "なし",
|
||
"title": "クライアント",
|
||
"actions": "操作",
|
||
"totalGB": "トラフィック上限 (GB)",
|
||
"totalGBDesc": "このクライアントのデータ割当量。0 = 無制限。",
|
||
"expiryTime": "有効期限",
|
||
"addClients": "クライアントを追加",
|
||
"limitIp": "IP 制限",
|
||
"limitIpDesc": "同時接続 IP の最大数。0 = 無制限。",
|
||
"limitIpFail2banMissing": "Fail2ban がインストールされていないため、IP 制限を適用できません。このオプションを有効にするには、x-ui の bash メニューから Fail2ban をインストールしてください。",
|
||
"limitIpFail2banWindows": "Windows では Fail2ban を利用できないため、IP 制限を適用できません。",
|
||
"limitIpDisabled": "このサーバーでは IP 制限機能が無効になっています。",
|
||
"password": "パスワード",
|
||
"passwordDesc": "Trojan と Shadowsocks のクライアントのみが使用します。VLESS、VMess、Hysteria、WireGuard では無視されます。",
|
||
"subId": "サブスクリプション ID",
|
||
"online": "オンライン",
|
||
"email": "メール",
|
||
"emailInvalidChars": "メールアドレスにスペース、'/'、'\\'、または制御文字を含めることはできません",
|
||
"subIdInvalidChars": "サブスクリプションIDにスペース、'/'、'\\'、または制御文字を含めることはできません",
|
||
"group": "グループ",
|
||
"groupDesc": "関連クライアントをまとめる論理ラベル(チーム、顧客、地域など)。ツールバーからフィルタ可能。",
|
||
"groupPlaceholder": "例: customer-a",
|
||
"comment": "コメント",
|
||
"traffic": "トラフィック",
|
||
"speed": "速度",
|
||
"offline": "オフライン",
|
||
"addClient": "クライアントを追加",
|
||
"qrCode": "QR コード",
|
||
"clientInfo": "クライアント情報",
|
||
"delete": "削除",
|
||
"reset": "トラフィックをリセット",
|
||
"editClient": "クライアントを編集",
|
||
"client": "クライアント",
|
||
"enabled": "有効",
|
||
"remaining": "残量",
|
||
"duration": "期間",
|
||
"attachedInbounds": "関連付けされたインバウンド",
|
||
"selectInbound": "1 つ以上のインバウンドを選択",
|
||
"selectAllInbounds": "すべて選択",
|
||
"clearAllInbounds": "すべてクリア",
|
||
"noSubId": "このクライアントには subId がなく、共有可能なリンクはありません。",
|
||
"noLinks": "共有可能なリンクがありません — まずこのクライアントを対応するプロトコルのインバウンドに関連付けてください。",
|
||
"link": "リンク",
|
||
"resetNotPossible": "まずこのクライアントをインバウンドに関連付けてください。",
|
||
"general": "一般",
|
||
"resetAllTraffics": "すべてのクライアントのトラフィックをリセット",
|
||
"resetAllTrafficsTitle": "すべてのクライアントのトラフィックをリセットしますか?",
|
||
"resetAllTrafficsContent": "すべてのクライアントの送受信カウンターがゼロにリセットされます。クォータと有効期限には影響しません。元に戻せません。",
|
||
"deleteConfirmTitle": "クライアント {email} を削除しますか?",
|
||
"deleteConfirmContent": "クライアントを関連付けされたすべてのインバウンドから削除し、トラフィック記録も破棄します。元に戻せません。",
|
||
"deleteSelected": "削除 ({count})",
|
||
"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} 選択中",
|
||
"attachSelected": "アタッチ ({count})",
|
||
"attachToInboundsTitle": "{count} クライアントをインバウンドにアタッチ",
|
||
"attachToInboundsDesc": "選択した {count} クライアント(同じ UUID/パスワードと共有トラフィック)を選択したインバウンドにアタッチします。既存のアタッチは維持されます。",
|
||
"attachToInboundsTargets": "ターゲットインバウンド",
|
||
"attachToInboundsNoTargets": "アタッチ可能なマルチユーザーインバウンドがありません。",
|
||
"detachSelected": "デタッチ ({count})",
|
||
"detach": "デタッチ",
|
||
"detachFromInboundsTitle": "{count} クライアントをインバウンドからデタッチ",
|
||
"detachFromInboundsDesc": "選択した {count} クライアントを選択したインバウンドから外します。アタッチされていなかったペアは黙ってスキップされます。クライアントレコードは保持されます (完全に削除するには Delete を使用)。",
|
||
"detachFromInboundsTargets": "デタッチ対象のインバウンド",
|
||
"detachFromInboundsNoTargets": "マルチユーザーインバウンドがありません。",
|
||
"detachFromInboundsResult": "デタッチ {detached}、スキップ {skipped}。",
|
||
"detachFromInboundsResultMixed": "デタッチ {detached}、スキップ {skipped}、エラー {errors}。",
|
||
"subLinksTitle": "サブリンク ({count})",
|
||
"subLinkColumn": "サブスクリプション URL",
|
||
"subJsonLinkColumn": "サブスクリプション JSON URL",
|
||
"subLinksCopyAll": "すべてコピー",
|
||
"subLinksCopiedAll": "{count} リンクをコピーしました",
|
||
"subLinksEmpty": "選択したクライアントにはサブスクリプション ID がありません。",
|
||
"subLinksDisabled": "サブスクリプションサービスは無効です。",
|
||
"subLinksDisabledHint": "リンクを生成するにはパネル設定 → サブスクリプションで有効にしてください。",
|
||
"bulkDeleteConfirmTitle": "{count} 件のクライアントを削除しますか?",
|
||
"bulkDeleteConfirmContent": "選択された各クライアントを関連付けされたすべてのインバウンドから削除し、トラフィック記録も破棄します。元に戻せません。",
|
||
"bulkAdjustTitle": "{count} 件のクライアントを調整",
|
||
"bulkAdjustHint": "正の値は延長、負の値は短縮します。無期限の有効期限または無制限のトラフィックを持つクライアントは、その項目についてスキップされます。",
|
||
"bulkAdjustNothing": "適用する前に日数またはトラフィックを設定してください。",
|
||
"addDays": "日数を追加",
|
||
"addTrafficGB": "トラフィックを追加 (GB)",
|
||
"bulkFlow": "Flow を設定",
|
||
"bulkFlowNoChange": "変更なし",
|
||
"bulkFlowDisable": "無効化 (flow をクリア)",
|
||
"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": "WireGuard 秘密鍵",
|
||
"wireguardPublicKey": "WireGuard 公開鍵",
|
||
"wireguardPreSharedKey": "WireGuard 事前共有鍵",
|
||
"wireguardAllowedIPs": "WireGuard 許可IP",
|
||
"wireguardAllowedIPsHint": "空欄で自動割り当て。複数指定はカンマ区切り",
|
||
"mtprotoSecret": "MTProto シークレット",
|
||
"mtprotoSecretHint": "このクライアントの FakeTLS シークレット。変更するには再生成します。",
|
||
"mtprotoAdTag": "広告タグ(スポンサーチャンネル)",
|
||
"mtprotoAdTagHint": "Telegram のプロキシ登録で取得する任意の 32 文字の 16 進数タグ。設定すると、このクライアントは Telegram の中間プロキシ経由でルーティングされ、スポンサーチャンネルがチャット一覧の先頭に表示されます。",
|
||
"reverseTag": "Reverse tag",
|
||
"reverseTagPlaceholder": "任意の Reverse tag",
|
||
"telegramId": "Telegram ユーザー ID",
|
||
"telegramIdPlaceholder": "数値の Telegram ユーザー ID (0 = なし)",
|
||
"created": "作成日",
|
||
"updated": "更新日",
|
||
"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} 件スキップ"
|
||
}
|
||
},
|
||
"groups": {
|
||
"title": "グループ",
|
||
"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": "{name} 内の {count} クライアントを調整しました。",
|
||
"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": {
|
||
"title": "ノード",
|
||
"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トークンを確認できます。",
|
||
"regenerate": "トークンを再生成",
|
||
"regenerateConfirm": "再生成すると現在のトークンは無効になります。これを使用しているすべての中央パネルは更新されるまでアクセスできなくなります。続行しますか?",
|
||
"allowPrivateAddress": "プライベートアドレスを許可",
|
||
"allowPrivateAddressHint": "プライベートネットワークまたはVPN上のノードにのみ有効にします。",
|
||
"outboundTag": "接続アウトバウンド",
|
||
"outboundTagHint": "選択した Xray アウトバウンドを経由して、このノードのパネル API トラフィックをルーティングします。ループバック ブリッジ inbound は実行中の設定に自動的に追加され、リアルタイムで適用されます。空のままにすると直接接続になります。",
|
||
"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": "更新あり",
|
||
"upToDate": "最新",
|
||
"updateConfirmTitle": "{count} 個のノードを最新バージョンに更新しますか?",
|
||
"updateConfirmContent": "選択した各ノードは最新リリースをダウンロードして再起動します。有効かつオンラインのノードのみが更新されます。",
|
||
"updateDevChannel": "開発チャンネルに更新(最新コミット)",
|
||
"testConnection": "接続テスト",
|
||
"connectionOk": "接続OK ({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": "オンラインで有効なノードを少なくとも1つ選択してください",
|
||
"saveMtls": "ノード mTLS を保存"
|
||
},
|
||
"tlsVerifyMode": "TLS 検証",
|
||
"tlsVerifyModeHint": "パネルがノードの HTTPS 証明書を検証する方法。ピン留めやスキップは自己署名証明書向け(https ノードのみ)。",
|
||
"tlsVerify": "検証(既定の CA)",
|
||
"tlsPin": "証明書をピン留め(SHA-256)",
|
||
"tlsSkip": "検証をスキップ",
|
||
"tlsMtls": "相互 TLS(クライアント証明書)",
|
||
"mtlsFormHint": "このノードはクライアント証明書でパネルを認証します。「ノード mTLS」セクションからこのパネルの CA をノードにコピーし、信頼する 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": "base64 または hex の SHA-256",
|
||
"fetchPin": "取得",
|
||
"pinFetched": "ノードの現在の証明書を取得しました",
|
||
"pinFetchFailed": "証明書を取得できませんでした"
|
||
},
|
||
"settings": {
|
||
"title": "パネル設定",
|
||
"save": "保存",
|
||
"infoDesc": "ここでのすべての変更は、保存してパネルを再起動する必要があります",
|
||
"restartPanel": "パネルを再起動",
|
||
"restartPanelDesc": "パネルを再起動してもよろしいですか?再起動後にパネルにアクセスできない場合は、サーバーでパネルログを確認してください",
|
||
"restartPanelSuccess": "パネルの再起動に成功しました",
|
||
"actions": "操作",
|
||
"resetDefaultConfig": "デフォルト設定にリセット",
|
||
"panelSettings": "一般",
|
||
"securitySettings": "セキュリティ設定",
|
||
"securityWarnings": "セキュリティ警告",
|
||
"panelExposed": "パネルが露出している可能性があります:",
|
||
"warnHttp": "パネルが平文 HTTP で提供されています — 本番環境には TLS を設定してください。",
|
||
"warnDefaultPort": "デフォルトポート 2053 はよく知られています — ランダムなポートに変更してください。",
|
||
"warnDefaultBasePath": "デフォルトのベースパス \"/\" はよく知られています — ランダムなパスに変更してください。",
|
||
"warnDefaultSubPath": "デフォルトのサブスクリプションパス \"/sub/\" はよく知られています — 変更してください。",
|
||
"warnDefaultJsonPath": "デフォルトの JSON サブスクリプションパス \"/json/\" はよく知られています — 変更してください。",
|
||
"TGBotSettings": "Telegram Bot",
|
||
"panelListeningIP": "パネル監視IP",
|
||
"panelListeningIPDesc": "デフォルトではすべてのIPを監視する",
|
||
"panelListeningDomain": "パネル監視ドメイン",
|
||
"panelListeningDomainDesc": "デフォルトで空白の場合、すべてのドメインとIPアドレスを監視する",
|
||
"panelPort": "パネル監視ポート",
|
||
"panelPortDesc": "再起動で有効",
|
||
"publicKeyPath": "パネル証明書公開鍵ファイルパス",
|
||
"publicKeyPathDesc": "'/'で始まる絶対パスを入力",
|
||
"privateKeyPath": "パネル証明書秘密鍵ファイルパス",
|
||
"privateKeyPathDesc": "'/'で始まる絶対パスを入力",
|
||
"panelUrlPath": "URI パス",
|
||
"panelUrlPathDesc": "'/'で始まり、'/'で終わる必要があります",
|
||
"pageSize": "ページサイズ",
|
||
"pageSizeDesc": "インバウンドテーブルのページサイズを定義します。0を設定すると無効化されます",
|
||
"panelOutbound": "パネルトラフィックのアウトバウンド",
|
||
"panelOutboundDesc": "パネル自体のリクエスト (パネル/Xray のバージョンチェックとダウンロード、Telegram、通常の geo ファイル更新) をこの Xray アウトバウンド経由でルーティングし、サーバー側の GitHub/Telegram フィルタリングを回避します。ローカルのブリッジインバウンドが実行中の設定に自動的に追加され、ライブで適用されます。Xray ネイティブの Geodata 自動更新は影響を受けません。専用のダウンロードアウトバウンドを持ちます。直接接続するには空のままにします。",
|
||
"panelOutboundPh": "直接接続",
|
||
"datepicker": "日付ピッカー",
|
||
"datepickerPlaceholder": "日付を選択",
|
||
"datepickerDescription": "日付選択カレンダーで有効期限を指定する",
|
||
"oldUsername": "旧ユーザー名",
|
||
"currentPassword": "旧パスワード",
|
||
"newUsername": "新しいユーザー名",
|
||
"newPassword": "新しいパスワード",
|
||
"telegramBotEnable": "Telegramボットを有効にする",
|
||
"telegramBotEnableDesc": "Telegramボット機能を有効にする",
|
||
"telegramToken": "Telegram トークン",
|
||
"telegramTokenDesc": "'{'@'}BotFather'から取得したTelegramボットトークン",
|
||
"telegramProxy": "SOCKS プロキシ",
|
||
"telegramProxyDesc": "SOCKS5プロキシを有効にしてTelegramに接続する(ガイドに従って設定を調整)",
|
||
"telegramAPIServer": "Telegram API サーバー",
|
||
"telegramAPIServerDesc": "使用するTelegram APIサーバー。空白の場合はデフォルトサーバーを使用する",
|
||
"telegramChatId": "管理者チャットID",
|
||
"telegramChatIdDesc": "Telegram管理者チャットID(複数の場合はカンマで区切る){'@'}userinfobotで取得するか、ボットで'/id'コマンドを使用して取得する",
|
||
"telegramNotifyTime": "通知時間",
|
||
"telegramNotifyTimeDesc": "Telegram ボットが定期レポートを送信する頻度です。プリセットの間隔を選ぶか、「カスタム」を選んで crontab 式を入力します。",
|
||
"notifyTime": {
|
||
"every": "@every — 一定間隔で繰り返す",
|
||
"hourly": "@hourly — 1時間ごと",
|
||
"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": "このしきい値に達した場合、トラフィック消耗に関する通知を受け取る(単位:GB)",
|
||
"tgNotifyCpu": "CPU負荷通知しきい値",
|
||
"tgNotifyCpuDesc": "CPU負荷がこのしきい値を超えた場合、通知を受け取る(単位:%)",
|
||
"timeZone": "タイムゾーン",
|
||
"timeZoneDesc": "定時タスクはこのタイムゾーンの時間に従って実行される",
|
||
"subSettings": "サブスクリプション設定",
|
||
"subEnable": "サブスクリプションサービスを有効にする",
|
||
"subEnableDesc": "サブスクリプションサービス機能を有効にする",
|
||
"subJsonEnable": "JSON サブスクリプションのエンドポイントを個別に有効/無効にする。",
|
||
"subJsonEnableTitle": "JSON サブスクリプション",
|
||
"subClashEnableTitle": "Clash / Mihomo サブスクリプション",
|
||
"subFormatsTipTitle": "形式別サブスクリプション設定",
|
||
"subFormatsTipDesc": "JSON と Clash / Mihomo の URL パス、リバース URL、クライアント自動検出を個別に設定します。",
|
||
"subFormatsTipAction": "サブスクリプション形式を開く",
|
||
"subJsonAutoDetect": "Xray JSON クライアントを自動検出",
|
||
"subJsonAutoDetectDesc": "有効にすると、標準サブスクリプション URL を要求する既知の互換クライアントへ Xray JSON 設定配列を自動的に返します。その他のクライアントには従来の raw/Base64 応答を返します。JSON サブスクリプションを有効にし、適用のためにパネルを再起動する必要があります。",
|
||
"subJsonAlwaysArray": "常に JSON 配列を返す",
|
||
"subJsonAlwaysArrayDesc": "プロファイルが 1 件でも、明示的な JSON サブスクリプションを XTLS 標準に従う配列として返します。自動検出された JSON 応答は常に配列です。無効時は従来の単一オブジェクト応答を維持します。",
|
||
"subJsonUserAgentRegex": "Xray JSON User-Agent 正規表現",
|
||
"subJsonUserAgentRegexDesc": "標準サブスクリプション URL で Xray JSON 形式を自動選択するため、クライアントの User-Agent と照合する Go RE2 正規表現です。既定では空欄のため、対象とするクライアント向けのパターンを設定するまで自動判別は無効のままです。その他のクライアントには従来の raw/Base64 応答を返します。変更後にパネルを再起動してください。",
|
||
"subClashAutoDetect": "Clash/Mihomo クライアントを自動検出",
|
||
"subClashAutoDetectDesc": "有効にすると、標準サブスクリプション URL を要求する既知の Clash/Mihomo クライアントへ Clash YAML を自動的に返します。ブラウザには引き続きサブスクリプションページを表示し、その他のクライアントには従来の raw/Base64 応答を返します。明示的な JSON および Clash URL も引き続き利用できます。Clash/Mihomo サブスクリプションを有効にし、適用のためにパネルを再起動する必要があります。",
|
||
"subClashUserAgentRegex": "Clash/Mihomo User-Agent 正規表現",
|
||
"subClashUserAgentRegexDesc": "標準サブスクリプション URL で Clash/Mihomo クライアントを識別するため、クライアントの User-Agent と照合する Go RE2 正規表現です。空欄の場合は既定のパターンを使用します。変更後にパネルを再起動してください。",
|
||
"subTitle": "サブスクリプションタイトル",
|
||
"subTitleDesc": "VPNクライアントに表示されるタイトル",
|
||
"subSupportUrl": "サポートURL",
|
||
"subSupportUrlDesc": "VPNクライアントに表示されるテクニカルサポートへのリンク",
|
||
"subProfileUrl": "プロフィールURL",
|
||
"subProfileUrlDesc": "VPNクライアントに表示されるWebサイトへのリンク",
|
||
"subAnnounce": "お知らせ",
|
||
"subAnnounceDesc": "VPNクライアントに表示されるお知らせのテキスト",
|
||
"subThemeDir": "サブスクリプションテーマディレクトリ",
|
||
"subThemeDirDesc": "サブスクリプションページのカスタムテンプレート (index.html/sub.html) を含むフォルダーの絶対パス(例: /etc/3x-ui/sub_templates/my-theme/)。空欄の場合はデフォルトのページを使用します。",
|
||
"subThemeDirDocs": "テンプレートガイド ↗",
|
||
"subEnableRouting": "ルーティングを有効化",
|
||
"subEnableRoutingDesc": "VPNクライアントでルーティングを有効にするためのグローバル設定。(Happのみ)",
|
||
"subRoutingRules": "ルーティングルール",
|
||
"subRoutingRulesDesc": "VPNクライアントのグローバルルーティングルール。(Happのみ)",
|
||
"subHideSettings": "サーバー設定を非表示",
|
||
"subHideSettingsDesc": "VPNクライアントでサーバー設定の表示・編集機能を非表示にします。(Happのみ)",
|
||
"subIncyEnableRouting": "ルーティングを有効化",
|
||
"subIncyEnableRoutingDesc": "Incyクライアント用に、サブスクリプション本文へルーティングプロファイルを挿入します。(Incyのみ)",
|
||
"subIncyRoutingRules": "ルーティングルール",
|
||
"subIncyRoutingRulesDesc": "サブスクリプション本文に追加するIncyルーティングのディープリンク。例: incy://routing/onadd/<base64>。(Incyのみ)",
|
||
"subClashEnableRouting": "ルーティングを有効化",
|
||
"subClashEnableRoutingDesc": "生成されたYAMLサブスクリプションにClash/Mihomoのグローバルルーティングルールを含めます。",
|
||
"subClashRoutingRules": "グローバルルーティングルール",
|
||
"subClashRoutingRulesDesc": "各YAMLサブスクリプションのMATCH,PROXYより前に追加されるClash/Mihomoルール。",
|
||
"subListen": "監視IP",
|
||
"subListenDesc": "サブスクリプションサービスが監視するIPアドレス(空白にするとすべてのIPを監視)",
|
||
"subPort": "監視ポート",
|
||
"subPortDesc": "サブスクリプションサービスが監視するポート番号(使用されていないポートである必要があります)。「リバースプロキシURI」が空の場合、パネルに表示されるサブスクリプションリンク/QRコードの生成にも使われます — サブスクリプションが別のポートのリバースプロキシ経由でアクセスされる場合は、代わりに「リバースプロキシURI」を設定してください。",
|
||
"subCertPath": "公開鍵パス",
|
||
"subCertPathDesc": "サブスクリプションサービスで使用する公開鍵ファイルのパス('/'で始まる)",
|
||
"subKeyPath": "秘密鍵パス",
|
||
"subKeyPathDesc": "サブスクリプションサービスで使用する秘密鍵ファイルのパス('/'で始まる)",
|
||
"subPath": "URI パス",
|
||
"subPathDesc": "サブスクリプションサービスで使用するURIパス('/'で始まり、'/'で終わる)",
|
||
"subDomain": "監視ドメイン",
|
||
"subDomainDesc": "サブスクリプションサービスが監視するドメイン(空白にするとすべてのドメインとIPを監視)。「リバースプロキシURI」が空の場合、表示されるサブスクリプションリンクのフォールバックドメインとしても使われます — パネルとサブスクリプションが異なるドメイン(例: リバースプロキシの背後)でアクセスされる場合は「リバースプロキシURI」を設定してください。",
|
||
"subUpdates": "更新間隔",
|
||
"subUpdatesDesc": "クライアントアプリケーションでサブスクリプションURLの更新間隔(単位:時間)",
|
||
"subEncrypt": "エンコード",
|
||
"subEncryptDesc": "サブスクリプションサービスが返す内容をBase64エンコードする",
|
||
"subURI": "リバースプロキシURI",
|
||
"subURIDesc": "サブスクリプションリンクとQRコードに使われる完全なベースURL(scheme://domain[:port]/path/)で、監視ドメイン/監視ポートの代わりに使用されます。サブスクリプションがリバースプロキシ経由、または上記と異なるドメイン/ポートでアクセスされる場合に設定してください。",
|
||
"externalTrafficInformEnable": "外部トラフィック情報",
|
||
"externalTrafficInformEnableDesc": "トラフィック更新ごとに外部 API に通知。",
|
||
"externalTrafficInformURI": "外部トラフィック通知 URI",
|
||
"externalTrafficInformURIDesc": "トラフィックの更新ごとに外部 API に通知します。",
|
||
"restartXrayOnClientDisable": "自動無効化後に Xray を再起動",
|
||
"restartXrayOnClientDisableDesc": "有効期限切れまたはトラフィック上限でクライアントが自動的に無効化されたとき、Xray を再起動します。",
|
||
"fragment": "フラグメント",
|
||
"fragmentDesc": "TLS helloパケットのフラグメントを有効にする",
|
||
"fragmentSett": "設定",
|
||
"noisesDesc": "Noisesを有効にする",
|
||
"noisesSett": "Noises設定",
|
||
"trustedProxyCidrs": "信頼できるプロキシ CIDR",
|
||
"trustedProxyCidrsDesc": "転送される host、proto、クライアント IP ヘッダーを設定可能な IP/CIDR (カンマ区切り)。",
|
||
"ldap": {
|
||
"enable": "LDAP 同期を有効化",
|
||
"host": "LDAP host",
|
||
"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": "生成される各 Xray JSON プロファイルへ Xray finalmask の TCP/UDP マスクと QUIC パラメーターを追加します。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": "マルチプレクサ設定",
|
||
"direct": "直接接続",
|
||
"directDesc": "特定の国のドメインまたはIP範囲に直接接続する",
|
||
"notifications": "通知",
|
||
"certs": "証明書",
|
||
"externalTraffic": "外部トラフィック",
|
||
"dateAndTime": "日付と時刻",
|
||
"proxyAndServer": "プロキシとサーバー",
|
||
"intervals": "間隔",
|
||
"information": "情報",
|
||
"profile": "プロフィール",
|
||
"language": "言語",
|
||
"telegramBotLanguage": "Telegram Botの言語",
|
||
"security": {
|
||
"admin": "管理者の資格情報",
|
||
"twoFactor": "二段階認証",
|
||
"twoFactorEnable": "2FAを有効化",
|
||
"twoFactorEnableDesc": "セキュリティを強化するために追加の認証層を追加します。",
|
||
"twoFactorModalSetTitle": "二段階認証を有効にする",
|
||
"twoFactorModalDeleteTitle": "二段階認証を無効にする",
|
||
"twoFactorModalSteps": "二段階認証を設定するには、次の手順を実行してください:",
|
||
"twoFactorModalFirstStep": "1. 認証アプリでこのQRコードをスキャンするか、QRコード近くのトークンをコピーしてアプリに貼り付けます",
|
||
"twoFactorModalSecondStep": "2. アプリからコードを入力してください",
|
||
"twoFactorModalRemoveStep": "二段階認証を削除するには、アプリからコードを入力してください。",
|
||
"twoFactorModalChangeCredentialsTitle": "認証情報の変更",
|
||
"twoFactorModalChangeCredentialsStep": "管理者の認証情報を変更するには、アプリケーションからコードを入力してください。",
|
||
"twoFactorModalSetSuccess": "二要素認証が正常に設定されました",
|
||
"twoFactorModalDeleteSuccess": "二要素認証が正常に削除されました",
|
||
"twoFactorModalError": "コードが間違っています",
|
||
"show": "表示",
|
||
"hide": "非表示",
|
||
"apiTokenNew": "新規トークン",
|
||
"apiTokenName": "名前",
|
||
"apiTokenNamePlaceholder": "例: central-panel-a",
|
||
"apiTokenNameRequired": "名前は必須です",
|
||
"apiTokenEmpty": "トークンがまだありません — ボットやリモートパネルを認証するために作成してください。",
|
||
"apiTokenDeleteWarning": "このトークンを使用しているクライアントは直ちに認証できなくなります。",
|
||
"apiTokenCreatedTitle": "トークンを作成しました",
|
||
"apiTokenCreatedNotice": "このトークンを今すぐコピーしてください。セキュリティ上、読み取り可能な形式では保存されず、再表示されません。"
|
||
},
|
||
"toasts": {
|
||
"modifySettings": "パラメーターが変更されました。",
|
||
"getSettings": "パラメーターの取得中にエラーが発生しました",
|
||
"modifyUserError": "管理者認証情報の変更中にエラーが発生しました。",
|
||
"modifyUser": "管理者の認証情報を正常に変更しました。",
|
||
"originalUserPassIncorrect": "旧ユーザー名または旧パスワードが間違っています",
|
||
"userPassMustBeNotEmpty": "新しいユーザー名と新しいパスワードは空にできません",
|
||
"getOutboundTrafficError": "送信トラフィックの取得エラー",
|
||
"resetOutboundTrafficError": "送信トラフィックのリセットエラー"
|
||
},
|
||
"smtpSettings": "SMTP設定",
|
||
"smtpEnable": "メール通知を有効化",
|
||
"smtpEnableDesc": "SMTP経由のメール通知を有効にします",
|
||
"smtpHost": "SMTPホスト",
|
||
"smtpHostDesc": "SMTPサーバーのホスト名(例: smtp.gmail.com)",
|
||
"smtpPort": "SMTPポート",
|
||
"smtpPortDesc": "SMTPサーバーのポート(既定値: 587)",
|
||
"smtpUsername": "SMTPユーザー名",
|
||
"smtpUsernameDesc": "SMTP認証用のユーザー名",
|
||
"smtpFrom": "送信元アドレス (From)",
|
||
"smtpFromDesc": "メールの From ヘッダーに使用するアドレス。空欄の場合はユーザー名を使用します。",
|
||
"smtpFromName": "送信者名 (From)",
|
||
"smtpFromNameDesc": "From ヘッダーでアドレスの前に表示される任意の表示名。",
|
||
"smtpPassword": "SMTPパスワード",
|
||
"smtpPasswordDesc": "SMTP認証用のパスワード",
|
||
"smtpTo": "受信者",
|
||
"smtpToDesc": "受信者のメールアドレス(カンマ区切り)",
|
||
"emailSettings": "メール",
|
||
"emailNotifications": "通知",
|
||
"smtpEventBusNotify": "メールイベント通知",
|
||
"smtpEventBusNotifyDesc": "メール通知をトリガーするイベントを選択してください",
|
||
"tgEventBusNotify": "Telegramイベント通知",
|
||
"tgEventBusNotifyDesc": "Telegram通知をトリガーするイベントを選択してください",
|
||
"testSmtp": "テストメールを送信",
|
||
"testTgBot": "テストメッセージを送信",
|
||
"eventGroupOutbound": "アウトバウンド",
|
||
"eventGroupXray": "Xrayコア",
|
||
"eventGroupSystem": "システム",
|
||
"eventGroupSecurity": "セキュリティ",
|
||
"eventGroupNode": "ノード",
|
||
"eventOutboundDown": "ダウン",
|
||
"eventOutboundUp": "アップ",
|
||
"eventXrayCrash": "クラッシュ",
|
||
"eventNodeDown": "ダウン",
|
||
"eventNodeUp": "アップ",
|
||
"eventCPUHigh": "CPU高負荷(%)",
|
||
"requestFailed": "リクエストに失敗しました",
|
||
"smtpEncryption": "暗号化",
|
||
"smtpEncryptionDesc": "SMTP接続の暗号化方式",
|
||
"smtpEncryptionNone": "なし(平文)",
|
||
"smtpEncryptionStartTLS": "STARTTLS",
|
||
"smtpEncryptionTLS": "TLS(暗黙的)",
|
||
"smtpStageConnect": "接続",
|
||
"smtpStageAuth": "認証",
|
||
"smtpStageSend": "送信",
|
||
"smtpTestSuccess": "テストメールを正常に送信しました",
|
||
"smtpHostNotConfigured": "SMTPホストが設定されていません",
|
||
"smtpNoRecipients": "受信者が設定されていません",
|
||
"smtpFromNotConfigured": "SMTP送信者アドレスが設定されていません",
|
||
"eventLoginAttempt": "ログイン試行",
|
||
"telegramTokenConfigured": "設定済み。現在のトークンを維持する場合は空欄のままにしてください。",
|
||
"telegramTokenPlaceholder": "設定済み - 置き換えるには新しいトークンを入力してください",
|
||
"smtpPasswordConfigured": "設定済み。現在のパスワードを維持する場合は空欄のままにしてください。",
|
||
"smtpPasswordPlaceholder": "設定済み - 置き換えるには新しいパスワードを入力してください",
|
||
"smtpNotInitialized": "SMTPが初期化されていません",
|
||
"tgBotNotEnabled": "Telegramボットが有効になっていません",
|
||
"tgTestFailed": "Telegramのテストに失敗しました",
|
||
"tgTestSuccess": "Telegramにテストメッセージを送信しました",
|
||
"tgBotNotRunning": "Telegramボットが実行されていません",
|
||
"smtpErrorAuth": "認証に失敗しました — ユーザー名とパスワードを確認してください",
|
||
"smtpErrorStarttls": "サーバーはSTARTTLSを要求しています — 暗号化方式を変更してください",
|
||
"smtpErrorTls": "サーバーはTLSを要求しています — 暗号化方式を変更してください",
|
||
"smtpErrorRefused": "接続が拒否されました — ホストとポートを確認してください",
|
||
"smtpErrorTimeout": "接続がタイムアウトしました — ホストに到達できません",
|
||
"smtpErrorRelay": "サーバーはこのアドレスからの送信を拒否しています",
|
||
"smtpErrorEof": "サーバーによって接続が閉じられました",
|
||
"smtpErrorUnknown": "SMTPエラー: {{ .Error }}",
|
||
"eventMemoryHigh": "メモリ使用率が高い (%)",
|
||
"remarkTemplate": "備考テンプレート",
|
||
"remarkTemplateDesc": "設定すると、すべてのサブスクリプションリンクの備考モデルを置き換えます — 変数トークンを使って独自の形式を記述してください(ボタンで挿入できます)。空欄にすると上記のモデルが使用されます。",
|
||
"validation": {
|
||
"pathLeadingSlash": "パスは / で始まる必要があります"
|
||
},
|
||
"secretClear": "クリア",
|
||
"secretClearUndo": "クリアを取り消す"
|
||
},
|
||
"xray": {
|
||
"title": "Xray 設定",
|
||
"importRules": "ルールをインポート",
|
||
"exportRules": "ルールをエクスポート",
|
||
"importOutbounds": "アウトバウンドをインポート",
|
||
"exportOutbounds": "アウトバウンドをエクスポート",
|
||
"importInvalidJson": "無効な JSON — 配列、または一致するキーを持つオブジェクトが必要です。",
|
||
"metricsListen": "メトリクスエンドポイント",
|
||
"metricsListenDesc": "この アドレス:ポート で Xray の Prometheus 形式メトリクスを公開します(例: 127.0.0.1:11111)。空欄にすると無効になります。認証されないため、localhost にバインドしてリバースプロキシ経由で公開してください。",
|
||
"metricsTag": "メトリクスタグ",
|
||
"save": "保存",
|
||
"restart": "Xray を再起動",
|
||
"restartSuccess": "Xrayの再起動に成功しました",
|
||
"restartOutputTitle": "Xray 再起動の出力",
|
||
"restartConfirmTitle": "xray を再起動?",
|
||
"restartConfirmContent": "保存された構成で xray サービスを再ロードします。",
|
||
"stopSuccess": "Xrayが正常に停止しました",
|
||
"restartError": "Xrayの再起動中にエラーが発生しました。",
|
||
"stopError": "Xrayの停止中にエラーが発生しました。",
|
||
"basicTemplate": "基本設定",
|
||
"advancedTemplate": "高度な設定",
|
||
"generalConfigs": "一般設定",
|
||
"generalConfigsDesc": "これらのオプションは一般設定を決定します",
|
||
"logConfigs": "ログ",
|
||
"logConfigsDesc": "ログはサーバーのパフォーマンスに影響を与える可能性があるため、必要な場合にのみ有効にすることをお勧めします",
|
||
"blockConfigsDesc": "これらのオプションは、特定のプロトコルやウェブサイトへのユーザー接続をブロックします",
|
||
"basicRouting": "基本ルーティング",
|
||
"blockConnectionsConfigsDesc": "これらのオプションにより、特定のリクエスト元の国に基づいてトラフィックをブロックします。",
|
||
"directConnectionsConfigsDesc": "直接接続により、特定のトラフィックが他のサーバーを経由しないようにします。",
|
||
"blockips": "IPをブロック",
|
||
"blockdomains": "ドメインをブロック",
|
||
"directips": "直接IP",
|
||
"directdomains": "直接ドメイン",
|
||
"ipv4Routing": "IPv4 ルーティング",
|
||
"ipv4RoutingDesc": "このオプションはIPv4のみを介してターゲットドメインへルーティングします",
|
||
"warpRouting": "WARP ルーティング",
|
||
"warpRoutingDesc": "注意:これらのオプションを使用する前に、パネルのGitHubの手順に従って、サーバーにsocks5プロキシモードでWARPをインストールしてください。WARPはCloudflareサーバー経由でトラフィックをウェブサイトにルーティングします。",
|
||
"nordRouting": "NordVPN ルーティング",
|
||
"nordRoutingDesc": "これらのオプションはNordVPN経由で特定の宛先にトラフィックをルーティングします。",
|
||
"Template": "高度なXray設定テンプレート",
|
||
"TemplateDesc": "最終的なXray設定ファイルはこのテンプレートに基づいて生成されます",
|
||
"FreedomStrategy": "Freedom プロトコル戦略",
|
||
"FreedomStrategyDesc": "Freedomプロトコル内のネットワークの出力戦略を設定する",
|
||
"FreedomHappyEyeballs": "Freedom Happy Eyeballs (IPv4/IPv6)",
|
||
"FreedomHappyEyeballsDesc": "直接(freedom)アウトバウンドのデュアルスタック接続。IPv4 と IPv6 の両方を持つ出口サーバーで便利です。",
|
||
"FreedomHappyEyeballsTryDelayDesc": "別のアドレスファミリを試すまでのミリ秒。150〜250 ms が目安です。",
|
||
"RoutingStrategy": "ルーティングドメイン戦略設定",
|
||
"RoutingStrategyDesc": "DNS解決の全体的なルーティング戦略を設定する",
|
||
"outboundTestUrl": "アウトバウンドテスト URL",
|
||
"outboundTestUrlDesc": "アウトバウンド接続テストに使用する URL。既定値",
|
||
"Torrent": "BitTorrent プロトコルをブロック",
|
||
"Inbounds": "インバウンド",
|
||
"InboundsDesc": "特定のクライアントからのトラフィックを受け入れる",
|
||
"Outbounds": "アウトバウンド",
|
||
"OutboundSubscriptions": "アウトバウンドサブスクリプション",
|
||
"OutboundSubscriptionsDesc": "リモートのサブスクリプションURL(vmess/vless/trojan/ss/...)からアウトバウンドをインポートします。タグはバランサーやルーティングルールで使えるように安定して保持されます。更新は自動的に行われます。",
|
||
"Balancers": "負荷分散",
|
||
"balancerTagRequired": "タグは必須です",
|
||
"balancerSelectorRequired": "アウトバウンドを少なくとも1つ選んでください",
|
||
"balancerLive": "現在のターゲット",
|
||
"balancerOverride": "ターゲット強制",
|
||
"balancerOverridePh": "自動(ストラテジー)",
|
||
"balancerLiveRefresh": "ロードバランサーのライブ状態を更新",
|
||
"balancerNotRunning": "このバランサーは実行中の Xray でアクティブではありません — 変更を保存するか、先に Xray を起動してください",
|
||
"routeTester": "ルートテスト",
|
||
"routeTesterDesc": "実行中の Xray にどのアウトバウンドが接続を処理するか問い合わせます。実際のトラフィックは送信されません — 判断はライブルーティングエンジンから直接取得されます。",
|
||
"routeTesterDest": "ドメインまたは IP",
|
||
"routeTesterPort": "ポート",
|
||
"routeTesterInbound": "インバウンド",
|
||
"routeTesterProtocol": "検出されたプロトコル",
|
||
"routeTesterTest": "ルートをテスト",
|
||
"routeTesterMatchedOutbound": "マッチしたアウトバウンド",
|
||
"routeTesterViaBalancer": "バランサー経由",
|
||
"routeTesterDefaultOutbound": "ルーティングルールに一致しませんでした — トラフィックはデフォルト(最初の)アウトバウンドに送られます。",
|
||
"OutboundsDesc": "アウトバウンドトラフィックの送信方法を設定する",
|
||
"Routings": "ルーティングルール",
|
||
"RoutingsDesc": "各ルールの優先順位が重要です",
|
||
"completeTemplate": "すべて",
|
||
"logLevel": "ログレベル",
|
||
"logLevelDesc": "エラーログのレベルを指定し、記録する情報を示します",
|
||
"accessLog": "アクセスログ",
|
||
"accessLogDesc": "アクセスログのファイルパス。特殊値 'none' はアクセスログを無効にします",
|
||
"errorLog": "エラーログ",
|
||
"errorLogDesc": "エラーログのファイルパス。特殊値 'none' はエラーログを無効にします",
|
||
"dnsLog": "DNS ログ",
|
||
"dnsLogDesc": "DNSクエリのログを有効にするかどうか",
|
||
"maskAddress": "アドレスをマスク",
|
||
"maskAddressDesc": "IPアドレスをマスクし、有効にするとログに表示されるIPアドレスを自動的に置き換えます",
|
||
"statistics": "統計",
|
||
"statsInboundUplink": "インバウンドアップロード統計",
|
||
"statsInboundUplinkDesc": "すべてのインバウンドプロキシのアップストリームトラフィックの統計収集を有効にします。",
|
||
"statsInboundDownlink": "インバウンドダウンロード統計",
|
||
"statsInboundDownlinkDesc": "すべてのインバウンドプロキシのダウンストリームトラフィックの統計収集を有効にします。",
|
||
"statsOutboundUplink": "アウトバウンドアップロード統計",
|
||
"statsOutboundUplinkDesc": "すべてのアウトバウンドプロキシのアップストリームトラフィックの統計収集を有効にします。",
|
||
"statsOutboundDownlink": "アウトバウンドダウンロード統計",
|
||
"statsOutboundDownlinkDesc": "すべてのアウトバウンドプロキシのダウンストリームトラフィックの統計収集を有効にします。",
|
||
"connectionLimits": "接続制限",
|
||
"connectionLimitsDesc": "ユーザーレベル0の接続レベルのポリシーです。フィールドを空のままにすると Xray のデフォルト値が使用されます。",
|
||
"connIdle": "アイドルタイムアウト",
|
||
"connIdleDesc": "接続がこの秒数アイドル状態のままになると接続を閉じます。値を下げると、混雑したサーバーでメモリとファイルディスクリプタをより早く解放できます(Xray のデフォルト: 300)。",
|
||
"bufferSize": "バッファサイズ",
|
||
"bufferSizeDesc": "接続ごとの内部バッファサイズ(KB単位)。低メモリのサーバーでメモリ使用量を最小限にするには 0 に設定します(Xray のデフォルトはプラットフォームに依存します)。",
|
||
"bufferSizePlaceholder": "自動",
|
||
"seconds": "秒",
|
||
"rules": {
|
||
"first": "最初",
|
||
"last": "最後",
|
||
"up": "上へ",
|
||
"down": "下へ",
|
||
"source": "ソース",
|
||
"dest": "宛先アドレス",
|
||
"inbound": "インバウンド",
|
||
"outbound": "アウトバウンド",
|
||
"balancer": "負荷分散",
|
||
"info": "情報",
|
||
"add": "ルール追加",
|
||
"edit": "ルール編集",
|
||
"useComma": "カンマ区切りの項目"
|
||
},
|
||
"routing": {
|
||
"dragToReorder": "ドラッグして並べ替え"
|
||
},
|
||
"ruleForm": {
|
||
"sourceIps": "送信元 IP",
|
||
"sourcePort": "送信元ポート",
|
||
"vlessRoute": "VLESS ルート",
|
||
"attributes": "属性",
|
||
"value": "値",
|
||
"user": "ユーザー",
|
||
"inboundTags": "インバウンドタグ",
|
||
"outboundTag": "アウトバウンドタグ",
|
||
"balancerTag": "バランサータグ",
|
||
"balancerTagTooltip": "設定済みのロードバランサーの1つを通じてトラフィックをルーティング"
|
||
},
|
||
"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",
|
||
"fragment": "Fragment",
|
||
"finalRules": "最終ルール",
|
||
"overrideXrayPrivateIp": "Xray のデフォルトプライベート IP ブロックを上書き",
|
||
"blockDelay": "ブロック遅延 (ms)",
|
||
"reverseSniffing": "逆 sniffing",
|
||
"reserved": "予約",
|
||
"minUploadInterval": "最小アップロード間隔 (ms)",
|
||
"maxUploadSizeBytes": "最大アップロードサイズ (バイト)",
|
||
"uplinkChunkSize": "Uplink チャンクサイズ",
|
||
"noGrpcHeader": "gRPC ヘッダーなし",
|
||
"maxConcurrency": "最大同時実行数",
|
||
"maxConnections": "最大接続数",
|
||
"maxReuseTimes": "最大再利用回数",
|
||
"maxRequestTimes": "最大リクエスト回数",
|
||
"maxReusableSecs": "最大再利用秒数",
|
||
"keepAlivePeriod": "keep alive 周期",
|
||
"authPassword": "Auth パスワード",
|
||
"visionTestpre": "Vision testpre",
|
||
"serverNamePlaceholder": "サーバー名",
|
||
"verifyPeerName": "peer 名を検証",
|
||
"pinnedSha256": "Pinned SHA256",
|
||
"shortId": "Short ID",
|
||
"sockopts": "Sockopts",
|
||
"keepAliveInterval": "keep alive 間隔",
|
||
"markFwmark": "Mark (fwmark)",
|
||
"interface": "インターフェース",
|
||
"ipv6Only": "IPv6 のみ",
|
||
"acceptProxyProtocol": "proxy protocol を受け入れる",
|
||
"proxyProtocol": "Proxy protocol",
|
||
"tcpUserTimeoutMs": "TCP user timeout (ms)",
|
||
"tcpKeepAliveIdleS": "TCP keep-alive idle (秒)"
|
||
},
|
||
"outbound": {
|
||
"addOutbound": "アウトバウンド追加",
|
||
"addReverse": "リバース追加",
|
||
"editOutbound": "アウトバウンド編集",
|
||
"editReverse": "リバース編集",
|
||
"reverseTag": "リバースタグ",
|
||
"reverseTagDesc": "VLESSシンプルリバースプロキシのアウトバウンドタグ。無効にするには空欄にしてください。",
|
||
"reverseTagPlaceholder": "アウトバウンドタグ(空欄で無効)",
|
||
"tag": "タグ",
|
||
"tagDesc": "一意のタグ",
|
||
"address": "アドレス",
|
||
"egress": "Egress",
|
||
"egressHint": "Run an HTTP test to show egress IP and country.",
|
||
"reverse": "リバース",
|
||
"domain": "ドメイン",
|
||
"type": "タイプ",
|
||
"bridge": "Bridge",
|
||
"portal": "Portal",
|
||
"link": "リンク",
|
||
"intercon": "インターコネクション",
|
||
"settings": "設定",
|
||
"accountInfo": "アカウント情報",
|
||
"outboundStatus": "アウトバウンドステータス",
|
||
"sendThrough": "送信経路",
|
||
"targetStrategy": "ターゲット解決戦略",
|
||
"test": "テスト",
|
||
"testResult": "テスト結果",
|
||
"testing": "接続をテスト中...",
|
||
"testSuccess": "テスト成功",
|
||
"testFailed": "テスト失敗",
|
||
"testError": "アウトバウンドのテストに失敗しました",
|
||
"modeRealDelay": "実際の遅延",
|
||
"testModeTooltip": "TCP: 高速 dial-only プローブ。HTTP: xray を経由した完全リクエスト。実際の遅延: 接続確立を含む合計時間。",
|
||
"testAll": "すべてテスト",
|
||
"httpStatus": "HTTPステータス",
|
||
"breakdownConnect": "プロキシ接続",
|
||
"breakdownTls": "アウトバウンド経由のTLS",
|
||
"breakdownTtfb": "最初のバイト",
|
||
"nordvpn": "NordVPN",
|
||
"accessToken": "アクセストークン",
|
||
"country": "国",
|
||
"server": "サーバー",
|
||
"city": "都市",
|
||
"allCities": "すべての都市",
|
||
"privateKey": "秘密鍵",
|
||
"load": "負荷",
|
||
"moveToTop": "先頭に移動"
|
||
},
|
||
"outboundSub": {
|
||
"manage": "サブスクリプション",
|
||
"title": "アウトバウンドサブスクリプション",
|
||
"remark": "備考(任意)",
|
||
"remarkPlaceholder": "例: 香港ノード",
|
||
"url": "サブスクリプションURL",
|
||
"urlPlaceholder": "https://...(リンクのbase64リスト)",
|
||
"tagPrefix": "タグのプレフィックス",
|
||
"tagPrefixPlaceholder": "hk-",
|
||
"interval": "更新間隔",
|
||
"hours": "時間",
|
||
"minutes": "分",
|
||
"intervalHint": "デフォルトは10分です。バックグラウンドジョブは頻繁にチェックしますが、各サブスクリプションは自身の間隔が経過したときにのみ再取得されます。",
|
||
"enabled": "有効",
|
||
"allowPrivate": "プライベートアドレスを許可",
|
||
"allowPrivateHint": "このサブスクリプションのURLに対して、localhost・LAN・プライベートIPへのアクセスを許可します。セキュリティのため既定では無効です。信頼できるローカルソースの場合のみ有効にしてください。",
|
||
"prepend": "手動アウトバウンドの前に配置",
|
||
"prependHint": "このサブスクリプションのアウトバウンドを、手動で設定したアウトバウンドより前に配置します。これにより、いずれかをデフォルトにできます。",
|
||
"preview": "プレビュー",
|
||
"previewEmpty": "このURLにはアウトバウンドが見つかりませんでした。",
|
||
"refreshAll": "すべて更新",
|
||
"statusOk": "OK",
|
||
"toastUpdated": "サブスクリプションを更新しました",
|
||
"addButton": "追加",
|
||
"active": "有効なサブスクリプション",
|
||
"empty": "サブスクリプションはまだありません。上から追加してください。",
|
||
"colRemark": "備考",
|
||
"colPrefix": "プレフィックス",
|
||
"colInterval": "間隔",
|
||
"colLastFetch": "最終取得",
|
||
"colEnabled": "有効",
|
||
"auto": "自動",
|
||
"never": "なし",
|
||
"yes": "はい",
|
||
"no": "いいえ",
|
||
"refreshNow": "今すぐ更新",
|
||
"lastError": "最後のエラー",
|
||
"deleteConfirm": "このサブスクリプションを削除しますか?",
|
||
"restartHint": "追加または更新した後、アウトバウンドを有効にするにはXrayを再起動してください(または次の自動リロードをお待ちください)。",
|
||
"fromSubsTitle": "アウトバウンドサブスクリプションから(読み取り専用)",
|
||
"fromSubsDesc": "有効なサブスクリプションからインポートされています。上のサブスクリプションパネルで管理してください。",
|
||
"toastLoadFailed": "サブスクリプションの読み込みに失敗しました",
|
||
"toastUrlRequired": "サブスクリプションURLは必須です",
|
||
"toastAdded": "サブスクリプションを追加しました",
|
||
"toastAddFailed": "サブスクリプションの追加に失敗しました",
|
||
"toastRefreshed": "更新しました",
|
||
"toastRefreshFailed": "更新に失敗しました",
|
||
"toastDeleted": "削除しました",
|
||
"toastDeleteFailed": "削除に失敗しました"
|
||
},
|
||
"tabBalancerSettings": "バランサー設定",
|
||
"tabObservatory": "オブザーバトリ",
|
||
"observatory": {
|
||
"title": "オブザーバトリ",
|
||
"burstTitle": "バースト オブザーバトリ",
|
||
"autoManaged": "オブザーバはバランサーから自動的に管理されます。プローブの方法は下で調整できます。監視対象のアウトバウンドはバランサーのセレクターに従います。",
|
||
"emptyHint": "有効な接続オブザーバはありません。Least Ping または Least Load のバランサー、あるいは fallback 付きの Random / Round-robin バランサーを作成すると自動的に追加され、オブザーバを使うバランサーがターゲットを選ぶ前にアウトバウンドの健全性を確認できるようになります。",
|
||
"mixedLegacy": "この設定には Observatory と Burst Observatory の両方が含まれています。Xray は単一のグローバルオブザーバを使用するため、この古い混在状態はサポートされません。バランサーを保存すると 1 つのオブザーバに正規化されます。",
|
||
"subjectSelector": "監視対象のアウトバウンド",
|
||
"subjectSelectorDesc": "このオブザーバがプローブするアウトバウンドのタグ。バランサーから自動的に管理されます。",
|
||
"probeURL": "プローブ URL",
|
||
"probeURLDesc": "各アウトバウンドを測定するために取得する URL。HTTP 204 を返す必要があります。",
|
||
"probeInterval": "プローブ間隔",
|
||
"probeIntervalDesc": "各アウトバウンドをプローブする頻度。例: 30s、1m、2h45m。",
|
||
"enableConcurrency": "並行プローブ",
|
||
"enableConcurrencyDesc": "監視対象のアウトバウンドを1つずつではなく一度にプローブします。高速ですが、ネットワーク上で目立ちます。",
|
||
"destination": "プローブ先",
|
||
"destinationDesc": "各アウトバウンドを測定するために取得する URL。HTTP 204 を返す必要があります。",
|
||
"connectivity": "接続チェック",
|
||
"connectivityDesc": "任意のローカルネットワーク確認 URL。プローブ先が失敗した場合にのみ試行されます。空欄でスキップ。",
|
||
"interval": "プローブ間隔",
|
||
"intervalDesc": "アウトバウンドごとのプローブ間の平均時間。例: 1m。最小 10s。",
|
||
"timeout": "プローブ タイムアウト",
|
||
"timeoutDesc": "プローブを失敗とみなすまでの待機時間。例: 5s。",
|
||
"sampling": "サンプリング数",
|
||
"samplingDesc": "各アウトバウンドを評価するために保持する直近のプローブ結果の数。",
|
||
"httpMethod": "HTTP メソッド",
|
||
"httpMethodDesc": "プローブに使用する HTTP メソッド。",
|
||
"deleteAlsoObservatory": "これは Observatory を使用する最後のバランサーのため、こちらも削除されます。",
|
||
"deleteAlsoBurst": "これは Burst Observatory を使用する最後のバランサーのため、こちらも削除されます。"
|
||
},
|
||
"refCleanup": {
|
||
"header": "これを削除するとルーティングも更新されます:",
|
||
"ruleRemoved": "ルール {label} — 削除(送信先が残っていません)",
|
||
"ruleModified": "ルール {label} — 保持(現在は {keeps} を使用)",
|
||
"balancerRemoved": "バランサー {tag} — 削除(対象が残っていません)"
|
||
},
|
||
"balancer": {
|
||
"addBalancer": "負荷分散追加",
|
||
"editBalancer": "負荷分散編集",
|
||
"balancerStrategy": "戦略",
|
||
"balancerSelectors": "セレクター",
|
||
"tag": "タグ",
|
||
"tagDesc": "一意のタグ",
|
||
"tagDuplicate": "このタグは他のバランサーで使用されています",
|
||
"tagPlaceholder": "一意のバランサータグ",
|
||
"selector": "セレクター",
|
||
"fallback": "Fallback",
|
||
"cycleTooltip": "循環: {path} → ({start} に戻る)",
|
||
"expected": "期待値",
|
||
"expectedPlaceholder": "最適ノード数",
|
||
"maxRtt": "最大 RTT",
|
||
"tolerance": "許容範囲",
|
||
"baselines": "Baselines",
|
||
"costs": "Costs",
|
||
"balancerDesc": "balancerTagとoutboundTagは同時に使用できません。同時に使用された場合、outboundTagのみが有効になります。",
|
||
"costMatch": "タグパターン",
|
||
"costValue": "重み",
|
||
"costRegexp": "正規表現で一致",
|
||
"balancerDeleteInUse": "このバランサーを削除できません — 以下のバランサーのフォールバックとして使用されています:{names}",
|
||
"balancerFallbackCycle": "このバランサーをフォールバックに設定できません — 循環依存が発生します。",
|
||
"balancerFallbackInfo": "トラフィックは以下のルートで転送されます:バランサー → Loopback → サーバー → ターゲットバランサー → アウトバウンド。これによりサーバーを経由する追加ホップが発生し、多少の遅延が生じる場合があります。",
|
||
"fallbackBalancerHint": "フォールバックとして別のバランサーを選択してください",
|
||
"reservedPrefix": "プレフィックス _bl_ はバランサーの内部ループバックオブジェクト用に予約されています"
|
||
},
|
||
"wireguard": {
|
||
"secretKey": "シークレットキー",
|
||
"publicKey": "公開鍵",
|
||
"allowedIPs": "許可されたIP",
|
||
"endpoint": "エンドポイント",
|
||
"psk": "共有キー",
|
||
"domainStrategy": "ドメイン戦略"
|
||
},
|
||
"tun": {
|
||
"nameDesc": "TUN インターフェースの名前。デフォルトは 'xray0' です",
|
||
"mtuDesc": "最大伝送単位。データパケットの最大サイズ。デフォルトは 1500 です",
|
||
"userLevel": "ユーザーレベル",
|
||
"userLevelDesc": "このインバウンドを通じて確立されたすべての接続は、このユーザーレベルを使用します。デフォルトは 0 です"
|
||
},
|
||
"nord": {
|
||
"accessToken": "Access token",
|
||
"privateKey": "秘密鍵",
|
||
"noServers": "選択した国のサーバーが見つかりません",
|
||
"noPublicKey": "選択したサーバーは NordLynx 公開鍵を公開していません。",
|
||
"outboundAdded": "NordVPN アウトバウンドを追加しました",
|
||
"outboundUpdated": "NordVPN アウトバウンドを更新しました"
|
||
},
|
||
"warp": {
|
||
"changeIp": "IP を変更",
|
||
"changeIpSuccess": "WARP の IP を変更しました!",
|
||
"autoUpdateIp": "IP アドレスの自動更新",
|
||
"intervalDays": "間隔(日)",
|
||
"intervalDesc": "0 で無効。IP アドレスを自動的に変更します。",
|
||
"licenseError": "WARP ライセンスの設定に失敗しました。",
|
||
"fetchFirst": "先に WARP 構成を取得してください。",
|
||
"createAccount": "WARP アカウントを作成",
|
||
"accessToken": "Access token",
|
||
"deviceId": "デバイス ID",
|
||
"licenseKey": "ライセンスキー",
|
||
"privateKey": "秘密鍵",
|
||
"deleteAccount": "アカウントを削除",
|
||
"settings": "設定",
|
||
"licenseKeyLabel": "WARP / WARP+ ライセンスキー",
|
||
"key": "キー",
|
||
"keyPlaceholder": "26文字の WARP+ キー",
|
||
"accountInfo": "アカウント情報",
|
||
"deviceName": "デバイス名",
|
||
"deviceModel": "デバイスモデル",
|
||
"deviceEnabled": "デバイス有効",
|
||
"accountType": "アカウントタイプ",
|
||
"role": "役割",
|
||
"warpPlusData": "WARP+ データ",
|
||
"quota": "クォータ",
|
||
"usage": "使用量",
|
||
"addOutbound": "アウトバウンドを追加"
|
||
},
|
||
"dns": {
|
||
"enable": "DNSを有効にする",
|
||
"enableDesc": "組み込みDNSサーバーを有効にする",
|
||
"tag": "DNSインバウンドタグ",
|
||
"tagDesc": "このタグはルーティングルールでインバウンドタグとして使用できます",
|
||
"clientIp": "クライアントIP",
|
||
"clientIpDesc": "DNSクエリ中に指定されたIPの位置をサーバーに通知するために使用されます",
|
||
"disableCache": "キャッシュを無効にする",
|
||
"disableCacheDesc": "DNSキャッシュを無効にします",
|
||
"disableFallback": "フォールバックを無効にする",
|
||
"disableFallbackDesc": "フォールバックDNSクエリを無効にします",
|
||
"disableFallbackIfMatch": "一致した場合にフォールバックを無効にする",
|
||
"disableFallbackIfMatchDesc": "DNSサーバーの一致するドメインリストにヒットした場合、フォールバックDNSクエリを無効にします",
|
||
"enableParallelQuery": "並列クエリを有効にする",
|
||
"enableParallelQueryDesc": "複数のサーバーへの並列DNSクエリを有効にして、より高速な解決を実現",
|
||
"strategy": "クエリ戦略",
|
||
"strategyDesc": "ドメイン名解決の全体的な戦略",
|
||
"add": "サーバー追加",
|
||
"edit": "サーバー編集",
|
||
"domains": "ドメイン",
|
||
"expectIPs": "期待されるIP",
|
||
"unexpectIPs": "予期しないIP",
|
||
"useSystemHosts": "システムのHostsを使用",
|
||
"useSystemHostsDesc": "インストール済みシステムのhostsファイルを使用する",
|
||
"serveStale": "期限切れキャッシュを使用",
|
||
"serveStaleDesc": "バックグラウンドで更新中に期限切れキャッシュ結果を返す",
|
||
"serveExpiredTTL": "期限切れTTL",
|
||
"serveExpiredTTLDesc": "期限切れキャッシュエントリの有効期間(秒)。0 = 無期限",
|
||
"timeoutMs": "タイムアウト (ms)",
|
||
"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": "フェイクDNS追加",
|
||
"edit": "フェイクDNS編集",
|
||
"ipPool": "IPプールサブネット",
|
||
"poolSize": "プールサイズ"
|
||
},
|
||
"defaultOutbound": "デフォルトアウトバウンド",
|
||
"defaultOutboundDesc": "ルーティング規則に一致しないトラフィックはこのアウトバウンドを使います(一覧の先頭)。"
|
||
},
|
||
"hosts": {
|
||
"addHost": "ホストを追加",
|
||
"editHost": "ホストを編集",
|
||
"selectInbound": "インバウンドを選択",
|
||
"selectedCount": "{count} 選択中",
|
||
"summary": {
|
||
"total": "合計",
|
||
"enabled": "有効",
|
||
"disabled": "無効"
|
||
},
|
||
"moveUp": "上へ",
|
||
"moveDown": "下へ",
|
||
"bulkEnable": "有効化",
|
||
"bulkDisable": "無効化",
|
||
"bulkDelete": "削除",
|
||
"bulkDeleteConfirm": "選択した {count} 件のホストを削除しますか?",
|
||
"deleteConfirmTitle": "ホスト「{name}」を削除しますか?",
|
||
"sections": {
|
||
"basic": "基本",
|
||
"security": "セキュリティ",
|
||
"advanced": "詳細",
|
||
"general": "一般",
|
||
"clash": "Clash (mihomo)"
|
||
},
|
||
"fields": {
|
||
"remark": "備考",
|
||
"serverDescription": "説明",
|
||
"inbound": "インバウンド",
|
||
"address": "アドレス",
|
||
"port": "ポート",
|
||
"endpoint": "エンドポイント",
|
||
"enable": "有効化",
|
||
"actions": "操作",
|
||
"security": "セキュリティ",
|
||
"sni": "SNI",
|
||
"overrideSniFromAddress": "アドレスを SNI として使用",
|
||
"keepSniBlank": "SNI を空のままにする",
|
||
"hostHeader": "Host ヘッダー",
|
||
"path": "パス",
|
||
"alpn": "ALPN",
|
||
"fingerprint": "Fingerprint",
|
||
"pins": "ピン留め証明書 SHA-256",
|
||
"verifyPeerCertByName": "名前でピア証明書を検証",
|
||
"allowInsecure": "安全でない接続を許可",
|
||
"echConfigList": "ECH config リスト",
|
||
"muxParams": "Mux",
|
||
"sockoptParams": "Sockopt",
|
||
"finalMask": "Final Mask",
|
||
"vlessRoute": "VLESS ルート",
|
||
"mihomoIpVersion": "IP バージョン",
|
||
"mihomoX25519": "Mihomo X25519",
|
||
"shuffleHost": "ホストをシャッフル",
|
||
"tags": "タグ",
|
||
"nodeGuids": "ノード",
|
||
"excludeFromSubTypes": "形式から除外",
|
||
"inheritAddress": "アドレス継承"
|
||
},
|
||
"hints": {
|
||
"address": "空欄にするとインバウンド自身のアドレスを継承します。",
|
||
"port": "0 にするとインバウンドのポートを継承します。",
|
||
"tags": "エンドユーザーには表示されません。RAW サブスクリプションでのみ送信されます。大文字、数字、_ と : のみ使用できます。",
|
||
"nodeGuids": "このホストから解決されたノードを選択します。視覚的な割り当てのみです。",
|
||
"serverDescription": "備考の下に表示される任意のメモ。",
|
||
"allowInsecure": "TLS 証明書の検証をスキップします(allowInsecure / skip-cert-verify)。",
|
||
"vlessRoute": "UUID に埋め込まれる単一の VLESS ルート値(0〜65535)。例: 443。なしの場合は空欄にします。",
|
||
"remark": "このホストのプレーンなラベル。インバウンド自身に備考がない場合にのみ設定名として表示されます。"
|
||
},
|
||
"remarkVars": {
|
||
"title": "テンプレート変数",
|
||
"intro": "変数をクリックすると追加されます。サブスクリプション生成時にクライアントごとに置き換えられます。",
|
||
"preview": "プレビュー",
|
||
"groups": {
|
||
"client": "クライアント",
|
||
"traffic": "トラフィック",
|
||
"time": "時刻とステータス",
|
||
"connection": "接続"
|
||
},
|
||
"descEMAIL": "クライアントのメール",
|
||
"descINBOUND": "インバウンド自身の備考(設定名)",
|
||
"descHOST": "ホストの備考",
|
||
"descID": "クライアント UUID",
|
||
"descSHORT_ID": "UUID の最初の 8 文字",
|
||
"descTELEGRAM_ID": "クライアントの Telegram ID(未設定の場合は空)",
|
||
"descSUB_ID": "サブスクリプション ID",
|
||
"descCOMMENT": "クライアントのコメント",
|
||
"descTRAFFIC_USED": "使用済みトラフィック(人間が読みやすい形式)",
|
||
"descTRAFFIC_LEFT": "残りトラフィック(無制限の場合は非表示)",
|
||
"descTRAFFIC_TOTAL": "合計トラフィック(無制限の場合は非表示)",
|
||
"descTRAFFIC_USED_BYTES": "使用済みトラフィック(バイト)",
|
||
"descTRAFFIC_LEFT_BYTES": "残りトラフィック(バイト)",
|
||
"descTRAFFIC_TOTAL_BYTES": "合計トラフィック(バイト)",
|
||
"descUP": "アップロードトラフィック",
|
||
"descDOWN": "ダウンロードトラフィック",
|
||
"descSTATUS": "active / expired / disabled / depleted",
|
||
"descSTATUS_EMOJI": "絵文字で表したステータス(✅ ⏳ 🚫)",
|
||
"descDAYS_LEFT": "有効期限までの日数(無制限の場合は非表示)",
|
||
"descTIME_LEFT": "残り時間(例:12d 4h 30m)",
|
||
"descUSAGE_PERCENTAGE": "使用済みトラフィックの割合(無制限の場合は非表示)",
|
||
"descEXPIRE_DATE": "有効期限(YYYY-MM-DD)",
|
||
"descJALALI_EXPIRE_DATE": "ジャラーリー暦の有効期限(YYYY/MM/DD)",
|
||
"descEXPIRE_UNIX": "有効期限の Unix タイムスタンプ(秒)",
|
||
"descCREATED_UNIX": "作成時刻の Unix タイムスタンプ(秒)",
|
||
"descRESET_DAYS": "トラフィックリセット周期(日数)",
|
||
"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": "ヶ月",
|
||
"day": "日",
|
||
"days": "日間",
|
||
"hours": "時間",
|
||
"minutes": "分",
|
||
"unknown": "不明",
|
||
"inbounds": "インバウンド",
|
||
"clients": "クライアント",
|
||
"offline": "🔴 オフライン",
|
||
"online": "🟢 オンライン",
|
||
"commands": {
|
||
"unknown": "❗ 不明なコマンド",
|
||
"pleaseChoose": "👇 選択してください:\r\n",
|
||
"help": "🤖 このボットをご利用いただきありがとうございます!サーバーから特定のデータを提供し、必要な変更を行うことができます。\r\n\r\n",
|
||
"start": "👋 こんにちは、<i>{{ .Firstname }}</i>。\r\n",
|
||
"welcome": "🤖 <b>{{ .Hostname }}</b> 管理ボットへようこそ。\r\n",
|
||
"status": "✅ ボットは正常に動作しています!",
|
||
"usage": "❗ 検索するテキストを入力してください!",
|
||
"getID": "🆔 あなたのIDは:<code>{{ .ID }}</code>",
|
||
"helpAdminCommands": "Xray Coreを再起動するには:\r\n<code>/restart</code>\r\n\r\nクライアントの電子メールを検索するには:\r\n<code>/usage [電子メール]</code>\r\n\r\nインバウンド(クライアントの統計情報を含む)を検索するには:\r\n<code>/inbound [備考]</code>\r\n\r\nTelegramチャットID:\r\n<code>/id</code>",
|
||
"helpClientCommands": "統計情報を検索するには、次のコマンドを使用してください:\r\n<code>/usage [電子メール]</code>\r\n\r\nTelegramチャットID:\r\n<code>/id</code>",
|
||
"restartUsage": "\r\n\r\n<code>/restart</code>",
|
||
"restartSuccess": "✅ 操作成功!",
|
||
"restartFailed": "❗ 操作エラー。\r\n\r\n<code>エラー: {{ .Error }}</code>",
|
||
"xrayNotRunning": "❗ Xray Core は動作していません。",
|
||
"startDesc": "メインメニューを表示",
|
||
"helpDesc": "ボットのヘルプ",
|
||
"statusDesc": "ボットの状態を確認",
|
||
"idDesc": "Telegram IDを表示",
|
||
"usageDesc": "クライアント使用量を表示: /usage メール",
|
||
"inboundDesc": "インバウンド検索: /inbound 備考(管理者)",
|
||
"restartDesc": "Xray コアを再起動(管理者)",
|
||
"clearallDesc": "全クライアントのトラフィックをリセット(管理者)"
|
||
},
|
||
"messages": {
|
||
"cpuThreshold": "CPU使用率は{{ .Percent }}%、しきい値{{ .Threshold }}%を超えました",
|
||
"selectUserFailed": "❌ ユーザーの選択に失敗しました!",
|
||
"userSaved": "✅ Telegramユーザーが保存されました。",
|
||
"loginSuccess": "✅ パネルに正常にログインしました。\r\n",
|
||
"loginFailed": "❗️ パネルのログインに失敗しました。\r\n",
|
||
"2faFailed": "2FAエラー",
|
||
"report": "🕰 定期報告:{{ .RunTime }}\r\n",
|
||
"datetime": "⏰ 日時:{{ .DateTime }}\r\n",
|
||
"hostname": "💻 ホスト: {{ .Hostname }}\r\n",
|
||
"version": "🚀 X-UI バージョン:{{ .Version }}\r\n",
|
||
"xrayVersion": "📡 Xray バージョン: {{ .XrayVersion }}\r\n",
|
||
"ipv6": "🌐 IPv6: {{ .IPv6 }}\r\n",
|
||
"ipv4": "🌐 IPv4: {{ .IPv4 }}\r\n",
|
||
"ip": "🌐 IP: {{ .IP }}\r\n",
|
||
"ips": "🔢 IP:\r\n{{ .IPs }}\r\n",
|
||
"serverUpTime": "⏳ サーバー稼働時間:{{ .UpTime }} {{ .Unit }}\r\n",
|
||
"serverLoad": "📈 サーバー負荷:{{ .Load1 }}, {{ .Load2 }}, {{ .Load3 }}\r\n",
|
||
"serverMemory": "📋 RAM: {{ .Current }}/{{ .Total }}\r\n",
|
||
"tcpCount": "🔹 TCP: {{ .Count }}\r\n",
|
||
"udpCount": "🔸 UDP: {{ .Count }}\r\n",
|
||
"traffic": "🚦 トラフィック:{{ .Total }} (↑{{ .Upload }},↓{{ .Download }})\r\n",
|
||
"xrayStatus": "ℹ️ ステータス: {{ .State }}\r\n",
|
||
"username": "👤 ユーザー名:{{ .Username }}\r\n",
|
||
"reason": "❗️ 理由:{{ .Reason }}\r\n",
|
||
"time": "⏰ 時間:{{ .Time }}\r\n",
|
||
"inbound": "📍 インバウンド: {{ .Remark }}\r\n",
|
||
"port": "🔌 ポート: {{ .Port }}\r\n",
|
||
"expire": "📅 有効期限:{{ .Time }}\r\n",
|
||
"expireIn": "📅 残り時間:{{ .Time }}\r\n",
|
||
"active": "💡 有効:{{ .Enable }}\r\n",
|
||
"enabled": "🚨 有効化済み:{{ .Enable }}\r\n",
|
||
"online": "🌐 接続ステータス:{{ .Status }}\r\n",
|
||
"lastOnline": "🔙 最終オンライン: {{ .Time }}\r\n",
|
||
"email": "📧 メール: {{ .Email }}\r\n",
|
||
"upload": "🔼 アップロード: ↑{{ .Upload }}\r\n",
|
||
"download": "🔽 ダウンロード: ↓{{ .Download }}\r\n",
|
||
"total": "📊 合計: ↑↓{{ .UpDown }} / {{ .Total }}\r\n",
|
||
"TGUser": "👤 Telegramユーザー:{{ .TelegramID }}\r\n",
|
||
"exhaustedMsg": "🚨 消耗済みの {{ .Type }}:\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_id": "🔑📥 IDが更新されました。",
|
||
"received_password": "🔑📥 パスワードが更新されました。",
|
||
"received_email": "📧📥 メールが更新されました。",
|
||
"received_comment": "💬📥 コメントが更新されました。",
|
||
"id_prompt": "🔑 デフォルトID: {{ .ClientId }}\n\nIDを入力してください。",
|
||
"pass_prompt": "🔑 デフォルトパスワード: {{ .ClientPassword }}\n\nパスワードを入力してください。",
|
||
"email_prompt": "📧 デフォルトメール: {{ .ClientEmail }}\n\nメールを入力してください。",
|
||
"comment_prompt": "💬 デフォルトコメント: {{ .ClientComment }}\n\nコメントを入力してください。",
|
||
"inbound_client_data_id": "🔄 インバウンド: {{ .InboundRemark }}\n\n🔑 ID: {{ .ClientId }}\n📧 メール: {{ .ClientEmail }}\n📊 トラフィック: {{ .ClientTraffic }}\n📅 有効期限: {{ .ClientExp }}\n🌐 IP制限: {{ .IpLimit }}\n💬 コメント: {{ .ClientComment }}\n\n今すぐこのクライアントをインバウンドに追加できます!",
|
||
"inbound_client_data_pass": "🔄 インバウンド: {{ .InboundRemark }}\n\n🔑 パスワード: {{ .ClientPass }}\n📧 メール: {{ .ClientEmail }}\n📊 トラフィック: {{ .ClientTraffic }}\n📅 有効期限: {{ .ClientExp }}\n🌐 IP制限: {{ .IpLimit }}\n💬 コメント: {{ .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 }}ms",
|
||
"eventXrayCrash": "Xrayがクラッシュしました",
|
||
"eventXrayCrashError": "エラー: {{ .Error }}",
|
||
"eventNodeDown": "ノード {{ .Name }} がダウンしています",
|
||
"eventNodeUp": "ノード {{ .Name }} が復旧しました",
|
||
"eventCPUHigh": "CPU高負荷",
|
||
"eventCPUHighDetail": "CPU: {{ .Detail }}",
|
||
"eventLoginFallback": "{{ .Source }} からのログインに失敗しました",
|
||
"memoryThreshold": "メモリ使用率 {{ .Percent }}% がしきい値 {{ .Threshold }}% を超えました"
|
||
},
|
||
"buttons": {
|
||
"closeKeyboard": "❌ キーボードを閉じる",
|
||
"cancel": "❌ キャンセル",
|
||
"cancelReset": "❌ リセットをキャンセル",
|
||
"cancelIpLimit": "❌ IP制限をキャンセル",
|
||
"confirmResetTraffic": "✅ トラフィックをリセットしますか?",
|
||
"confirmClearIps": "✅ IPをクリアしますか?",
|
||
"confirmRemoveTGUser": "✅ Telegramユーザーを削除しますか?",
|
||
"confirmToggle": "✅ ユーザーを有効/無効にしますか?",
|
||
"dbBackup": "データベースバックアップを取得",
|
||
"serverUsage": "サーバーの使用状況",
|
||
"getInbounds": "インバウンド情報を取得",
|
||
"depleteSoon": "間もなく消耗",
|
||
"clientUsage": "使用状況を取得",
|
||
"onlines": "オンラインクライアント",
|
||
"commands": "コマンド",
|
||
"refresh": "🔄 更新",
|
||
"clearIPs": "❌ IPをクリア",
|
||
"removeTGUser": "❌ Telegramユーザーを削除",
|
||
"selectTGUser": "👤 Telegramユーザーを選択",
|
||
"selectOneTGUser": "👤 1人のTelegramユーザーを選択:",
|
||
"resetTraffic": "📈 トラフィックをリセット",
|
||
"resetExpire": "📅 有効期限を変更",
|
||
"ipLog": "🔢 IPログ",
|
||
"ipLimit": "🔢 IP制限",
|
||
"setTGUser": "👤 Telegramユーザーを設定",
|
||
"toggle": "🔘 有効/無効",
|
||
"custom": "🔢 カスタム",
|
||
"confirmNumber": "✅ 確認: {{ .Num }}",
|
||
"confirmNumberAdd": "✅ 追加を確認:{{ .Num }}",
|
||
"limitTraffic": "🚧 トラフィック制限",
|
||
"getBanLogs": "禁止ログ",
|
||
"allClients": "すべてのクライアント",
|
||
"addClient": "クライアントを追加",
|
||
"submitDisable": "無効として送信 ☑️",
|
||
"submitEnable": "有効として送信 ✅",
|
||
"use_default": "🏷️ デフォルトを使用",
|
||
"change_id": "⚙️🔑 ID",
|
||
"change_password": "⚙️🔑 パスワード",
|
||
"change_email": "⚙️📧 メール",
|
||
"change_comment": "⚙️💬 コメント",
|
||
"change_flow": "⚙️🚦 Flow",
|
||
"ResetAllTraffics": "すべてのトラフィックをリセット",
|
||
"SortedTrafficUsageReport": "ソートされたトラフィック使用レポート"
|
||
},
|
||
"answers": {
|
||
"successfulOperation": "✅ 成功!",
|
||
"errorOperation": "❗ 操作エラー。",
|
||
"getInboundsFailed": "❌ インバウンド情報の取得に失敗しました。",
|
||
"getClientsFailed": "❌ クライアントの取得に失敗しました。",
|
||
"canceled": "❌ {{ .Email }}:操作がキャンセルされました。",
|
||
"clientRefreshSuccess": "✅ {{ .Email }}:クライアントが正常に更新されました。",
|
||
"IpRefreshSuccess": "✅ {{ .Email }}:IPが正常に更新されました。",
|
||
"TGIdRefreshSuccess": "✅ {{ .Email }}:クライアントのTelegramユーザーが正常に更新されました。",
|
||
"resetTrafficSuccess": "✅ {{ .Email }}:トラフィックが正常にリセットされました。",
|
||
"setTrafficLimitSuccess": "✅ {{ .Email }}:トラフィック制限が正常に保存されました。",
|
||
"expireResetSuccess": "✅ {{ .Email }}:有効期限の日数が正常にリセットされました。",
|
||
"resetIpSuccess": "✅ {{ .Email }}:IP制限数が正常に保存されました:{{ .Count }}。",
|
||
"clearIpSuccess": "✅ {{ .Email }}:IPが正常にクリアされました。",
|
||
"getIpLog": "✅ {{ .Email }}:IPログの取得。",
|
||
"getUserInfo": "✅ {{ .Email }}:Telegramユーザー情報の取得。",
|
||
"removedTGUserSuccess": "✅ {{ .Email }}:Telegramユーザーが正常に削除されました。",
|
||
"enableSuccess": "✅ {{ .Email }}:正常に有効化されました。",
|
||
"disableSuccess": "✅ {{ .Email }}:正常に無効化されました。",
|
||
"askToAddUserId": "設定が見つかりませんでした!\r\n管理者に問い合わせて、設定にTelegramユーザーのChatIDを使用してください。\r\n\r\nあなたのユーザーChatID:<code>{{ .TgUserID }}</code>",
|
||
"chooseClient": "インバウンド {{ .Inbound }} のクライアントを選択",
|
||
"chooseInbound": "インバウンドを選択"
|
||
}
|
||
},
|
||
"email": {
|
||
"subjectOutboundDown": "アウトバウンド {{ .Tag }} がダウンしています",
|
||
"subjectOutboundUp": "アウトバウンド {{ .Tag }} が復旧しました",
|
||
"subjectXrayCrash": "Xrayがクラッシュしました",
|
||
"subjectCPUHigh": "CPU高負荷",
|
||
"subjectLoginSuccess": "ログイン成功",
|
||
"subjectLoginFailed": "ログイン失敗",
|
||
"titleOutboundDown": "アウトバウンド ダウン",
|
||
"titleOutboundUp": "アウトバウンド 復旧",
|
||
"titleXrayCrash": "Xrayがクラッシュしました",
|
||
"titleCPUHigh": "CPU高負荷",
|
||
"titleLoginSuccess": "ログイン成功",
|
||
"titleLoginFailed": "ログイン失敗",
|
||
"labelStatus": "ステータス",
|
||
"labelOutbound": "アウトバウンド",
|
||
"labelNode": "ノード",
|
||
"labelError": "エラー",
|
||
"labelDelay": "遅延",
|
||
"labelDetail": "詳細",
|
||
"labelUsername": "ユーザー名",
|
||
"labelIP": "IP",
|
||
"labelReason": "理由",
|
||
"labelSource": "送信元",
|
||
"labelTime": "時刻",
|
||
"statusCrashed": "クラッシュ",
|
||
"statusRunning": "実行中",
|
||
"statusHigh": "高負荷",
|
||
"statusSuccess": "成功",
|
||
"statusFailed": "失敗",
|
||
"statusDown": "ダウン",
|
||
"statusUp": "アップ"
|
||
}
|
||
}
|