mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-05-31 18:24:10 +00:00
* feat(clients): add shadow tables for first-class client promotion
Introduces three new GORM-backed tables (clients, client_inbounds,
inbound_fallback_children) and a populate-only seeder that backfills
them from each inbound's existing settings.clients JSON. Duplicate
emails across inbounds auto-merge under one client row, with each
field conflict logged. Existing services are unchanged and continue
reading from settings.clients — this commit is groundwork only.
* feat(clients): make clients+client_inbounds the runtime source of truth
Adds ClientService.SyncInbound that reconciles the new tables from
each inbound's clients list whenever existing service paths mutate
settings.clients. Wires it into AddInbound, UpdateInbound,
AddInboundClient, UpdateInboundClient, DelInboundClient,
DelInboundClientByEmail, DelDepletedClients, autoRenewClients, and
the timestamp-backfill path in adjustTraffics, plus DetachInbound
on DelInbound.
GetXrayConfig now builds settings.clients from the new tables before
writing config.json, and getInboundsBySubId joins through them
instead of JSON_EACH on settings JSON. Live Xray config and
subscription endpoints are now driven by the relational view;
settings.clients JSON stays in step as a side effect of every write.
* feat(clients): add top-level Clients tab and CRUD API
Adds /panel/api/clients endpoints (list, get, add, update, del,
attach, detach) backed by ClientService methods that orchestrate
the per-inbound Add/Update/Del flows so a single client row is
created once and attached to many inbounds in one operation.
The frontend gains a dedicated Clients page (frontend/clients.html
+ src/pages/clients/) with an AntD table, multi-inbound attach
modal, and full CRUD. Axios interceptor learns to honour
Content-Type: application/json so the JSON endpoints work
alongside the legacy form-encoded ones.
The legacy per-inbound client modal stays untouched in this PR —
both flows now write to the same source of truth.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(inbounds): add Port-with-Fallback inbound type
Adds a new "portfallback" protocol that emits as a VLESS-TLS inbound
under the hood but is paired with a sidecar table of child inbounds.
Panel auto-builds settings.fallbacks at Xray-config-gen time from the
sidecar — each child's listen+port becomes the fallback dest, with
SNI/ALPN/path/xver match criteria pulled from the row. No more typing
loopback ports by hand or keeping settings.fallbacks in sync.
Backend: new FallbackService (Get/SetChildren, BuildFallbacksJSON);
two new routes (GET/POST /panel/api/inbounds/:id/fallbackChildren);
xray.GetXrayConfig injects fallbacks for PortFallback inbounds; the
inbound model emits protocol="vless" so Xray accepts the config.
Frontend: PORTFALLBACK joins the protocol dropdown; selecting it
shows the standard VLESS controls plus a Fallback Children table
(inbound picker + per-row SNI/ALPN/path/xver). Children are loaded
on edit and replaced atomically on save.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(clients): add Reset Traffic, QR Code, Info actions + Online/Remaining columns
The Clients page table gains:
- Online column — green/grey tag driven by /panel/api/inbounds/onlines,
polled every 10s.
- Remaining column — bytes-remaining tag, coloured green/orange/red
against quota, purple infinity when unlimited.
- Action icons per row: QR, Info, Reset traffic, Edit, Delete.
ClientInfoModal shows the full client detail (uuid/password/auth,
traffic ↑/↓ + remaining + all-time, expiry absolute + relative,
attached inbounds chip list, online + last-online).
ClientQrModal fetches links for the client's subId via
/panel/api/inbounds/getSubLinks/:subId and renders each one through
the existing QrPanel component.
Reset Traffic confirms then calls the existing per-inbound endpoint
on the client's first attached inbound (the traffic row is keyed on
email globally, so any attached inbound resets the shared counter).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): expose Attached inbounds in edit mode
The multi-select was gated on add-only, so editing a client had no way
to change which inbounds it belonged to. The picker now shows in both
modes, and on submit the modal diffs the picked set against the
original attachedIds — additions go through the /attach endpoint,
removals through /detach, both after the field update lands so the
new attachments get the latest values.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): unbreak template parsing + stale i18n keys
- InboundFormModal: split the multi-line help string in the
PortFallback section onto one line — Vue's template parser was
bailing on Unterminated string constant because a single-quoted
literal spanned two lines inside a {{ }} interpolation.
- ClientInfoModal: t('disable') was missing at the root level, so
vue-i18n returned the key path literally. Use t('disabled') which
exists.
- Linter cleanup elsewhere: pages.client.* references renamed to
pages.clients.* to match the merged i18n block; whitespace
normalisation in a few unrelated Vue templates.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* 1
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(traffic): drop all-time traffic tracking
Removes the AllTime field from Inbound and ClientTraffic and migrates
existing DBs by dropping the all_time columns on startup. The counter
duplicated up+down without adding signal, and the per-event accumulator
ran on every traffic write.
Frontend: drop the All-time column from the inbound list and the
client-row table, the All-time row from the client info modal, and the
All-Time Total Usage tile from the inbounds summary card. The
allTimeTraffic/allTimeTrafficUsage i18n keys are removed across every
locale.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(clients): mobile cards, multi-select, bulk add
Adds the same row-card layout the inbounds page uses on mobile: the
table is suppressed under the mobile breakpoint and each client renders
as a compact card with a status dot, email, Info button, Enable switch,
and overflow menu. All the per-client detail (traffic, remaining,
expiry, attached inbounds, flow, created/updated, URL, subscription)
opens through the existing info modal.
Multi-select with bulk delete wires AntD row-selection on desktop and
a per-card checkbox on mobile; a Delete (N) button appears in the
toolbar when anything is selected.
Bulk add reuses the five email-generation modes from the inbound bulk
modal but takes a multi-inbound picker so one bulk run can attach to
several inbounds at once. Submits client-by-client through the
existing /panel/api/clients/add endpoint.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(inbounds): remove legacy per-inbound client UI
Now that clients live as first-class rows attached to one or many
inbounds, the per-inbound client UI on the inbounds page is dead
weight — every client action either has a global equivalent on the
Clients page or makes no sense in a many-to-many world.
Deletes ClientFormModal, ClientBulkModal, CopyClientsModal, and
ClientRowTable from inbounds/. Strips the matching emits, refs,
handlers, and dropdown menu items from InboundList and InboundsPage,
and removes the dead mobile expand-chevron state and the desktop
expanded-row plumbing that drove the inline client table.
The InboundFormModal Clients tab still works in add-mode (one inline
client at inbound creation) — that flow goes through ClientService.
SyncInbound on save and remains useful.
Fixes a stray "</a-dropdown>" left over by an earlier toolbar edit
in ClientsPage that broke the template parser.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(clients): add Delete depleted action
Mirrors the legacy delDepletedClients action that lived under the
inbounds page, but as a first-class /panel/api/clients/delDepleted
endpoint backed by ClientService. The new path goes through
ClientService.Delete for each depleted email, so the new clients +
client_inbounds + xray_client_traffic tables stay consistent.
Adds a danger-styled toolbar button on the Clients page (next to
Reset all client traffic) with a confirm dialog and a toast
reporting the deleted count.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(api): move every client-shaped endpoint off /inbounds onto /clients
After the multi-inbound client migration, client state belongs to the
client API surface, not the inbound one. Twelve routes that were
crammed under /panel/api/inbounds/* now live where they belong, under
/panel/api/clients/*.
Moved (route, handler, doc):
POST /clientIps/:email
POST /clearClientIps/:email
POST /onlines
POST /lastOnline
POST /updateClientTraffic/:email
POST /resetAllClientTraffics/:id
POST /delDepletedClients/:id
POST /:id/resetClientTraffic/:email
GET /getClientTraffics/:email
GET /getClientTrafficsById/:id
GET /getSubLinks/:subId
GET /getClientLinks/:id/:email
Their /clients/* counterparts are:
POST /clients/clientIps/:email
POST /clients/clearClientIps/:email
POST /clients/onlines
POST /clients/lastOnline
POST /clients/updateTraffic/:email
POST /clients/resetTraffic/:email (email-only, fans out)
GET /clients/traffic/:email
GET /clients/traffic/byId/:id
GET /clients/subLinks/:subId
GET /clients/links/:id/:email
per-inbound resetAllClientTraffics and delDepletedClients are dropped
entirely — the Clients page already exposes global Reset All Traffic
and Delete depleted actions, and per-inbound resets are meaningless
once a client can be attached to many inbounds.
ClientService.ResetTrafficByEmail is the new email-only reset path:
it looks up every inbound the client is attached to and pushes the
counter reset + Xray re-add through inboundService.ResetClientTraffic
for each one, so depleted users come back online instantly.
Frontend callers (ClientsPage, useClients, ClientQrModal,
ClientInfoModal, InboundInfoModal, InboundsPage, useInbounds) all
switched to the new paths. The Inbounds page drops its per-inbound
"Reset client traffic" and "Delete depleted clients" dropdown items —
users do those at the client level now. api-docs is rebuilt to match.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(service): switch tgbot + ldap callers to ClientService
Adds two thin helpers to ClientService (CreateOne, DetachByEmail) and
rewrites tgbot.SubmitAddClient and ldap_sync_job to call ClientService
directly. Removes the JSON-blob payloads (BuildJSONForProtocol output for
add, clientsToJSON/clientToJSON helpers) that callers previously fed to
InboundService.AddInboundClient/DelInboundClient.
ldap_sync_job.batchSetEnable now loops InboundService.SetClientEnableByEmail
per email instead of trying to coerce AddInboundClient into doing the
update — the old path would have failed duplicate-email validation for
existing clients anyway.
The legacy InboundService.AddInboundClient/UpdateInboundClient/
DelInboundClient methods stay in place; they are now only used internally
by ClientService Create/Update/Delete/Attach. Inlining + deleting them
follows in a separate commit.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(service): move all client mutation methods to ClientService
Moves the client mutation surface out of InboundService and into
ClientService. These methods all operate on a single client (identity
fields, traffic limits, expiry, ip limit, enable state, telegram tg id)
and didn't belong on the inbound aggregate.
Moved (12 methods): AddInboundClient, UpdateInboundClient, DelInboundClient,
DelInboundClientByEmail, checkEmailsExistForClients, SetClientTelegramUserID,
checkIsEnabledByEmail, ToggleClientEnableByEmail, SetClientEnableByEmail,
ResetClientIpLimitByEmail, ResetClientExpiryTimeByEmail,
ResetClientTrafficLimitByEmail.
Each method now takes an explicit *InboundService for the helpers that
legitimately stay on InboundService (GetInbound, GetClients, runtimeFor,
AddClientStat / UpdateClientStat / DelClientStat, DelClientIPs /
UpdateClientIPs, emailUsedByOtherInbounds, getAllEmailSubIDs,
GetClientInboundByEmail / GetClientInboundByTrafficID,
GetClientTrafficByEmail).
Stays on InboundService: ResetClientTrafficByEmail and
ResetClientTraffic(id, email) — these mutate xray_client_traffic rows,
not client identity, so they're inbound-side bookkeeping.
Callers updated: tgbot (6 calls), ldap_sync_job (1 call),
InboundService internal (writeBackClientSubID, CopyInboundClients,
AddInbound's email-uniqueness check), ClientService Create/Update/
Delete/Attach/Detach.
Also removes a dead resetAllClientTraffics controller handler whose
route was already gone after the previous /clients API migration.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(clients): finish migrating to ClientService + tidy IP routes
Two related cleanups in the new /clients surface:
1. Move ResetAllClientTraffics (bulk-reset of xray_client_traffic +
last_traffic_reset_time, with node-runtime propagation) from
InboundService to ClientService. PeriodicTrafficResetJob now holds
a clientService and calls
j.clientService.ResetAllClientTraffics(&j.inboundService, id).
The last client-mutation method on InboundService is gone.
2. Shorten redundantly-named routes/handlers under /panel/api/clients:
- /clientIps/:email -> /ips/:email (handler getIps)
- /clearClientIps/:email -> /clearIps/:email (handler clearIps)
The "client" prefix was redundant inside the clients namespace.
Frontend (InboundInfoModal) and api-docs updated to match.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(inbounds,clients): clean up inbound modal + enrich client modal
Inbound modal rework (InboundFormModal.vue + inbound.js):
- Drop the embedded Client subform in the Protocol tab. Multi-inbound
clients are managed exclusively from the Clients page now; a fresh
inbound is created with zero clients (settings constructors default
to []) and the user attaches clients afterwards.
- Hide the Protocol tab entirely when it has nothing to render
(VMESS, Trojan without fallbacks, Hysteria). Auto-switches active
tab to Basic when the tab disappears while focused.
- Move the Security section (Security selector + TLS block with certs
and ECH + Reality block) out of the Stream tab into its own
Security tab, sharing the canEnableStream gate.
Client modal additions (ClientFormModal.vue + ClientBulkAddModal.vue):
- Flow select (xtls-rprx-vision / -udp443) appears only when the
panel actually has a Vision-capable inbound (VLESS or PortFallback
on TCP with TLS or Reality). Hidden otherwise, and cleared when
it disappears.
- IP Limit input is disabled when the panel-level ipLimitEnable
setting is off, fetched into useClients alongside subSettings and
threaded through ClientsPage to both modals.
- Edit modal now shows an "IP Log" section listing IPs that have
connected with the client's credentials, with refresh and clear
buttons (calls the renamed /panel/api/clients/ips and /clearIps
endpoints).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(inbounds): drop manual Fallbacks UI from inbound modal
The PortFallback protocol type now covers the common
VLESS-master-plus-children case with auto-wired dests, so the manual
Fallbacks editor (showFallbacks block in the Protocol tab) is mostly
redundant. Removed:
- the v-if="showFallbacks" template block (SNI/ALPN/Path/dest/PROXY rows)
- the showFallbacks computed
- the addFallback / delFallback helpers
- the .fallbacks-header / .fallbacks-title styles
- the showFallbacks gate from hasProtocolTabContent (so Trojan-over-TCP
no longer shows an empty Protocol tab)
Power users who need a non-inbound fallback dest (nginx, static site)
can still author settings.fallbacks via the Advanced JSON tab.
* feat(clients,inbounds): move search/filter to Clients page + small fixes
Search/filter relocation:
- Remove the search/filter toolbar (search switch + filter radio +
protocol/node selects + the visibleInbounds projection +
inboundsFilterState localStorage + filter CSS + the SearchOutlined/
FilterOutlined/ObjectUtil/Inbound imports it required) from
InboundList. The filters were all client-oriented buckets bolted
onto the inbound row.
- Add a search/filter toolbar to ClientsPage with the same shape:
switch between deep-text search and bucket filter (active /
deactive / depleted / expiring / online) + protocol filter that
matches clients attached to at least one inbound with the chosen
protocol. State persists in clientsFilterState localStorage.
filteredClients drives both the desktop table and the mobile card
list, and select-all / allSelected / someSelected only span the
visible subset.
- useClients now also fetches expireDiff and trafficDiff from
/panel/setting/defaultSettings (used to detect the expiring
bucket); ClientsPage threads them into the client-bucket helper.
Loose fixes folded in:
- Add Client: email field is auto-filled with a random handle on
open, matching uuid/subId/password/auth.
- Inbound clone: parse and reuse the source settings JSON (with
clients reset to []) instead of building a fresh defaulted
Settings, so VLESS Encryption/Decryption and other non-client
fields survive the clone.
- en-US.json: add the ipLog string used by the edit-client modal.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(clients): add Reverse tag field for VLESS-attached clients
Mirrors the Flow field's pattern: a Reverse tag input appears in the
Add/Edit Client modal whenever at least one selected inbound is VLESS
or PortFallback. The value rides over the wire as
client.reverse = { tag: '...' } so it lands directly in model.Client's
*ClientReverse field; an empty value omits the reverse key entirely.
On edit the field is hydrated from props.client.reverse?.tag, and the
showReverseTag watcher clears the field if the user drops the last
VLESS-like inbound from the selection.
* fix(xray): emit only protocol-relevant fields per client entry
The Xray config synthesizer was writing every identifier field (id,
password, flow, auth, security/method, reverse) on every client entry
regardless of the inbound's protocol. Xray ignores unknown fields, so
the config worked, but it diverged from the spec and leaked secrets
across protocols when one client was attached to multiple inbounds —
a VLESS inbound's generated config carried the same client's Trojan
password and Hysteria auth alongside its uuid.
Switch on inbound.Protocol when building each entry:
- VLESS / PortFallback: id, flow, reverse
- VMess: id, security
- Trojan: password, flow
- Shadowsocks: password, method
- Hysteria / Hysteria2: auth
email is emitted for every protocol.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): restore auto-disable kick under new schema
disableInvalidClients still resolved (inbound_tag, email) pairs via
JSON_EACH(inbounds.settings.clients), which is empty after migrating
to the clients + client_inbounds tables. Result: xrayApi.RemoveUser
never ran for depleted clients, clients.enable stayed true so the UI
showed them as active, and only xray_client_traffic.enable got flipped
- making "Restart Xray After Auto Disable" only half-work.
Resolve the targets via a JOIN through the new schema, flip clients.enable
so the Clients page reflects the state, and drop the legacy JSON
write-back plus the subId cascade workaround (email is unique now).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(clients): live WebSocket updates + Ended status surfacing
ClientsPage now subscribes to traffic / client_stats / invalidate
WebSocket events instead of polling /onlines every 10s. Per-row
traffic counters refresh in place, online state stays current, and
list-level mutations elsewhere trigger a refresh.
The client roll-up summary moves from InboundsPage to ClientsPage
where it belongs, restructured into six labeled stat tiles
(Total / Online / Ended / Expiring / Disabled / Active) with email
popovers on the ones with issues.
Auto-disabled clients (traffic exhausted or expiry passed) now
classify as 'depleted' even though clients.enable=false, so they
show up under the Ended filter and render a red Ended tag instead
of looking indistinguishable from an operator-disabled row.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(nodes): per-node client roll-up and panel version
Added transient inboundCount / clientCount / onlineCount /
depletedCount fields to model.Node, populated by NodeService.GetAll
via aggregated queries (one join across inbounds + client_inbounds,
one over client_traffics intersected with the in-memory online
emails). The Nodes list renders these as colored chips on a new
"Clients" column so an operator can see at a glance how many users
each node carries and how many are currently online or depleted.
Also exposes the remote panel's version. The central panel adds
panelVersion to its /api/server/status payload (sourced from
config.GetVersion). Probe reads that field and persists it on the
node row, mirroring how xrayVersion already flows. NodesPage gets
a new column next to Xray Version, in both desktop and mobile
views, with English and Persian strings.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): stop node sync from resurrecting deleted clients
Several related issues around node-managed clients:
- Remote runtime: drop the per-inbound resetAllClientTraffics path
and point traffic/onlines/lastOnline fetches at the new
/panel/api/clients/* routes.
- Delete from master: always push the updated inbound to the node
even when the client was already disabled or depleted, so the
node actually loses the user instead of silently keeping it.
- setRemoteTraffic: mirror remote clients into the central tables
only on first discovery of a node inbound. Matched inbounds let
the master own the join table, so a stale snap can no longer
re-create a ClientRecord (and join row) for a client that was
just deleted on the master.
- ClientService.Delete: route through submitTrafficWrite so deletes
serialize with node traffic merges, and switch the final
ClientRecord delete to an explicit Where("id = ?") clause.
- setRemoteTraffic UNIQUE-constraint fix: use clause.OnConflict on
inserts and email-keyed UPDATEs for client_traffics, so mirroring
a snap doesn't trip the unique email index.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(clients): switch client API endpoints from id to email
All client-scoped routes now use the unique email as the path key
(get, update, del, attach, detach, links). Email is the stable,
protocol-independent identifier — UUIDs don't exist for trojan or
shadowsocks, and internal numeric ids leaked panel implementation
detail into the public API.
Removed the redundant /traffic/byId/:id endpoint (covered by
/traffic/:email) and collapsed /links/:id/:email into /links/:email,
which now returns links across every attached inbound for the client.
Frontend selection, bulk delete, and toggle state are now keyed by
email as well, dropping the id→email lookup workaround.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(server): move cached state and helpers into ServerService
ServerController had grown to hold its own status cache, version-list
TTL cache, history-bucket whitelist, and the loop that drove all three
— concerns that belong in the service layer. Pull them out:
- lastStatus + the @2s refresh become ServerService.RefreshStatus and
ServerService.LastStatus; the controller's cron now just orchestrates
the cross-service side effects (xrayMetrics sample, websocket broadcast).
- The 15-minute Xray-versions cache (with stale-on-error fallback) moves
into ServerService.GetXrayVersionsCached, collapsing the controller
handler to a single call.
- The freedom/blackhole outbound-tag walk used by /xraylogs becomes
ServerService.GetDefaultLogOutboundTags.
- The allowed-history-bucket whitelist moves to package-level
service.IsAllowedHistoryBucket, so both NodeController and
ServerController validate against the same list.
Net result: web/controller/server.go drops from 458 to 365 lines and
contains only HTTP wiring + presentation-y side effects.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* refactor(api): emit JSON-text columns as nested objects
Inbound, ClientRecord, and InboundClientIps store settings /
streamSettings / sniffing / reverse / ips as JSON-text in the DB. The
API was passing that text through verbatim, so every consumer had to
JSON.parse a string inside a string. Add MarshalJSON / UnmarshalJSON so
the wire format is a real nested object, while still accepting the
legacy escaped-string shape on write. Frontend dbinbound.js gets a
matching coerceInboundJsonField helper for the same dual-shape read
path, and inbound.js toJson stops emitting empty/placeholder fields
(externalProxy [], sniffing destOverride when disabled, etc.) so the
new normalised JSON stays terse. api-docs and the inbound-clone path
are updated to the new shape. Controller route lists are regrouped so
all GETs sit above POSTs.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): include inboundIds and traffic in /clients/list
ClientRecord got its own MarshalJSON in the previous commit, and
ClientWithAttachments embeds it to add inboundIds and traffic. Go
promotes the embedded MarshalJSON to the outer struct, so the encoder
was calling ClientRecord.MarshalJSON for the whole value and silently
dropping the extras. The frontend reads row.inboundIds / row.traffic
from /clients/list, so attached inbounds didn't render and newly added
clients looked like they hadn't saved. Add an explicit MarshalJSON on
ClientWithAttachments that splices the extras in.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): gate IP Log on ipLimitEnable + clean access-log dropdown
Legacy panel hid the IP Log section when access logging was off; the
Vue 3 migration left it gated on isEdit only, so the section showed
even when xray's access log was 'none' and nothing was being recorded.
Restore the ipLimitEnable gate on the edit modal's IP Log form-item.
While here, clean up the Xray Settings access-log dropdown: previously
two 'none' entries appeared (an empty value labelled with t('none') and
the literal 'none' from the options array). Drop the empty option for
access log (the literal 'none' covers it) and relabel the empty option
for error log / mask address to t('empty') so they're distinguishable.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(nodes): route per-client ops through node clients API + orphan sweep
Adds Runtime methods AddClient, UpdateUser, and DeleteUser so master
mutates clients on a node via /panel/api/clients/{add,update,del} rather
than pushing the whole inbound. The previous rt.UpdateInbound path made
the node DelInbound+AddInbound on every single-client change, briefly
cycling every other user on the same inbound.
DelInbound no longer filters by enable=true, so a disabled node inbound
actually gets removed from the node instead of being resurrected by the
next snap.
setRemoteTrafficLocked now sweeps any ClientRecord with zero
ClientInbound rows after SyncInbound rebuilds the attachments, which is
how a node-side delete propagates back to master instead of leaving a
detached ghost. ClientService.Delete tombstones the email first so a
snap arriving mid-delete can't re-create the record.
WebSocket broadcasts an "invalidate(clients)" message on every client
mutation so the Clients page refreshes without manual reload.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(balancers): allow fallback on all strategies + feed burstObservatory from random/roundRobin
Drops the random/roundRobin gate on the Fallback field in
BalancerFormModal so every strategy can pick a fallback outbound.
syncObservatories now feeds burstObservatory from leastLoad +
random + roundRobin balancers (was leastLoad only), matching how
leastPing feeds observatory.
Fix the JsonEditor "Unexpected end of JSON input" that appeared
when switching a balancer between leastPing and another strategy:
the obsView watcher was gated on showObsEditor (a boolean OR of
the two flags) and missed the case where one observatory
swapped for the other in the same tick. Watch the individual
flags instead so obsView flips to the surviving editor and the
getter stops pointing at a deleted key.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(inbounds): use sortedInbounds for mobile empty-state check
InboundList referenced an undefined visibleInbounds in the mobile
card list's empty-state guard, throwing "Cannot read properties of
undefined (reading 'length')" and breaking the entire mobile render.
* feat(clients): sortable table columns
Adds the same sortState / sortableCol / sortFns pattern InboundList
uses, wrapping filteredClients in sortedClients so sort composes with
the existing search/filter pipeline. Sortable: enable, email,
inboundIds (attachment count), traffic, remaining, expiryTime;
actions and online stay unsorted.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(shadowsocks): generate valid ss2022 keys and per-client method for legacy ciphers
The Add Client flow on shadowsocks inbounds was producing xray configs
that failed to start:
- 2022-blake3-* ciphers need a base64-encoded key of an exact byte
length per cipher. fillProtocolDefaults was assigning a uuid-style
string, which xray rejects as "bad key". Now the password is
generated (or replaced if invalid) via random.Base64Bytes(n) sized
to the chosen cipher.
- Legacy ciphers (aes-256-gcm, chacha20-*, xchacha20-*) require a
per-client method field in multi-user mode; model.Client has no
Method, so settings.clients was stored without one and xray failed
with "unsupported cipher method:". applyShadowsocksClientMethod
now injects the top-level method into each client on add/update,
and healShadowsocksClientMethods backfills it at xray-config-build
time so existing inbounds heal on the next start.
- xray/api.go ssCipherType switch was missing aes-256-gcm, which
fell through to ss2022 path.
- SSMethods dropdown now offers aes-256-gcm.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): preserve ClientRecord on inbound delete + filter Attached inbounds to multi-client protocols
Replace the global orphan sweep in setRemoteTrafficLocked with a
per-inbound diff cleanup: only delete a ClientRecord whose email
disappeared from a snap-tracked inbound (i.e. a node-side delete).
Inbounds that vanished entirely from the snap (e.g. admin deleted
the inbound on master) aren't iterated, so a client whose last
attachment came from that inbound is now left alone instead of
being deleted alongside the inbound.
ClientFormModal and ClientBulkAddModal now filter the Attached
inbounds dropdown to protocols that actually support multiple
clients: shadowsocks, vless, vmess, trojan, hysteria, hysteria2,
and portfallback (which routes through VLESS settings).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): make empty-state text readable on dark/ultra themes
The "No clients yet" empty state had a hardcoded black color
(rgba(0,0,0,0.45)) that vanished against the dark backgrounds.
Drop the inline color, let it inherit from the AntD theme, and
fade with opacity like the mobile card empty state already does.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(clients): client-first tgbot add flow, tgId field, lightweight inbound options
- tgbot: drop legacy per-protocol Add Client UI in favour of a client-first
multi-inbound flow. New BuildClientDraftMessage / getInboundsAttachPicker
let an admin pick one or more inbounds and submit a single client; per-
protocol secrets are now generated server-side via fillProtocolDefaults.
Drops awaiting_id/awaiting_password_tr/awaiting_password_sh state cases
and add_client_ch_default_id/pass_tr/pass_sh/flow callbacks. Adds a
setTGUser button + awaiting_tg_id state so the bot can set Client.TgID
during Add.
- clients UI: add Telegram user ID input to ClientFormModal (0 = none).
Hide IP Limit field entirely when ipLimitEnable is off — disabled fields
still take layout space, this collapses Auth(Hysteria) to full width.
- inbounds API: new GET /panel/api/inbounds/options that returns just
{id, remark, protocol, port, tlsFlowCapable}. Used by the clients page
pickers so the dropdown payload stays small on panels with thousands of
clients (drops settings JSON, clientStats, streamSettings). Server-side
TlsFlowCapable mirrors Inbound.canEnableTlsFlow so the modal no longer
needs to parse streamSettings client-side.
- clientInfoMsg now shows attached inbound remarks, and getInboundUsages
reports the attached client count per inbound.
- api-docs: document the new /options endpoint and add tgId / flow to the
clients add/update bodies.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(inbounds): keep Node column visible for node-attached inbounds
The Node column was bound to hasActiveNode, so disabling every node hid
the column even when inbounds were still attached to those nodes — the
admin lost the visual cue that those inbounds belonged to a node and
would come back when it was re-enabled. Combine hasActiveNode with a
new hasNodeAttachedInbound check (any dbInbound with nodeId != null) so
the column survives node-disable.
* fix(api-docs): accept functional-component icons in EndpointSection
AntD-Vue icons (SafetyCertificateOutlined, etc.) are functional
components, so the icon prop's type: Object validator was rejecting
them with a "Expected Object, got Function" warning at runtime.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* test: cover crypto, random, netsafe, sub helpers, xray equals, websocket hub, node service
Adds ~110 unit tests across previously untested packages. Focus on
pure-logic and concurrency surfaces where regressions would silently
affect users:
- util/crypto, util/random: password hashing round-trip, ss2022 key
generation, alphabet/length invariants.
- util/netsafe: IsBlockedIP edge cases, NormalizeHost validation,
SSRF guard with AllowPrivate context bypass.
- util/common, util/json_util: traffic formatter, Combine nil-skip,
RawMessage empty-as-null and copy-on-unmarshal.
- sub: splitLinkLines, searchKey/searchHost, kcp share fields,
finalmask normalization, buildVmessLink round-trip.
- xray: Config.Equals and InboundConfig.Equals field-by-field,
getRequiredUserString/getOptionalUserString type checks.
- web/websocket: hub registration, throttling, slow-client eviction,
nil-receiver safety, concurrent register/unregister.
- web/service: NodeService.normalize validation, normalizeBasePath,
HeartbeatPatch.ToUI mapping.
- web/job: atomicBool concurrent set/takeAndReset semantics.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* i18n(clients): replace English fallbacks with proper translation keys
Pulls every hard-coded English label/title in the Clients page and its
four modals through the i18n layer so localized panels stop leaking
English. New keys live under pages.clients (auth, hysteriaAuth, uuid,
flow, flowNone, reverseTag, reverseTagPlaceholder, telegramId,
telegramIdPlaceholder, created, updated, ipLimit) plus refresh at the
root and toasts.bulkDeletedMixed / bulkCreatedMixed for partial-failure
toasts. Also switches the add-client modal's primary button from "Add"
to "Create" for consistency with other create flows.
The bulk-add Random/Random+Prefix/... email-method options stay
hard-coded by request - they're identifier-shaped strings.
* i18n: backfill 99 missing keys across all 12 non-English locales
Brings every translation file up to parity with en-US.json so the
Clients page, the fallback-children inbound section, the new refresh
verb, the Nodes panel-version label and a handful of older holes stop
falling through to the English fallback. New strings span:
- pages.clients.* (labels, confirmations, toasts, emailMethods)
- pages.inbounds.portFallback.* (Reality fallback inbound section)
- pages.nodes.panelVersion, menu.clients, refresh
Technical identifiers (Auth, UUID, Flow, Reverse tag) are intentionally
left untranslated since they correspond to xray-core field names.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* i18n: drop stale pages.client block duplicated in every non-English locale
Every non-English locale carried a pages.client (singular) section with
30 entries that duplicated pages.clients (plural). The plural namespace
is what the Vue code actually consumes; the singular one was dead
weight from an older rename that never got cleaned up in the
non-English files. Removing it brings every locale to exactly 984
keys, matching en-US.json.
* chore: apply modernize analyzer fixes across codebase
Mechanical replacements suggested by golang.org/x/tools/.../modernize:
strings.Cut/CutPrefix/SplitSeq, slices.Contains, maps.Copy, min(),
range-over-int, new(expr), strings.Builder for hot += loops,
reflect.TypeFor[T](), sync.WaitGroup.Go(), drop legacy //+build lines.
* feat(database): add PostgreSQL as an optional backend alongside SQLite
Lets operators with large client counts or multi-node setups pick PostgreSQL
at install time without breaking the existing SQLite default. Backend is
selected at runtime via XUI_DB_TYPE/XUI_DB_DSN, a small dialect layer keeps
the five JSON_EXTRACT/JSON_EACH queries portable, and a new `x-ui migrate-db`
subcommand copies SQLite data into PostgreSQL in FK-aware order.
* fix(inbounds): gate node selector to multi-node-capable protocols
Hide the Deploy-To selector and clear nodeId when switching to a
protocol that can't run on a remote node. Also:
- subs: return 404 (not 400) when subId matches no inbounds, so VPN
clients distinguish "deleted/unknown" from a server error
- hysteria link gen: use the inbound's resolved address so node-managed
inbounds advertise the node host instead of the central panel
- shadowsocks: default network to 'tcp' (udp was causing issues for some
clients on first-create)
- vite dev proxy: rewrite migrated-route bypass against the live base
path instead of a hardcoded single-segment regex
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(clients): bulk add/delete correctness + perf, working pagination, delayed-start in form
Bulk add/delete were serial on the frontend (one toast per call, N round-trips)
and the backend race exposed by parallelizing them lost client attachments and
hit UNIQUE constraint failed on client_inbounds. The single add/edit modal also
had no Start-After-First-Use option, and the table never showed the delayed
duration.
Backend (web/service/client.go):
- Per-inbound mutex on Add/Update/Del InboundClient so concurrent writers on
the same inbound don't lose the read-modify-write of settings JSON.
- SyncInbound skips create+join when the email is tombstoned so a concurrent
maintenance pass (adjustTraffics, autoRenewClients, markClientsDisabledIn-
Settings) that did a stale RMW can't resurrect a just-deleted client with a
fresh id.
- compactOrphans sweeps settings.clients entries whose ClientRecord no longer
exists, applied in Add/DelInboundClient + DelInboundClientByEmail so each
user-initiated mutation self-heals the inbound's settings.
- DelInboundClient uses Pluck instead of First for the stats lookup so a
missing row doesn't abort the delete with a noisy ErrRecordNotFound log.
Frontend:
- HttpUtil.{get,post} accept a silent option that suppresses the auto-toast.
- ClientBulkAddModal fires creates in parallel + silent + one summary toast.
- useClients.removeMany runs deletes in parallel + silent and refreshes once;
ClientsPage bulk delete uses it and shows one aggregate toast.
- useClients.applyInvalidate debounces 200 ms so the burst of N WebSocket
invalidate events from the backend collapses into a single refresh.
- ClientsPage pagination is reactive (paginationState ref + tablePagination
computed); onTableChange persists page-size and page changes.
- ClientFormModal gains a Start-After-First-Use switch + Duration days input
alongside the existing Expiry Date picker; on edit-mode open a negative
expiryTime is decoded back to delayed mode + days; on submit the payload
sends -86400000 * days or the absolute timestamp.
- ClientsPage table shows the delayed-start duration (blue tag Nd, tooltip
Start After First Use: Nd) instead of infinity.
- Telegram ID field in the form is hidden when /panel/setting/defaultSettings
reports tgBotEnable=false; Comment then fills the row.
- Form row 3 collapses UUID (span 12) + Total GB (span 8) + Limit IP (span 4)
when ipLimitEnable is on, else UUID + Total GB at 12/12.
- useInbounds.rollupClients counts only clients with a matching clientStats
row, so orphans in settings.clients no longer inflate the inbound's count.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(windows): clean shutdown, working panel restart, harden kernel32 load
Three Windows-specific issues addressed:
1. Orphaned xray-windows-amd64 after VS Code debugger stop. Delve's
"Stop" sends TerminateProcess to the Go binary, which is uncatchable
— our signal handlers never run, so xrayService.StopXray() is skipped
and xray is left dangling. Spawn xray as a child of a Job Object with
JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE so the OS kills xray when our
handle to the job is closed (which happens even on TerminateProcess).
Also trap os.Interrupt in main so Ctrl+C in the terminal runs the
graceful path.
2. /panel/setting/restartPanel logged "failed to send SIGHUP signal: not
supported by windows" because Windows can't deliver arbitrary signals.
Add a restart hook in web/global; main registers it to push SIGHUP
into its own signal channel, and RestartPanel calls the hook before
falling back to the (Unix-only) signal path. Same restart-loop code
runs in both cases.
3. util/sys/sys_windows.go now uses windows.NewLazySystemDLL so the
kernel32.dll resolve is pinned to %SystemRoot%\System32 (prevents
DLL hijacking by a planted DLL next to the binary). Local filetime
type replaced with windows.Filetime, and the unreliable
syscall.GetLastError() fallback replaced with a type assertion on the
errno captured at call time.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(sys): correct CPU/connection accounting on linux + darwin
util/sys/sys_linux.go:
- GetTCPCount/GetUDPCount were counting the column header row in
/proc/net/{tcp,udp}[6] as a connection, inflating the reported total
by 1 per non-empty file (so the panel status line always showed 2
more connections than actually existed). Replace getLinesNum +
safeGetLinesNum with a single bufio.Scanner-based countConnections
that skips the header.
- CPUPercentRaw now opens HostProc("stat") instead of a hardcoded
/proc/stat so HOST_PROC overrides apply, matching the connection
counters in the same file.
- Simplify CPU field unpacking: pad nums to 8 once instead of guarding
every assignment with a len check.
util/sys/sys_darwin.go:
- Fix swapped idle/intr indices on kern.cp_time. BSD CPUSTATES order
is user, nice, sys, intr, idle (CP_INTR=3, CP_IDLE=4) — gopsutil's
cpu_darwin_nocgo.go reads the same layout. The previous code used
out[3] as idle and out[4] as intr, so busy = total - dIdle was
actually subtracting interrupt time, making the panel report CPU
usage close to 100% on macOS regardless of actual load.
- Collapse the per-field delta math into a single loop.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(xray): rotate crash reports into log folder, prevent overwrites
writeCrashReport had two flaws: it wrote to the bin folder (alongside the
xray binary) which conflates artifacts, and the second-precision timestamp
meant a tight restart-loop crash burst overwrote prior reports. Write to
the log folder with nanosecond precision and keep the last 10 reports.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* revert(inbounds): drop unreleased portfallback protocol
The Port-with-Fallback inbound (commit 62fd9f9d) was confusing as a
standalone protocol — fallbacks belong on a regular VLESS/Trojan TCP-TLS
inbound, the way Xray models them natively. Rip out the entire feature
cleanly (no migration needed since it was never released): protocol
constant, fallback children DB table, FallbackService, 2 API endpoints,
all UI rows, related translations and api-docs. A native fallback flow
attached to VLESS/Trojan TCP-TLS/Reality will land in a follow-up commit.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* feat(inbounds): native fallbacks on VLESS/Trojan TCP-TLS, with working child links
A VLESS or Trojan inbound on TCP with TLS or Reality can now act as a
fallback master: pick existing inbounds as children and the panel auto-
fills the SNI / ALPN / path / xver routing fields from each child's
transport, auto-builds settings.fallbacks at config-gen time, and
rewrites the child's client-share link so it advertises the master's
reachable endpoint and TLS state instead of the child's loopback listen.
Layout matches the Xray All-in-One Nginx example: master at :443 with
clients + TLS, each child on 127.0.0.1 with its own transport+clients.
Order matters (Xray walks fallbacks top-to-bottom) — reorder via the
per-row up/down arrows. Path / SNI / ALPN are exposed under a per-row
Edit toggle for the rare cases where the auto-derivation needs
overriding; otherwise just pick a child and you're done.
Backend: new InboundFallback table + FallbackService (GetByMaster /
SetByMaster / GetParentForChild / BuildFallbacksJSON); two routes
(GET / POST /panel/api/inbounds/:id/fallbacks); xray.GetXrayConfig
injects settings.fallbacks for any VLESS/Trojan TCP-TLS/Reality
inbound; GetInbounds annotates each child with FallbackParent so the
frontend can rewrite links without an extra round-trip.
Link projection covers every emission path — clients-page QR/links,
per-inbound Get URL, raw subscription, sub-JSON, sub-Clash, and the
inbounds-page link/info/QR — via a shared projectThroughFallbackMaster
on the backend and a shared projectChildThroughMaster on the frontend
that both handle the panel-tracked relationship and the legacy
unix-socket (@vless-ws) convention.
Strings translated into all 12 non-English locales.
* docs: rewrite CONTRIBUTING with full local-dev setup
The prior three-line CONTRIBUTING left newcomers guessing at every
non-trivial step: which Go / Node versions, where xray comes from, why
the panel goes blank when XUI_DEBUG=true is flipped on, how the Vue
multi-page setup is wired, what to do on Windows when go build trips
on the CGo SQLite driver.
Now covers prerequisites, MinGW-w64 install on Windows (niXman builds
or MSYS2), one-shot first-time setup, two frontend dev workflows with
the XUI_DEBUG asset-cache gotcha called out, the architecture and
conventions of the Vue side, a project-layout map, useful env vars,
and the PR checklist.
---------
1092 lines
No EOL
64 KiB
JSON
1092 lines
No EOL
64 KiB
JSON
{
|
||
"username": "Tên người dùng",
|
||
"password": "Mật khẩu",
|
||
"login": "Đăng nhập",
|
||
"confirm": "Xác nhận",
|
||
"cancel": "Hủy bỏ",
|
||
"close": "Đóng",
|
||
"save": "Lưu",
|
||
"logout": "Đăng xuất",
|
||
"create": "Tạo",
|
||
"update": "Cập nhật",
|
||
"copy": "Sao chép",
|
||
"copied": "Đã sao chép",
|
||
"download": "Tải xuống",
|
||
"remark": "Ghi chú",
|
||
"enable": "Kích hoạt",
|
||
"protocol": "Giao thức",
|
||
"search": "Tìm kiếm",
|
||
"filter": "Bộ lọc",
|
||
"loading": "Đang tải",
|
||
"refresh": "Làm mới",
|
||
"clear": "Xóa",
|
||
"second": "Giây",
|
||
"minute": "Phút",
|
||
"hour": "Giờ",
|
||
"day": "Ngày",
|
||
"check": "Kiểm tra",
|
||
"indefinite": "Không xác định",
|
||
"unlimited": "Không giới hạn",
|
||
"none": "None",
|
||
"qrCode": "Mã QR",
|
||
"info": "Thông tin thêm",
|
||
"edit": "Chỉnh sửa",
|
||
"delete": "Xóa",
|
||
"reset": "Đặt lại",
|
||
"noData": "Không có dữ liệu.",
|
||
"copySuccess": "Đã sao chép thành công",
|
||
"sure": "Chắc chắn",
|
||
"encryption": "Mã hóa",
|
||
"useIPv4ForHost": "Sử dụng IPv4 cho máy chủ",
|
||
"transmission": "Truyền tải",
|
||
"host": "Máy chủ",
|
||
"path": "Đường dẫn",
|
||
"camouflage": "Ngụy trang",
|
||
"status": "Trạng thái",
|
||
"enabled": "Đã kích hoạt",
|
||
"disabled": "Đã tắt",
|
||
"depleted": "Depleted",
|
||
"depletingSoon": "Depleting...",
|
||
"offline": "Ngoại tuyến",
|
||
"online": "Trực tuyến",
|
||
"domainName": "Tên miền",
|
||
"monitor": "Listening IP",
|
||
"certificate": "Chứng chỉ số",
|
||
"fail": "Thất bại",
|
||
"comment": "Bình luận",
|
||
"success": "Thành công",
|
||
"lastOnline": "Lần online gần nhất",
|
||
"getVersion": "Lấy phiên bản",
|
||
"install": "Cài đặt",
|
||
"clients": "Các khách hàng",
|
||
"usage": "Sử dụng",
|
||
"twoFactorCode": "Mã",
|
||
"remained": "Còn lại",
|
||
"security": "Bảo vệ",
|
||
"secAlertTitle": "Cảnh báo an ninh-Tiếng Việt by Ohoang7",
|
||
"secAlertSsl": "Kết nối này không an toàn; Vui lòng không nhập thông tin nhạy cảm cho đến khi TLS được kích hoạt để bảo vệ dữ liệu của Bạn",
|
||
"secAlertConf": "Một số cài đặt có thể dễ bị tấn công. Đề xuất tăng cường các giao thức bảo mật để ngăn chặn các vi phạm tiềm ẩn.",
|
||
"secAlertSSL": "Bảng điều khiển thiếu kết nối an toàn. Vui lòng cài đặt chứng chỉ TLS để bảo vệ dữ liệu.",
|
||
"secAlertPanelPort": "Cổng mặc định của bảng điều khiển có thể dễ bị tấn công. Vui lòng cấu hình một cổng ngẫu nhiên hoặc cụ thể.",
|
||
"secAlertPanelURI": "Đường dẫn URI mặc định của bảng điều khiển không an toàn. Vui lòng cấu hình một đường dẫn URI phức tạp.",
|
||
"secAlertSubURI": "Đường dẫn URI mặc định của đăng ký không an toàn. Vui lòng cấu hình một đường dẫn URI phức tạp.",
|
||
"secAlertSubJsonURI": "Đường dẫn URI JSON mặc định của đăng ký không an toàn. Vui lòng cấu hình một đường dẫn URI phức tạp.",
|
||
"emptyDnsDesc": "Không có máy chủ DNS nào được thêm.",
|
||
"emptyFakeDnsDesc": "Không có máy chủ Fake DNS nào được thêm.",
|
||
"emptyBalancersDesc": "Không có bộ cân bằng tải nào được thêm.",
|
||
"emptyReverseDesc": "Không có proxy ngược nào được thêm.",
|
||
"somethingWentWrong": "Đã xảy ra lỗi",
|
||
"subscription": {
|
||
"title": "Thông tin đăng ký",
|
||
"subId": "ID đăng ký",
|
||
"status": "Trạng thái",
|
||
"downloaded": "Đã tải xuống",
|
||
"uploaded": "Đã tải lên",
|
||
"expiry": "Hết hạn",
|
||
"totalQuota": "Tổng hạn mức",
|
||
"individualLinks": "Liên kết riêng lẻ",
|
||
"active": "Hoạt động",
|
||
"inactive": "Không hoạt động",
|
||
"unlimited": "Không giới hạn",
|
||
"noExpiry": "Không hết hạn"
|
||
},
|
||
"menu": {
|
||
"theme": "Chủ đề",
|
||
"dark": "Tối",
|
||
"ultraDark": "Siêu tối",
|
||
"dashboard": "Trạng thái hệ thống",
|
||
"inbounds": "Đầu vào khách hàng",
|
||
"clients": "Khách hàng",
|
||
"nodes": "Nút",
|
||
"settings": "Cài đặt bảng điều khiển",
|
||
"xray": "Cài đặt Xray",
|
||
"apiDocs": "Tài liệu API",
|
||
"logout": "Đăng xuất",
|
||
"link": "Quản lý"
|
||
},
|
||
"pages": {
|
||
"login": {
|
||
"hello": "Xin chào",
|
||
"title": "Chào mừng",
|
||
"loginAgain": "Thời hạn đăng nhập đã hết. Vui lòng đăng nhập lại.",
|
||
"toasts": {
|
||
"invalidFormData": "Dạng dữ liệu nhập không hợp lệ.",
|
||
"emptyUsername": "Vui lòng nhập tên người dùng.",
|
||
"emptyPassword": "Vui lòng nhập mật khẩu.",
|
||
"wrongUsernameOrPassword": "Tên người dùng, mật khẩu hoặc mã xác thực hai yếu tố không hợp lệ.",
|
||
"successLogin": "Bạn đã đăng nhập vào tài khoản thành công."
|
||
}
|
||
},
|
||
"index": {
|
||
"title": "Trạng thái hệ thống",
|
||
"cpu": "CPU",
|
||
"logicalProcessors": "Bộ xử lý logic",
|
||
"frequency": "Tần số",
|
||
"swap": "Swap",
|
||
"storage": "Lưu trữ",
|
||
"memory": "RAM",
|
||
"threads": "Luồng",
|
||
"xrayStatus": "Xray",
|
||
"stopXray": "Dừng lại",
|
||
"restartXray": "Khởi động lại",
|
||
"xraySwitch": "Phiên bản",
|
||
"xrayUpdates": "Cập nhật Xray",
|
||
"xraySwitchClick": "Chọn phiên bản mà bạn muốn chuyển đổi sang.",
|
||
"xraySwitchClickDesk": "Hãy lựa chọn thận trọng, vì các phiên bản cũ có thể không tương thích với các cấu hình hiện tại.",
|
||
"updatePanel": "Cập nhật Panel",
|
||
"panelUpdateDesc": "Điều này sẽ cập nhật 3X-UI lên bản phát hành mới nhất và khởi động lại dịch vụ panel.",
|
||
"currentPanelVersion": "Phiên bản panel hiện tại",
|
||
"latestPanelVersion": "Phiên bản panel mới nhất",
|
||
"panelUpToDate": "Panel đã được cập nhật",
|
||
"upToDate": "Đã cập nhật",
|
||
"xrayStatusUnknown": "Không xác định",
|
||
"xrayStatusRunning": "Đang chạy",
|
||
"xrayStatusStop": "Dừng",
|
||
"xrayStatusError": "Lỗi",
|
||
"xrayErrorPopoverTitle": "Đã xảy ra lỗi khi chạy Xray",
|
||
"operationHours": "Thời gian hoạt động",
|
||
"systemHistoryTitle": "Lịch sử hệ thống",
|
||
"charts": "Biểu đồ",
|
||
"xrayMetricsTitle": "Chỉ số Xray",
|
||
"xrayMetricsDisabled": "Điểm cuối chỉ số Xray chưa được cấu hình",
|
||
"xrayMetricsHint": "Thêm khối metrics cấp cao nhất vào cấu hình xray với tag là metrics_out và listen là 127.0.0.1:11111, sau đó khởi động lại xray.",
|
||
"xrayObservatoryEmpty": "Chưa có dữ liệu Observatory",
|
||
"xrayObservatoryHint": "Thêm khối observatory vào cấu hình xray liệt kê các tag outbound cần kiểm tra, sau đó khởi động lại xray.",
|
||
"xrayObservatoryTagPlaceholder": "Chọn outbound",
|
||
"xrayObservatoryAlive": "Hoạt động",
|
||
"xrayObservatoryDead": "Ngừng",
|
||
"xrayObservatoryLastSeen": "Lần cuối thấy",
|
||
"xrayObservatoryLastTry": "Lần thử cuối",
|
||
"trendLast2Min": "2 phút gần nhất",
|
||
"systemLoad": "Tải hệ thống",
|
||
"systemLoadDesc": "trung bình tải hệ thống trong 1, 5 và 15 phút qua",
|
||
"connectionCount": "Số lượng kết nối",
|
||
"ipAddresses": "Địa chỉ IP",
|
||
"toggleIpVisibility": "Chuyển đổi hiển thị IP",
|
||
"overallSpeed": "Tốc độ tổng thể",
|
||
"upload": "Tải lên",
|
||
"download": "Tải xuống",
|
||
"totalData": "Tổng dữ liệu",
|
||
"sent": "Đã gửi",
|
||
"received": "Đã nhận",
|
||
"documentation": "Tài liệu",
|
||
"xraySwitchVersionDialog": "Bạn có chắc chắn muốn thay đổi phiên bản Xray không?",
|
||
"xraySwitchVersionDialogDesc": "Hành động này sẽ thay đổi phiên bản Xray thành #version#.",
|
||
"xraySwitchVersionPopover": "Xray đã được cập nhật thành công",
|
||
"panelUpdateDialog": "Bạn có chắc muốn cập nhật panel không?",
|
||
"panelUpdateDialogDesc": "Điều này sẽ cập nhật 3X-UI lên #version# và khởi động lại dịch vụ panel.",
|
||
"panelUpdateCheckPopover": "Kiểm tra cập nhật panel thất bại",
|
||
"panelUpdateStartedPopover": "Bắt đầu cập nhật panel",
|
||
"geofileUpdateDialog": "Bạn có chắc chắn muốn cập nhật geofile không?",
|
||
"geofileUpdateDialogDesc": "Hành động này sẽ cập nhật tệp #filename#.",
|
||
"geofilesUpdateDialogDesc": "Thao tác này sẽ cập nhật tất cả các tập tin.",
|
||
"geofilesUpdateAll": "Cập nhật tất cả",
|
||
"geofileUpdatePopover": "Geofile đã được cập nhật thành công",
|
||
"customGeoTitle": "GeoSite / GeoIP tùy chỉnh",
|
||
"customGeoAdd": "Thêm",
|
||
"customGeoType": "Loại",
|
||
"customGeoAlias": "Bí danh",
|
||
"customGeoUrl": "URL",
|
||
"customGeoEnabled": "Bật",
|
||
"customGeoLastUpdated": "Cập nhật lần cuối",
|
||
"customGeoExtColumn": "Định tuyến (ext:…)",
|
||
"customGeoToastUpdateAll": "Đã cập nhật tất cả nguồn tùy chỉnh",
|
||
"customGeoActions": "Thao tác",
|
||
"customGeoEdit": "Sửa",
|
||
"customGeoDelete": "Xóa",
|
||
"customGeoDownload": "Cập nhật ngay",
|
||
"customGeoModalAdd": "Thêm geo tùy chỉnh",
|
||
"customGeoModalEdit": "Sửa geo tùy chỉnh",
|
||
"customGeoModalSave": "Lưu",
|
||
"customGeoDeleteConfirm": "Xóa nguồn geo tùy chỉnh này?",
|
||
"customGeoRoutingHint": "Trong quy tắc định tuyến dùng cột giá trị dạng ext:file.dat:tag (thay tag).",
|
||
"customGeoInvalidId": "ID tài nguyên không hợp lệ",
|
||
"customGeoAliasesError": "Không tải được bí danh geo tùy chỉnh",
|
||
"customGeoValidationAlias": "Bí danh chỉ gồm chữ thường, số, - và _",
|
||
"customGeoValidationUrl": "URL phải bắt đầu bằng http:// hoặc https://",
|
||
"customGeoAliasPlaceholder": "a-z 0-9 _ -",
|
||
"customGeoAliasLabelSuffix": " (tùy chỉnh)",
|
||
"customGeoToastList": "Danh sách geo tùy chỉnh",
|
||
"customGeoToastAdd": "Thêm geo tùy chỉnh",
|
||
"customGeoToastUpdate": "Cập nhật geo tùy chỉnh",
|
||
"customGeoToastDelete": "Đã xóa geofile tùy chỉnh “{{ .fileName }}”",
|
||
"customGeoToastDownload": "Đã cập nhật geofile “{{ .fileName }}”",
|
||
"customGeoErrInvalidType": "Loại phải là geosite hoặc geoip",
|
||
"customGeoErrAliasRequired": "Cần bí danh",
|
||
"customGeoErrAliasPattern": "Bí danh có ký tự không hợp lệ",
|
||
"customGeoErrAliasReserved": "Bí danh này được dành riêng",
|
||
"customGeoErrUrlRequired": "Cần URL",
|
||
"customGeoErrInvalidUrl": "URL không hợp lệ",
|
||
"customGeoErrUrlScheme": "URL phải dùng http hoặc https",
|
||
"customGeoErrUrlHost": "Máy chủ URL không hợp lệ",
|
||
"customGeoErrDuplicateAlias": "Bí danh này đã dùng cho loại này",
|
||
"customGeoErrNotFound": "Không tìm thấy nguồn geo tùy chỉnh",
|
||
"customGeoErrDownload": "Tải xuống thất bại",
|
||
"customGeoErrUpdateAllIncomplete": "Một hoặc nhiều nguồn geo tùy chỉnh không cập nhật được",
|
||
"customGeoEmpty": "Chưa có nguồn geo tùy chỉnh nào — nhấp Thêm để tạo",
|
||
"dontRefresh": "Đang tiến hành cài đặt, vui lòng không làm mới trang này.",
|
||
"logs": "Nhật ký",
|
||
"config": "Cấu hình",
|
||
"backup": "Sao lưu",
|
||
"backupTitle": "Sao lưu & Khôi phục",
|
||
"exportDatabase": "Sao lưu",
|
||
"exportDatabaseDesc": "Nhấp để tải xuống tệp .db chứa bản sao lưu cơ sở dữ liệu hiện tại của bạn vào thiết bị.",
|
||
"importDatabase": "Khôi phục",
|
||
"importDatabaseDesc": "Nhấp để chọn và tải lên tệp .db từ thiết bị của bạn để khôi phục cơ sở dữ liệu từ bản sao lưu.",
|
||
"importDatabaseSuccess": "Đã nhập cơ sở dữ liệu thành công",
|
||
"importDatabaseError": "Lỗi xảy ra khi nhập cơ sở dữ liệu",
|
||
"readDatabaseError": "Lỗi xảy ra khi đọc cơ sở dữ liệu",
|
||
"getDatabaseError": "Lỗi xảy ra khi truy xuất cơ sở dữ liệu",
|
||
"getConfigError": "Lỗi xảy ra khi truy xuất tệp cấu hình"
|
||
},
|
||
"inbounds": {
|
||
"title": "Điểm vào (Inbounds)",
|
||
"totalDownUp": "Tổng tải lên/tải xuống",
|
||
"totalUsage": "Tổng sử dụng",
|
||
"inboundCount": "Số lượng điểm vào",
|
||
"operate": "Thao tác",
|
||
"enable": "Kích hoạt",
|
||
"remark": "Chú thích",
|
||
"node": "Nút",
|
||
"deployTo": "Triển khai tới",
|
||
"localPanel": "Panel cục bộ",
|
||
"fallbacks": {
|
||
"title": "Fallback",
|
||
"help": "Khi một kết nối trên inbound này không khớp với client nào, nó sẽ được chuyển hướng tới inbound khác. Chọn một child bên dưới và các trường định tuyến (SNI / ALPN / Path / xver) sẽ được tự động điền từ transport của child — hầu hết cấu hình không cần chỉnh thêm. Mỗi child nên lắng nghe trên 127.0.0.1 với security=none.",
|
||
"empty": "Chưa có fallback nào",
|
||
"add": "Thêm fallback",
|
||
"pickInbound": "Chọn một inbound",
|
||
"matchAny": "bất kỳ",
|
||
"rederive": "Điền lại từ child",
|
||
"rederived": "Đã điền lại từ child",
|
||
"editAdvanced": "Sửa trường định tuyến",
|
||
"hideAdvanced": "Ẩn nâng cao",
|
||
"quickAddAll": "Thêm nhanh tất cả các inbound đủ điều kiện",
|
||
"quickAdded": "Đã thêm {n} fallback",
|
||
"quickAddedNone": "Không có inbound mới nào đủ điều kiện",
|
||
"routesWhen": "Định tuyến khi",
|
||
"defaultCatchAll": "Mặc định — bắt mọi thứ khác"
|
||
},
|
||
"protocol": "Giao thức",
|
||
"port": "Cổng",
|
||
"portMap": "Cổng tạo",
|
||
"traffic": "Lưu lượng",
|
||
"details": "Chi tiết",
|
||
"transportConfig": "Giao vận",
|
||
"expireDate": "Ngày hết hạn",
|
||
"createdAt": "Tạo lúc",
|
||
"updatedAt": "Cập nhật",
|
||
"resetTraffic": "Đặt lại lưu lượng",
|
||
"addInbound": "Thêm điểm vào",
|
||
"generalActions": "Hành động chung",
|
||
"modifyInbound": "Chỉnh sửa điểm vào (Inbound)",
|
||
"deleteInbound": "Xóa điểm vào (Inbound)",
|
||
"deleteInboundContent": "Xác nhận xóa điểm vào? (Inbound)",
|
||
"deleteClient": "Xóa người dùng",
|
||
"deleteClientContent": "Bạn có chắc chắn muốn xóa người dùng không?",
|
||
"resetTrafficContent": "Xác nhận đặt lại lưu lượng?",
|
||
"copyLink": "Sao chép liên kết",
|
||
"address": "Địa chỉ",
|
||
"network": "Mạng",
|
||
"destinationPort": "Cổng đích",
|
||
"targetAddress": "Địa chỉ mục tiêu",
|
||
"monitorDesc": "Mặc định để trống",
|
||
"meansNoLimit": "= Không giới hạn (đơn vị: GB)",
|
||
"totalFlow": "Tổng lưu lượng",
|
||
"leaveBlankToNeverExpire": "Để trống để không bao giờ hết hạn",
|
||
"noRecommendKeepDefault": "Không yêu cầu đặc biệt để giữ nguyên cài đặt mặc định",
|
||
"certificatePath": "Đường dẫn tập",
|
||
"certificateContent": "Nội dung tập",
|
||
"publicKey": "Khóa công khai",
|
||
"privatekey": "Khóa cá nhân",
|
||
"clickOnQRcode": "Nhấn vào Mã QR để sao chép",
|
||
"client": "Người dùng",
|
||
"export": "Xuất liên kết",
|
||
"clone": "Sao chép",
|
||
"cloneInbound": "Sao chép điểm vào (Inbound)",
|
||
"cloneInboundContent": "Tất cả cài đặt của điểm vào này, trừ Cổng, IP nghe và máy khách, sẽ được áp dụng cho bản sao.",
|
||
"cloneInboundOk": "Sao chép",
|
||
"resetAllTraffic": "Đặt lại lưu lượng cho tất cả điểm vào",
|
||
"resetAllTrafficTitle": "Đặt lại lưu lượng cho tất cả điểm vào",
|
||
"resetAllTrafficContent": "Bạn có chắc chắn muốn đặt lại lưu lượng cho tất cả điểm vào không?",
|
||
"resetInboundClientTraffics": "Đặt lại lưu lượng toàn bộ người dùng của điểm vào",
|
||
"resetInboundClientTrafficTitle": "Đặt lại lưu lượng cho toàn bộ người dùng của điểm vào",
|
||
"resetInboundClientTrafficContent": "Bạn có chắc chắn muốn đặt lại tất cả lưu lượng cho các người dùng của điểm vào này không?",
|
||
"resetAllClientTraffics": "Đặt lại lưu lượng cho toàn bộ người dùng",
|
||
"resetAllClientTrafficTitle": "Đặt lại lưu lượng cho toàn bộ người dùng",
|
||
"resetAllClientTrafficContent": "Bạn có chắc chắn muốn đặt lại tất cả lưu lượng cho toàn bộ người dùng không?",
|
||
"delDepletedClients": "Xóa các người dùng đã cạn kiệt",
|
||
"delDepletedClientsTitle": "Xóa các người dùng đã cạn kiệt",
|
||
"delDepletedClientsContent": "Bạn có chắc chắn muốn xóa toàn bộ người dùng đã cạn kiệt không?",
|
||
"email": "Email",
|
||
"emailDesc": "Vui lòng cung cấp một địa chỉ email duy nhất.",
|
||
"IPLimit": "Giới hạn IP",
|
||
"IPLimitDesc": "Vô hiệu hóa điểm vào nếu số lượng vượt quá giá trị đã nhập (nhập 0 để vô hiệu hóa giới hạn IP).",
|
||
"IPLimitlog": "Lịch sử IP",
|
||
"IPLimitlogDesc": "Lịch sử đăng nhập IP (trước khi kích hoạt điểm vào sau khi bị vô hiệu hóa bởi giới hạn IP, bạn nên xóa lịch sử).",
|
||
"IPLimitlogclear": "Xóa Lịch sử",
|
||
"setDefaultCert": "Đặt chứng chỉ từ bảng điều khiển",
|
||
"streamTab": "Stream",
|
||
"securityTab": "Bảo mật",
|
||
"sniffingTab": "Sniffing",
|
||
"sniffingMetadataOnly": "Chỉ siêu dữ liệu",
|
||
"sniffingRouteOnly": "Chỉ định tuyến",
|
||
"sniffingIpsExcluded": "IP bị loại trừ",
|
||
"sniffingDomainsExcluded": "Tên miền bị loại trừ",
|
||
"decryption": "Giải mã",
|
||
"encryption": "Mã hóa",
|
||
"vlessAuthX25519": "Xác thực X25519",
|
||
"vlessAuthMlkem768": "Xác thực ML-KEM-768",
|
||
"vlessAuthCustom": "Tùy chỉnh",
|
||
"vlessAuthSelected": "Đã chọn: {auth}",
|
||
"advanced": {
|
||
"title": "Các phần JSON của inbound",
|
||
"subtitle": "JSON inbound đầy đủ và các trình chỉnh sửa riêng cho settings, sniffing và streamSettings.",
|
||
"all": "Tất cả",
|
||
"allHelp": "Đối tượng inbound đầy đủ với mọi trường trong một trình chỉnh sửa.",
|
||
"settings": "Cài đặt",
|
||
"settingsHelp": "Bao đóng khối settings của Xray:",
|
||
"sniffing": "Sniffing",
|
||
"sniffingHelp": "Bao đóng khối sniffing của Xray:",
|
||
"stream": "Stream",
|
||
"streamHelp": "Bao đóng khối stream của Xray:",
|
||
"jsonErrorPrefix": "JSON nâng cao"
|
||
},
|
||
"telegramDesc": "Vui lòng cung cấp ID Trò chuyện Telegram. (sử dụng lệnh '/id' trong bot) hoặc ({'@'}userinfobot)",
|
||
"subscriptionDesc": "Bạn có thể tìm liên kết gói đăng ký của mình trong Chi tiết, cũng như bạn có thể sử dụng cùng tên cho nhiều cấu hình khác nhau",
|
||
"info": "Thông tin",
|
||
"same": "Giống nhau",
|
||
"inboundData": "Dữ liệu gửi đến",
|
||
"exportInbound": "Xuất nhập khẩu",
|
||
"import": "Nhập",
|
||
"importInbound": "Nhập inbound",
|
||
"periodicTrafficResetTitle": "Đặt lại lưu lượng",
|
||
"periodicTrafficResetDesc": "Tự động đặt lại bộ đếm lưu lượng theo khoảng thời gian xác định",
|
||
"lastReset": "Đặt lại lần cuối",
|
||
"periodicTrafficReset": {
|
||
"never": "Không bao giờ",
|
||
"daily": "Hàng ngày",
|
||
"weekly": "Hàng tuần",
|
||
"monthly": "Hàng tháng",
|
||
"hourly": "Hàng giờ"
|
||
},
|
||
"toasts": {
|
||
"obtain": "Nhận",
|
||
"updateSuccess": "Cập nhật thành công",
|
||
"logCleanSuccess": "Đã xóa nhật ký",
|
||
"inboundsUpdateSuccess": "Đã cập nhật thành công các kết nối inbound",
|
||
"inboundUpdateSuccess": "Đã cập nhật thành công kết nối inbound",
|
||
"inboundCreateSuccess": "Đã tạo thành công kết nối inbound",
|
||
"inboundDeleteSuccess": "Đã xóa thành công kết nối inbound",
|
||
"inboundClientAddSuccess": "Đã thêm client inbound",
|
||
"inboundClientDeleteSuccess": "Đã xóa client inbound",
|
||
"inboundClientUpdateSuccess": "Đã cập nhật client inbound",
|
||
"delDepletedClientsSuccess": "Đã xóa tất cả client hết hạn",
|
||
"resetAllClientTrafficSuccess": "Đã đặt lại toàn bộ lưu lượng client",
|
||
"resetAllTrafficSuccess": "Đã đặt lại toàn bộ lưu lượng",
|
||
"resetInboundClientTrafficSuccess": "Đã đặt lại lưu lượng",
|
||
"resetInboundTrafficSuccess": "Đã đặt lại lưu lượng Inbound",
|
||
"trafficGetError": "Lỗi khi lấy thông tin lưu lượng",
|
||
"getNewX25519CertError": "Lỗi khi lấy chứng chỉ X25519.",
|
||
"getNewmldsa65Error": "Lỗi khi lấy chứng chỉ mldsa65.",
|
||
"getNewVlessEncError": "Lỗi khi lấy chứng chỉ VlessEnc."
|
||
},
|
||
"stream": {
|
||
"general": {
|
||
"request": "Lời yêu cầu",
|
||
"response": "Phản ứng",
|
||
"name": "Tên",
|
||
"value": "Giá trị"
|
||
},
|
||
"tcp": {
|
||
"version": "Phiên bản",
|
||
"method": "Phương pháp",
|
||
"path": "Đường dẫn",
|
||
"status": "Trạng thái",
|
||
"statusDescription": "Tình trạng Mô tả",
|
||
"requestHeader": "Header yêu cầu",
|
||
"responseHeader": "Header phản hồi"
|
||
}
|
||
}
|
||
},
|
||
"clients": {
|
||
"add": "Thêm khách hàng",
|
||
"edit": "Chỉnh sửa khách hàng",
|
||
"submitAdd": "Thêm khách hàng",
|
||
"submitEdit": "Lưu thay đổi",
|
||
"clientCount": "Số lượng khách hàng",
|
||
"bulk": "Thêm hàng loạt",
|
||
"copyFromInbound": "Sao chép khách hàng từ inbound",
|
||
"copyToInbound": "Sao chép khách hàng đến",
|
||
"copySelected": "Sao chép đã chọn",
|
||
"copySource": "Nguồn",
|
||
"copyEmailPreview": "Xem trước email kết quả",
|
||
"copySelectSourceFirst": "Hãy chọn inbound nguồn trước.",
|
||
"copyResult": "Kết quả sao chép",
|
||
"copyResultSuccess": "Đã sao chép thành công",
|
||
"copyResultNone": "Không có gì để sao chép: chưa chọn khách hàng hoặc nguồn rỗng",
|
||
"copyResultErrors": "Lỗi sao chép",
|
||
"copyFlowLabel": "Flow cho khách hàng mới (VLESS)",
|
||
"copyFlowHint": "Áp dụng cho tất cả khách hàng được sao chép. Để trống để bỏ qua.",
|
||
"selectAll": "Chọn tất cả",
|
||
"clearAll": "Xóa tất cả",
|
||
"method": "Phương thức",
|
||
"first": "Đầu",
|
||
"last": "Cuối",
|
||
"ipLog": "Nhật ký IP",
|
||
"prefix": "Tiền tố",
|
||
"postfix": "Hậu tố",
|
||
"delayedStart": "Bắt đầu sau lần dùng đầu",
|
||
"expireDays": "Thời hạn",
|
||
"days": "Ngày",
|
||
"renew": "Tự động gia hạn",
|
||
"renewDesc": "Tự động gia hạn sau khi hết hạn. (0 = tắt) (đơn vị: ngày)",
|
||
"title": "Khách hàng",
|
||
"actions": "Hành động",
|
||
"totalGB": "Tổng gửi/nhận (GB)",
|
||
"expiryTime": "Hết hạn",
|
||
"addClients": "Thêm khách hàng",
|
||
"limitIp": "Giới hạn IP",
|
||
"password": "Mật khẩu",
|
||
"subId": "ID đăng ký",
|
||
"online": "Trực tuyến",
|
||
"email": "Email",
|
||
"comment": "Ghi chú",
|
||
"traffic": "Lưu lượng",
|
||
"offline": "Ngoại tuyến",
|
||
"addTitle": "Thêm khách hàng",
|
||
"qrCode": "Mã QR",
|
||
"moreInformation": "Thông tin thêm",
|
||
"delete": "Xóa",
|
||
"reset": "Đặt lại lưu lượng",
|
||
"editTitle": "Chỉnh sửa khách hàng",
|
||
"client": "Khách hàng",
|
||
"enabled": "Đã bật",
|
||
"remaining": "Còn lại",
|
||
"duration": "Thời hạn",
|
||
"attachedInbounds": "Inbound đã gắn",
|
||
"selectInbound": "Chọn một hoặc nhiều inbound",
|
||
"noSubId": "Khách hàng này không có subId, không có liên kết chia sẻ.",
|
||
"noLinks": "Không có liên kết chia sẻ — hãy gắn khách hàng này vào một inbound có giao thức tương thích trước.",
|
||
"link": "Liên kết",
|
||
"resetNotPossible": "Hãy gắn khách hàng này vào một inbound trước.",
|
||
"general": "Chung",
|
||
"resetAllTraffics": "Đặt lại lưu lượng của tất cả khách hàng",
|
||
"resetAllTrafficsTitle": "Đặt lại lưu lượng của tất cả khách hàng?",
|
||
"resetAllTrafficsContent": "Bộ đếm gửi/nhận của mỗi khách hàng về 0. Hạn mức và thời hạn không bị ảnh hưởng. Không thể hoàn tác.",
|
||
"empty": "Chưa có khách hàng nào — thêm một để bắt đầu.",
|
||
"deleteConfirmTitle": "Xóa khách hàng {email}?",
|
||
"deleteConfirmContent": "Hành động này gỡ khách hàng khỏi mọi inbound đã gắn và xóa bản ghi lưu lượng. Không thể hoàn tác.",
|
||
"deleteSelected": "Xóa ({count})",
|
||
"bulkDeleteConfirmTitle": "Xóa {count} khách hàng?",
|
||
"bulkDeleteConfirmContent": "Mỗi khách hàng được chọn sẽ bị gỡ khỏi tất cả inbound đã gắn và bản ghi lưu lượng cũng bị xóa. Không thể hoàn tác.",
|
||
"delDepleted": "Xóa hết hạn mức",
|
||
"delDepletedConfirmTitle": "Xóa khách hàng hết hạn mức?",
|
||
"delDepletedConfirmContent": "Gỡ tất cả khách hàng đã dùng hết hạn mức lưu lượng hoặc đã quá hạn. Không thể hoàn tác.",
|
||
"auth": "Auth",
|
||
"hysteriaAuth": "Auth Hysteria",
|
||
"uuid": "UUID",
|
||
"flow": "Flow",
|
||
"reverseTag": "Reverse tag",
|
||
"reverseTagPlaceholder": "Reverse tag tùy chọn",
|
||
"telegramId": "ID người dùng Telegram",
|
||
"telegramIdPlaceholder": "ID người dùng Telegram dạng số (0 = không có)",
|
||
"created": "Tạo",
|
||
"updated": "Cập nhật",
|
||
"ipLimit": "Giới hạn IP",
|
||
"toasts": {
|
||
"deleted": "Đã xóa khách hàng",
|
||
"trafficReset": "Đã đặt lại lưu lượng",
|
||
"allTrafficsReset": "Đã đặt lại lưu lượng của tất cả khách hàng",
|
||
"bulkDeleted": "Đã xóa {count} khách hàng",
|
||
"bulkDeletedMixed": "Đã xóa {ok}, thất bại {failed}",
|
||
"bulkCreated": "Đã tạo {count} khách hàng",
|
||
"bulkCreatedMixed": "Đã tạo {ok}, thất bại {failed}",
|
||
"delDepleted": "Đã xóa {count} khách hàng hết hạn mức"
|
||
}
|
||
},
|
||
"nodes": {
|
||
"title": "Nút",
|
||
"addNode": "Thêm nút",
|
||
"editNode": "Chỉnh sửa nút",
|
||
"totalNodes": "Tổng số nút",
|
||
"onlineNodes": "Trực tuyến",
|
||
"offlineNodes": "Ngoại tuyến",
|
||
"avgLatency": "Độ trễ trung bình",
|
||
"name": "Tên",
|
||
"namePlaceholder": "vd: de-frankfurt-1",
|
||
"addressPlaceholder": "panel.example.com hoặc 1.2.3.4",
|
||
"remark": "Chú thích",
|
||
"scheme": "Giao thức",
|
||
"address": "Địa chỉ",
|
||
"port": "Cổng",
|
||
"basePath": "Đường dẫn cơ sở",
|
||
"apiToken": "Token API",
|
||
"apiTokenPlaceholder": "Token từ trang Cài đặt của panel từ xa",
|
||
"apiTokenHint": "Panel từ xa hiển thị token API tại Cài đặt → Token API.",
|
||
"regenerate": "Tạo lại token",
|
||
"regenerateConfirm": "Tạo lại sẽ vô hiệu hóa token hiện tại. Mọi panel trung tâm dùng nó sẽ mất quyền truy cập cho đến khi được cập nhật. Tiếp tục?",
|
||
"allowPrivateAddress": "Cho phép địa chỉ riêng",
|
||
"allowPrivateAddressHint": "Chỉ bật cho các nút trên mạng riêng hoặc VPN.",
|
||
"enable": "Kích hoạt",
|
||
"status": "Trạng thái",
|
||
"cpu": "CPU",
|
||
"mem": "Bộ nhớ",
|
||
"uptime": "Thời gian hoạt động",
|
||
"latency": "Độ trễ",
|
||
"lastHeartbeat": "Heartbeat gần nhất",
|
||
"xrayVersion": "Phiên bản Xray",
|
||
"panelVersion": "Phiên bản panel",
|
||
"actions": "Hành động",
|
||
"probe": "Kiểm tra ngay",
|
||
"testConnection": "Kiểm tra kết nối",
|
||
"connectionOk": "Kết nối OK ({ms} ms)",
|
||
"connectionFailed": "Kết nối thất bại",
|
||
"never": "chưa bao giờ",
|
||
"justNow": "vừa xong",
|
||
"deleteConfirmTitle": "Xóa nút \"{name}\"?",
|
||
"deleteConfirmContent": "Việc này dừng giám sát nút. Panel từ xa không bị ảnh hưởng.",
|
||
"statusValues": {
|
||
"online": "Trực tuyến",
|
||
"offline": "Ngoại tuyến",
|
||
"unknown": "Không xác định"
|
||
},
|
||
"toasts": {
|
||
"list": "Không tải được danh sách nút",
|
||
"obtain": "Không tải được nút",
|
||
"add": "Thêm nút",
|
||
"update": "Cập nhật nút",
|
||
"delete": "Xóa nút",
|
||
"deleted": "Đã xóa nút",
|
||
"test": "Kiểm tra kết nối",
|
||
"fillRequired": "Tên, địa chỉ, cổng và token API là bắt buộc",
|
||
"probeFailed": "Kiểm tra thất bại"
|
||
}
|
||
},
|
||
"settings": {
|
||
"title": "Cài đặt",
|
||
"save": "Lưu",
|
||
"infoDesc": "Mọi thay đổi được thực hiện ở đây cần phải được lưu. Vui lòng khởi động lại bảng điều khiển để áp dụng các thay đổi.",
|
||
"restartPanel": "Khởi động lại bảng điều khiển",
|
||
"restartPanelDesc": "Bạn có chắc chắn muốn khởi động lại bảng điều khiển? Nhấn OK để khởi động lại sau 3 giây. Nếu bạn không thể truy cập bảng điều khiển sau khi khởi động lại, vui lòng xem thông tin nhật ký của bảng điều khiển trên máy chủ.",
|
||
"restartPanelSuccess": "Đã khởi động lại bảng điều khiển thành công",
|
||
"actions": "Hành động",
|
||
"resetDefaultConfig": "Đặt lại cấu hình mặc định",
|
||
"panelSettings": "Bảng điều khiển",
|
||
"securitySettings": "Bảo mật",
|
||
"TGBotSettings": "Bot Telegram",
|
||
"panelListeningIP": "IP Nghe của bảng điều khiển",
|
||
"panelListeningIPDesc": "Mặc định để trống để nghe tất cả các IP.",
|
||
"panelListeningDomain": "Tên miền của nghe bảng điều khiển",
|
||
"panelListeningDomainDesc": "Mặc định để trống để nghe tất cả các tên miền và IP",
|
||
"panelPort": "Cổng bảng điều khiển",
|
||
"panelPortDesc": "Cổng được sử dụng để kết nối với bảng điều khiển này",
|
||
"publicKeyPath": "Đường dẫn file chứng chỉ bảng điều khiển",
|
||
"publicKeyPathDesc": "Điền vào đường dẫn đầy đủ (bắt đầu từ '/')",
|
||
"privateKeyPath": "Đường dẫn file khóa của chứng chỉ bảng điều khiển",
|
||
"privateKeyPathDesc": "Điền vào đường dẫn đầy đủ (bắt đầu từ '/')",
|
||
"panelUrlPath": "Đường dẫn gốc URL bảng điều khiển",
|
||
"panelUrlPathDesc": "Phải bắt đầu và kết thúc bằng '/'",
|
||
"pageSize": "Kích thước phân trang",
|
||
"pageSizeDesc": "Xác định kích thước trang cho bảng gửi đến. Đặt 0 để tắt",
|
||
"remarkModel": "Ghi chú mô hình và ký tự phân tách",
|
||
"datepicker": "Kiểu lịch",
|
||
"datepickerPlaceholder": "Chọn ngày",
|
||
"datepickerDescription": "Tác vụ chạy theo lịch trình sẽ chạy theo kiểu lịch này.",
|
||
"sampleRemark": "Nhận xét mẫu",
|
||
"oldUsername": "Tên người dùng hiện tại",
|
||
"currentPassword": "Mật khẩu hiện tại",
|
||
"newUsername": "Tên người dùng mới",
|
||
"newPassword": "Mật khẩu mới",
|
||
"telegramBotEnable": "Bật Bot Telegram",
|
||
"telegramBotEnableDesc": "Kết nối với các tính năng của bảng điều khiển này thông qua bot Telegram",
|
||
"telegramToken": "Token Telegram",
|
||
"telegramTokenDesc": "Bạn phải nhận token từ quản lý bot Telegram {'@'}botfather",
|
||
"telegramProxy": "Socks5 Proxy",
|
||
"telegramProxyDesc": "Nếu bạn cần socks5 proxy để kết nối với Telegram. Điều chỉnh cài đặt của nó theo hướng dẫn.",
|
||
"telegramAPIServer": "Telegram API Server",
|
||
"telegramAPIServerDesc": "Máy chủ API Telegram để sử dụng. Để trống để sử dụng máy chủ mặc định.",
|
||
"telegramChatId": "Chat ID Telegram của quản trị viên",
|
||
"telegramChatIdDesc": "Nhiều Chat ID phân tách bằng dấu phẩy. Sử dụng {'@'}userinfobot hoặc sử dụng lệnh '/id' trong bot để lấy Chat ID của bạn.",
|
||
"telegramNotifyTime": "Thời gian thông báo của bot Telegram",
|
||
"telegramNotifyTimeDesc": "Sử dụng định dạng thời gian Crontab.",
|
||
"tgNotifyBackup": "Sao lưu Cơ sở dữ liệu",
|
||
"tgNotifyBackupDesc": "Bao gồm tệp sao lưu cơ sở dữ liệu với thông báo báo cáo.",
|
||
"tgNotifyLogin": "Thông báo Đăng nhập",
|
||
"tgNotifyLoginDesc": "Hiển thị tên người dùng, địa chỉ IP và thời gian khi ai đó cố gắng đăng nhập vào bảng điều khiển của bạn.",
|
||
"sessionMaxAge": "Thời gian tối đa của phiên",
|
||
"sessionMaxAgeDesc": "Thời gian của phiên đăng nhập (đơn vị: phút)",
|
||
"expireTimeDiff": "Ngưỡng hết hạn cho thông báo",
|
||
"expireTimeDiffDesc": "Nhận thông báo về việc hết hạn tài khoản trước ngưỡng này (đơn vị: ngày)",
|
||
"trafficDiff": "Ngưỡng lưu lượng cho thông báo",
|
||
"trafficDiffDesc": "Nhận thông báo về việc cạn kiệt lưu lượng trước khi đạt đến ngưỡng này (đơn vị: GB)",
|
||
"tgNotifyCpu": "Ngưỡng cảnh báo tỷ lệ CPU",
|
||
"tgNotifyCpuDesc": "Nhận thông báo nếu tỷ lệ sử dụng CPU vượt quá ngưỡng này (đơn vị: %)",
|
||
"timeZone": "Múi giờ",
|
||
"timeZoneDesc": "Các tác vụ được lên lịch chạy theo thời gian trong múi giờ này.",
|
||
"subSettings": "Gói đăng ký",
|
||
"subEnable": "Bật dịch vụ",
|
||
"subEnableDesc": "Tính năng gói đăng ký với cấu hình riêng",
|
||
"subJsonEnable": "Bật/Tắt điểm cuối đăng ký JSON độc lập.",
|
||
"subTitle": "Tiêu đề Đăng ký",
|
||
"subTitleDesc": "Tiêu đề hiển thị trong ứng dụng VPN",
|
||
"subSupportUrl": "URL Hỗ trợ",
|
||
"subSupportUrlDesc": "Liên kết hỗ trợ kỹ thuật hiển thị trong ứng dụng VPN",
|
||
"subProfileUrl": "URL Hồ sơ",
|
||
"subProfileUrlDesc": "Liên kết đến trang web của bạn hiển thị trong ứng dụng VPN",
|
||
"subAnnounce": "Thông báo",
|
||
"subAnnounceDesc": "Văn bản thông báo hiển thị trong ứng dụng VPN",
|
||
"subEnableRouting": "Bật định tuyến",
|
||
"subEnableRoutingDesc": "Cài đặt toàn cục để bật định tuyến trong ứng dụng khách VPN. (Chỉ dành cho Happ)",
|
||
"subRoutingRules": "Quy tắc định tuyến",
|
||
"subRoutingRulesDesc": "Quy tắc định tuyến toàn cầu cho client VPN. (Chỉ dành cho Happ)",
|
||
"subListen": "Listening IP",
|
||
"subListenDesc": "Mặc định để trống để nghe tất cả các IP",
|
||
"subPort": "Cổng gói đăng ký",
|
||
"subPortDesc": "Số cổng dịch vụ đăng ký phải chưa được sử dụng trên máy chủ",
|
||
"subCertPath": "Đường dẫn file chứng chỉ gói đăng ký",
|
||
"subCertPathDesc": "Điền vào đường dẫn đầy đủ (bắt đầu với '/')",
|
||
"subKeyPath": "Đường dẫn file khóa của chứng chỉ gói đăng ký",
|
||
"subKeyPathDesc": "Điền vào đường dẫn đầy đủ (bắt đầu với '/')",
|
||
"subPath": "Đường dẫn gốc URL gói đăng ký",
|
||
"subPathDesc": "Phải bắt đầu và kết thúc bằng '/'",
|
||
"subDomain": "Tên miền con",
|
||
"subDomainDesc": "Mặc định để trống để nghe tất cả các tên miền và IP",
|
||
"subUpdates": "Khoảng thời gian cập nhật gói đăng ký",
|
||
"subUpdatesDesc": "Số giờ giữa các cập nhật trong ứng dụng khách",
|
||
"subEncrypt": "Mã hóa cấu hình",
|
||
"subEncryptDesc": "Mã hóa các cấu hình được trả về trong gói đăng ký",
|
||
"subShowInfo": "Hiển thị thông tin sử dụng",
|
||
"subShowInfoDesc": "Hiển thị lưu lượng truy cập còn lại và ngày sau tên cấu hình",
|
||
"subEmailInRemark": "Thêm Email vào tên",
|
||
"subEmailInRemarkDesc": "Thêm email của client vào tên hồ sơ đăng ký.",
|
||
"subURI": "URI proxy trung gian",
|
||
"subURIDesc": "Thay đổi URI cơ sở của URL gói đăng ký để sử dụng cho proxy trung gian",
|
||
"externalTrafficInformEnable": "Thông báo giao thông bên ngoài",
|
||
"externalTrafficInformEnableDesc": "Thông báo cho API bên ngoài về mọi cập nhật lưu lượng truy cập.",
|
||
"externalTrafficInformURI": "URI thông báo lưu lượng truy cập bên ngoài",
|
||
"externalTrafficInformURIDesc": "Cập nhật lưu lượng truy cập được gửi tới URI này.",
|
||
"restartXrayOnClientDisable": "Khởi Động Lại Xray Sau Khi Tự Động Vô Hiệu Hóa",
|
||
"restartXrayOnClientDisableDesc": "Khi người dùng bị vô hiệu hóa tự động do hết hạn hoặc chạm giới hạn lưu lượng, hãy khởi động lại Xray.",
|
||
"fragment": "Sự phân mảnh",
|
||
"fragmentDesc": "Kích hoạt phân mảnh cho gói TLS hello",
|
||
"fragmentSett": "Cài đặt phân mảnh",
|
||
"noisesDesc": "Bật Noises.",
|
||
"noisesSett": "Cài đặt Noises",
|
||
"mux": "Mux",
|
||
"muxDesc": "Truyền nhiều luồng dữ liệu độc lập trong luồng dữ liệu đã thiết lập.",
|
||
"muxSett": "Mux Cài đặt",
|
||
"direct": "Kết nối trực tiếp",
|
||
"directDesc": "Trực tiếp thiết lập kết nối với tên miền hoặc dải IP của một quốc gia cụ thể.",
|
||
"notifications": "Thông báo",
|
||
"certs": "Chứng chỉ",
|
||
"externalTraffic": "Lưu lượng bên ngoài",
|
||
"dateAndTime": "Ngày và giờ",
|
||
"proxyAndServer": "Proxy và máy chủ",
|
||
"intervals": "Khoảng thời gian",
|
||
"information": "Thông tin",
|
||
"language": "Ngôn ngữ",
|
||
"telegramBotLanguage": "Ngôn ngữ của Bot Telegram",
|
||
"security": {
|
||
"admin": "Thông tin đăng nhập quản trị viên",
|
||
"twoFactor": "Xác thực hai yếu tố",
|
||
"twoFactorEnable": "Bật 2FA",
|
||
"twoFactorEnableDesc": "Thêm một lớp bảo mật bổ sung để tăng cường an toàn.",
|
||
"twoFactorModalSetTitle": "Bật xác thực hai yếu tố",
|
||
"twoFactorModalDeleteTitle": "Tắt xác thực hai yếu tố",
|
||
"twoFactorModalSteps": "Để thiết lập xác thực hai yếu tố, hãy thực hiện các bước sau:",
|
||
"twoFactorModalFirstStep": "1. Quét mã QR này trong ứng dụng xác thực hoặc sao chép mã token gần mã QR và dán vào ứng dụng",
|
||
"twoFactorModalSecondStep": "2. Nhập mã từ ứng dụng",
|
||
"twoFactorModalRemoveStep": "Nhập mã từ ứng dụng để xóa xác thực hai yếu tố.",
|
||
"twoFactorModalChangeCredentialsTitle": "Thay đổi thông tin xác thực",
|
||
"twoFactorModalChangeCredentialsStep": "Nhập mã từ ứng dụng để thay đổi thông tin xác thực quản trị viên.",
|
||
"twoFactorModalSetSuccess": "Xác thực hai yếu tố đã được thiết lập thành công",
|
||
"twoFactorModalDeleteSuccess": "Xác thực hai yếu tố đã được xóa thành công",
|
||
"twoFactorModalError": "Mã sai",
|
||
"show": "Hiển thị",
|
||
"hide": "Ẩn",
|
||
"apiTokenNew": "Token mới",
|
||
"apiTokenName": "Tên",
|
||
"apiTokenNamePlaceholder": "ví dụ: central-panel-a",
|
||
"apiTokenNameRequired": "Tên là bắt buộc",
|
||
"apiTokenEmpty": "Chưa có token nào — tạo một token để xác thực bot hoặc panel từ xa.",
|
||
"apiTokenDeleteWarning": "Mọi client đang dùng token này sẽ ngừng xác thực ngay lập tức."
|
||
},
|
||
"toasts": {
|
||
"modifySettings": "Các tham số đã được thay đổi.",
|
||
"getSettings": "Lỗi xảy ra khi truy xuất tham số.",
|
||
"modifyUserError": "Đã xảy ra lỗi khi thay đổi thông tin đăng nhập quản trị viên.",
|
||
"modifyUser": "Bạn đã thay đổi thông tin đăng nhập quản trị viên thành công.",
|
||
"originalUserPassIncorrect": "Tên người dùng hoặc mật khẩu gốc không đúng",
|
||
"userPassMustBeNotEmpty": "Tên người dùng mới và mật khẩu mới không thể để trống",
|
||
"getOutboundTrafficError": "Lỗi khi lấy lưu lượng truy cập đi",
|
||
"resetOutboundTrafficError": "Lỗi khi đặt lại lưu lượng truy cập đi"
|
||
}
|
||
},
|
||
"xray": {
|
||
"title": "Cài đặt Xray",
|
||
"save": "Lưu cài đặt",
|
||
"restart": "Khởi động lại Xray",
|
||
"restartSuccess": "Đã khởi động lại Xray thành công",
|
||
"stopSuccess": "Xray đã được dừng thành công",
|
||
"restartError": "Đã xảy ra lỗi khi khởi động lại Xray.",
|
||
"stopError": "Đã xảy ra lỗi khi dừng Xray.",
|
||
"basicTemplate": "Mẫu Cơ bản",
|
||
"advancedTemplate": "Mẫu Nâng cao",
|
||
"generalConfigs": "Cấu hình Chung",
|
||
"generalConfigsDesc": "Những tùy chọn này sẽ cung cấp điều chỉnh tổng quát.",
|
||
"logConfigs": "Nhật ký",
|
||
"logConfigsDesc": "Nhật ký có thể ảnh hưởng đến hiệu suất máy chủ của bạn. Bạn chỉ nên kích hoạt nó một cách khôn ngoan trong trường hợp bạn cần",
|
||
"blockConfigsDesc": "Những tùy chọn này sẽ ngăn người dùng kết nối đến các giao thức và trang web cụ thể.",
|
||
"basicRouting": "Định tuyến Cơ bản",
|
||
"blockConnectionsConfigsDesc": "Các tùy chọn này sẽ chặn lưu lượng truy cập dựa trên quốc gia được yêu cầu cụ thể.",
|
||
"directConnectionsConfigsDesc": "Kết nối trực tiếp đảm bảo rằng lưu lượng truy cập cụ thể không được định tuyến qua máy chủ khác.",
|
||
"blockips": "Chặn IP",
|
||
"blockdomains": "Chặn Tên Miền",
|
||
"directips": "IP Trực Tiếp",
|
||
"directdomains": "Tên Miền Trực Tiếp",
|
||
"ipv4Routing": "Định tuyến IPv4",
|
||
"ipv4RoutingDesc": "Những tùy chọn này sẽ chỉ định kết nối đến các tên miền mục tiêu qua IPv4.",
|
||
"warpRouting": "Định tuyến WARP",
|
||
"warpRoutingDesc": "Cảnh báo: Trước khi sử dụng những tùy chọn này, hãy cài đặt WARP ở chế độ proxy socks5 trên máy chủ của bạn bằng cách làm theo các bước trên GitHub của bảng điều khiển. WARP sẽ định tuyến lưu lượng đến các trang web qua máy chủ Cloudflare.",
|
||
"nordRouting": "Định tuyến NordVPN",
|
||
"nordRoutingDesc": "Các tùy chọn này sẽ định tuyến lưu lượng dựa trên đích cụ thể qua NordVPN.",
|
||
"Template": "Mẫu Cấu hình Xray",
|
||
"TemplateDesc": "Tạo tệp cấu hình Xray cuối cùng dựa trên mẫu này.",
|
||
"FreedomStrategy": "Cấu hình Chiến lược cho Giao thức Freedom",
|
||
"FreedomStrategyDesc": "Đặt chiến lược đầu ra của mạng trong Giao thức Freedom.",
|
||
"RoutingStrategy": "Cấu hình Chiến lược Định tuyến Tên miền",
|
||
"RoutingStrategyDesc": "Đặt chiến lược định tuyến tổng thể cho việc giải quyết DNS.",
|
||
"outboundTestUrl": "URL kiểm tra outbound",
|
||
"outboundTestUrlDesc": "URL dùng khi kiểm tra kết nối outbound",
|
||
"Torrent": "Cấu hình sử dụng BitTorrent",
|
||
"Inbounds": "Đầu vào",
|
||
"InboundsDesc": "Thay đổi mẫu cấu hình để chấp nhận các máy khách cụ thể.",
|
||
"Outbounds": "Đầu ra",
|
||
"Balancers": "Cân bằng",
|
||
"OutboundsDesc": "Thay đổi mẫu cấu hình để xác định các cách ra đi cho máy chủ này.",
|
||
"Routings": "Quy tắc định tuyến",
|
||
"RoutingsDesc": "Mức độ ưu tiên của mỗi quy tắc đều quan trọng!",
|
||
"completeTemplate": "All",
|
||
"logLevel": "Mức đăng nhập",
|
||
"logLevelDesc": "Cấp độ nhật ký cho nhật ký lỗi, cho biết thông tin cần được ghi lại.",
|
||
"accessLog": "Nhật ký truy cập",
|
||
"accessLogDesc": "Đường dẫn tệp cho nhật ký truy cập. Nhật ký truy cập bị vô hiệu hóa có giá trị đặc biệt 'không'",
|
||
"errorLog": "Nhật ký lỗi",
|
||
"errorLogDesc": "Đường dẫn tệp cho nhật ký lỗi. Nhật ký lỗi bị vô hiệu hóa có giá trị đặc biệt 'không'",
|
||
"dnsLog": "Nhật ký DNS",
|
||
"dnsLogDesc": "Có bật nhật ký truy vấn DNS không",
|
||
"maskAddress": "Ẩn Địa Chỉ",
|
||
"maskAddressDesc": "Mặt nạ địa chỉ IP, khi được bật, sẽ tự động thay thế địa chỉ IP xuất hiện trong nhật ký.",
|
||
"statistics": "Thống kê",
|
||
"statsInboundUplink": "Thống kê tải lên đầu vào",
|
||
"statsInboundUplinkDesc": "Kích hoạt thu thập thống kê cho lưu lượng tải lên của tất cả các proxy đầu vào.",
|
||
"statsInboundDownlink": "Thống kê tải xuống đầu vào",
|
||
"statsInboundDownlinkDesc": "Kích hoạt thu thập thống kê cho lưu lượng tải xuống của tất cả các proxy đầu vào.",
|
||
"statsOutboundUplink": "Thống kê tải lên đầu ra",
|
||
"statsOutboundUplinkDesc": "Kích hoạt thu thập thống kê cho lưu lượng tải lên của tất cả các proxy đầu ra.",
|
||
"statsOutboundDownlink": "Thống kê tải xuống đầu ra",
|
||
"statsOutboundDownlinkDesc": "Kích hoạt thu thập thống kê cho lưu lượng tải xuống của tất cả các proxy đầu ra.",
|
||
"rules": {
|
||
"first": "Đầu tiên",
|
||
"last": "Cuối cùng",
|
||
"up": "Lên",
|
||
"down": "Xuống",
|
||
"source": "Nguồn",
|
||
"dest": "Đích",
|
||
"inbound": "Vào",
|
||
"outbound": "Ra",
|
||
"balancer": "Cân bằng",
|
||
"info": "Thông tin",
|
||
"add": "Thêm quy tắc",
|
||
"edit": "Chỉnh sửa quy tắc",
|
||
"useComma": "Các mục được phân tách bằng dấu phẩy"
|
||
},
|
||
"outbound": {
|
||
"addOutbound": "Thêm thư đi",
|
||
"addReverse": "Thêm đảo ngược",
|
||
"editOutbound": "Chỉnh sửa gửi đi",
|
||
"editReverse": "Chỉnh sửa ngược lại",
|
||
"reverseTag": "Thẻ Ngược",
|
||
"reverseTagDesc": "Thẻ outbound của proxy ngược đơn giản VLESS. Để trống để vô hiệu hóa.",
|
||
"reverseTagPlaceholder": "thẻ outbound (để trống để vô hiệu hóa)",
|
||
"tag": "Thẻ",
|
||
"tagDesc": "thẻ duy nhất",
|
||
"address": "Địa chỉ",
|
||
"reverse": "Đảo ngược",
|
||
"domain": "Miền",
|
||
"type": "Loại",
|
||
"bridge": "Cầu",
|
||
"portal": "Cổng thông tin",
|
||
"link": "Liên kết",
|
||
"intercon": "Kết nối",
|
||
"settings": "cài đặt",
|
||
"accountInfo": "Thông tin tài khoản",
|
||
"outboundStatus": "Trạng thái đầu ra",
|
||
"sendThrough": "Gửi qua",
|
||
"test": "Kiểm tra",
|
||
"testResult": "Kết quả kiểm tra",
|
||
"testing": "Đang kiểm tra kết nối...",
|
||
"testSuccess": "Kiểm tra thành công",
|
||
"testFailed": "Kiểm tra thất bại",
|
||
"testError": "Không thể kiểm tra đầu ra",
|
||
"nordvpn": "NordVPN",
|
||
"accessToken": "Mã truy cập",
|
||
"country": "Quốc gia",
|
||
"server": "Máy chủ",
|
||
"city": "Thành phố",
|
||
"allCities": "Tất cả thành phố",
|
||
"privateKey": "Khóa riêng",
|
||
"load": "Tải"
|
||
},
|
||
"balancer": {
|
||
"addBalancer": "Thêm cân bằng",
|
||
"editBalancer": "Chỉnh sửa cân bằng",
|
||
"balancerStrategy": "Chiến lược",
|
||
"balancerSelectors": "Bộ chọn",
|
||
"tag": "Thẻ",
|
||
"tagDesc": "thẻ duy nhất",
|
||
"balancerDesc": "Không thể sử dụng balancerTag và outboundTag cùng một lúc. Nếu sử dụng cùng lúc thì chỉ outboundTag mới hoạt động."
|
||
},
|
||
"wireguard": {
|
||
"secretKey": "Khoá bí mật",
|
||
"publicKey": "Khóa công khai",
|
||
"allowedIPs": "IP được phép",
|
||
"endpoint": "Điểm cuối",
|
||
"psk": "Khóa chia sẻ",
|
||
"domainStrategy": "Chiến lược tên miền"
|
||
},
|
||
"tun": {
|
||
"nameDesc": "Tên của giao diện TUN. Giá trị mặc định là 'xray0'",
|
||
"mtuDesc": "Đơn vị Truyền Tối đa. Kích thước tối đa của các gói dữ liệu. Giá trị mặc định là 1500",
|
||
"userLevel": "Mức Người Dùng",
|
||
"userLevelDesc": "Tất cả các kết nối được thực hiện thông qua inbound này sẽ sử dụng mức người dùng này. Giá trị mặc định là 0"
|
||
},
|
||
"dns": {
|
||
"enable": "Kích hoạt DNS",
|
||
"enableDesc": "Kích hoạt máy chủ DNS tích hợp",
|
||
"tag": "Thẻ gửi đến DNS",
|
||
"tagDesc": "Thẻ này sẽ có sẵn dưới dạng thẻ Gửi đến trong quy tắc định tuyến.",
|
||
"clientIp": "IP khách hàng",
|
||
"clientIpDesc": "Được sử dụng để thông báo cho máy chủ về vị trí IP được chỉ định trong các truy vấn DNS",
|
||
"disableCache": "Tắt bộ nhớ đệm",
|
||
"disableCacheDesc": "Tắt bộ nhớ đệm DNS",
|
||
"disableFallback": "Tắt Fallback",
|
||
"disableFallbackDesc": "Tắt các truy vấn DNS Fallback",
|
||
"disableFallbackIfMatch": "Tắt Fallback Nếu Khớp",
|
||
"disableFallbackIfMatchDesc": "Tắt các truy vấn DNS Fallback khi danh sách tên miền khớp của máy chủ DNS được kích hoạt",
|
||
"enableParallelQuery": "Bật Truy vấn Song song",
|
||
"enableParallelQueryDesc": "Bật truy vấn DNS song song đến nhiều máy chủ để phân giải nhanh hơn",
|
||
"strategy": "Chiến lược truy vấn",
|
||
"strategyDesc": "Chiến lược tổng thể để phân giải tên miền",
|
||
"add": "Thêm máy chủ",
|
||
"edit": "Chỉnh sửa máy chủ",
|
||
"domains": "Tên miền",
|
||
"expectIPs": "Các IP Dự Kiến",
|
||
"unexpectIPs": "IP không mong muốn",
|
||
"useSystemHosts": "Sử dụng Hosts hệ thống",
|
||
"useSystemHostsDesc": "Sử dụng file hosts từ hệ thống đã cài đặt",
|
||
"serveStale": "Phục vụ kết quả hết hạn",
|
||
"serveStaleDesc": "Trả về kết quả cache đã hết hạn trong khi làm mới ở chế độ nền",
|
||
"serveExpiredTTL": "TTL hết hạn",
|
||
"serveExpiredTTLDesc": "Thời gian hiệu lực (giây) của các mục cache hết hạn; 0 = không bao giờ hết hạn",
|
||
"timeoutMs": "Thời gian chờ (ms)",
|
||
"skipFallback": "Bỏ qua Fallback",
|
||
"finalQuery": "Truy vấn cuối",
|
||
"hosts": "Hosts",
|
||
"hostsAdd": "Thêm Host",
|
||
"hostsEmpty": "Chưa có Host nào",
|
||
"hostsDomain": "Tên miền (vd. domain:example.com)",
|
||
"hostsValues": "IP hoặc tên miền — nhập và nhấn Enter",
|
||
"usePreset": "Dùng mẫu",
|
||
"dnsPresetTitle": "Mẫu DNS",
|
||
"dnsPresetFamily": "Gia đình",
|
||
"clearAll": "Xóa tất cả",
|
||
"clearAllTitle": "Xóa tất cả máy chủ DNS?",
|
||
"clearAllConfirm": "Thao tác này sẽ xóa toàn bộ máy chủ DNS khỏi danh sách. Không thể hoàn tác."
|
||
},
|
||
"fakedns": {
|
||
"add": "Thêm DNS giả",
|
||
"edit": "Chỉnh sửa DNS giả",
|
||
"ipPool": "Mạng con nhóm IP",
|
||
"poolSize": "Kích thước bể bơi"
|
||
}
|
||
}
|
||
},
|
||
"tgbot": {
|
||
"keyboardClosed": "❌ Bàn phím đã đóng!",
|
||
"noResult": "❗ Không có kết quả!",
|
||
"noQuery": "❌ Không tìm thấy truy vấn! Vui lòng sử dụng lại lệnh!",
|
||
"wentWrong": "❌ Đã xảy ra lỗi!",
|
||
"noIpRecord": "❗ Không có bản ghi IP!",
|
||
"noInbounds": "❗ Không tìm thấy inbound!",
|
||
"unlimited": "♾ Không giới hạn (Đặt lại)",
|
||
"add": "Thêm",
|
||
"month": "Tháng",
|
||
"months": "Tháng",
|
||
"day": "Ngày",
|
||
"days": "Ngày",
|
||
"hours": "Giờ",
|
||
"minutes": "Phút",
|
||
"unknown": "Không xác định",
|
||
"inbounds": "Inbound",
|
||
"clients": "Client",
|
||
"offline": "🔴 Ngoại tuyến",
|
||
"online": "🟢 Trực tuyến",
|
||
"commands": {
|
||
"unknown": "❗ Lệnh không rõ",
|
||
"pleaseChoose": "👇 Vui lòng chọn:\r\n",
|
||
"help": "🤖 Chào mừng bạn đến với bot này! Bot được thiết kế để cung cấp cho bạn dữ liệu cụ thể từ máy chủ và cho phép bạn thực hiện các thay đổi cần thiết.\r\n\r\n",
|
||
"start": "👋 Xin chào <i>{{ .Firstname }}</i>.\r\n",
|
||
"welcome": "🤖 Chào mừng đến với bot quản lý của <b>{{ .Hostname }}</b>.\r\n",
|
||
"status": "✅ Bot hoạt động bình thường!",
|
||
"usage": "❗ Vui lòng cung cấp văn bản để tìm kiếm!",
|
||
"getID": "🆔 ID của bạn: <code>{{ .ID }}</code>",
|
||
"helpAdminCommands": "Để khởi động lại Xray Core:\r\n<code>/restart</code>\r\n\r\nĐể tìm kiếm email của khách hàng:\r\n<code>/usage [Email]</code>\r\n\r\nĐể tìm kiếm các nhập (với số liệu thống kê của khách hàng):\r\n<code>/inbound [Ghi chú]</code>\r\n\r\nID Trò chuyện Telegram:\r\n<code>/id</code>",
|
||
"helpClientCommands": "Để tìm kiếm thống kê, sử dụng lệnh sau:\r\n<code>/usage [Email]</code>\r\n\r\nID Trò chuyện Telegram:\r\n<code>/id</code>",
|
||
"restartUsage": "\r\n\r\n<code>/restart</code>",
|
||
"restartSuccess": "✅ Hoạt động thành công!",
|
||
"restartFailed": "❗ Lỗi trong quá trình hoạt động.\r\n\r\n<code>Lỗi: {{ .Error }}</code>.",
|
||
"xrayNotRunning": "❗ Xray Core không chạy.",
|
||
"startDesc": "Hiển thị menu chính",
|
||
"helpDesc": "Trợ giúp bot",
|
||
"statusDesc": "Kiểm tra trạng thái bot",
|
||
"idDesc": "Hiển thị ID Telegram của bạn"
|
||
},
|
||
"messages": {
|
||
"cpuThreshold": "🔴 Sử dụng CPU {{ .Percent }}% vượt quá ngưỡng {{ .Threshold }}%",
|
||
"selectUserFailed": "❌ Lỗi khi chọn người dùng!",
|
||
"userSaved": "✅ Người dùng Telegram đã được lưu.",
|
||
"loginSuccess": "✅ Đăng nhập thành công vào bảng điều khiển.\r\n",
|
||
"loginFailed": "❗️ Đăng nhập vào bảng điều khiển thất bại.\r\n",
|
||
"2faFailed": "Lỗi 2FA",
|
||
"report": "🕰 Báo cáo định kỳ: {{ .RunTime }}\r\n",
|
||
"datetime": "⏰ Ngày-Giờ: {{ .DateTime }}\r\n",
|
||
"hostname": "💻 Tên máy chủ: {{ .Hostname }}\r\n",
|
||
"version": "🚀 Phiên bản X-UI: {{ .Version }}\r\n",
|
||
"xrayVersion": "📡 Phiên bản Xray: {{ .XrayVersion }}\r\n",
|
||
"ipv6": "🌐 IPv6: {{ .IPv6 }}\r\n",
|
||
"ipv4": "🌐 IPv4: {{ .IPv4 }}\r\n",
|
||
"ip": "🌐 IP: {{ .IP }}\r\n",
|
||
"ips": "🔢 Các IP:\r\n{{ .IPs }}\r\n",
|
||
"serverUpTime": "⏳ Thời gian hoạt động của máy chủ: {{ .UpTime }} {{ .Unit }}\r\n",
|
||
"serverLoad": "📈 Tải máy chủ: {{ .Load1 }}, {{ .Load2 }}, {{ .Load3 }}\r\n",
|
||
"serverMemory": "📋 Bộ nhớ máy chủ: {{ .Current }}/{{ .Total }}\r\n",
|
||
"tcpCount": "🔹 Số lượng kết nối TCP: {{ .Count }}\r\n",
|
||
"udpCount": "🔸 Số lượng kết nối UDP: {{ .Count }}\r\n",
|
||
"traffic": "🚦 Lưu lượng: {{ .Total }} (↑{{ .Upload }},↓{{ .Download }})\r\n",
|
||
"xrayStatus": "ℹ️ Trạng thái Xray: {{ .State }}\r\n",
|
||
"username": "👤 Tên người dùng: {{ .Username }}\r\n",
|
||
"reason": "❗️ Lý do: {{ .Reason }}\r\n",
|
||
"time": "⏰ Thời gian: {{ .Time }}\r\n",
|
||
"inbound": "📍 Inbound: {{ .Remark }}\r\n",
|
||
"port": "🔌 Cổng: {{ .Port }}\r\n",
|
||
"expire": "📅 Ngày hết hạn: {{ .Time }}\r\n",
|
||
"expireIn": "📅 Hết hạn sau: {{ .Time }}\r\n",
|
||
"active": "💡 Đang hoạt động: {{ .Enable }}\r\n",
|
||
"enabled": "🚨 Đã bật: {{ .Enable }}\r\n",
|
||
"online": "🌐 Trạng thái kết nối: {{ .Status }}\r\n",
|
||
"lastOnline": "🔙 Lần online gần nhất: {{ .Time }}\r\n",
|
||
"email": "📧 Email: {{ .Email }}\r\n",
|
||
"upload": "🔼 Tải lên: ↑{{ .Upload }}\r\n",
|
||
"download": "🔽 Tải xuống: ↓{{ .Download }}\r\n",
|
||
"total": "📊 Tổng cộng: ↑↓{{ .UpDown }} / {{ .Total }}\r\n",
|
||
"TGUser": "👤 Người dùng Telegram: {{ .TelegramID }}\r\n",
|
||
"exhaustedMsg": "🚨 Sự cạn kiệt {{ .Type }}:\r\n",
|
||
"exhaustedCount": "🚨 Số lần cạn kiệt {{ .Type }}:\r\n",
|
||
"onlinesCount": "🌐 Khách hàng trực tuyến: {{ .Count }}\r\n",
|
||
"disabled": "🛑 Vô hiệu hóa: {{ .Disabled }}\r\n",
|
||
"depleteSoon": "🔜 Sắp cạn kiệt: {{ .Deplete }}\r\n\r\n",
|
||
"backupTime": "🗄 Thời gian sao lưu: {{ .Time }}\r\n",
|
||
"refreshedOn": "\r\n📋🔄 Đã cập nhật lần cuối vào: {{ .Time }}\r\n\r\n",
|
||
"yes": "✅ Có",
|
||
"no": "❌ Không",
|
||
"received_id": "🔑📥 ID đã được cập nhật.",
|
||
"received_password": "🔑📥 Mật khẩu đã được cập nhật.",
|
||
"received_email": "📧📥 Email đã được cập nhật.",
|
||
"received_comment": "💬📥 Bình luận đã được cập nhật.",
|
||
"id_prompt": "🔑 ID mặc định: {{ .ClientId }}\n\nVui lòng nhập ID của bạn.",
|
||
"pass_prompt": "🔑 Mật khẩu mặc định: {{ .ClientPassword }}\n\nVui lòng nhập mật khẩu của bạn.",
|
||
"email_prompt": "📧 Email mặc định: {{ .ClientEmail }}\n\nVui lòng nhập email của bạn.",
|
||
"comment_prompt": "💬 Bình luận mặc định: {{ .ClientComment }}\n\nVui lòng nhập bình luận của bạn.",
|
||
"inbound_client_data_id": "🔄 Kết nối vào: {{ .InboundRemark }}\n\n🔑 ID: {{ .ClientId }}\n📧 Email: {{ .ClientEmail }}\n📊 Dung lượng: {{ .ClientTraffic }}\n📅 Ngày hết hạn: {{ .ClientExp }}\n🌐 Giới hạn IP: {{ .IpLimit }}\n💬 Ghi chú: {{ .ClientComment }}\n\nBây giờ bạn có thể thêm khách hàng vào inbound!",
|
||
"inbound_client_data_pass": "🔄 Kết nối vào: {{ .InboundRemark }}\n\n🔑 Mật khẩu: {{ .ClientPass }}\n📧 Email: {{ .ClientEmail }}\n📊 Dung lượng: {{ .ClientTraffic }}\n📅 Ngày hết hạn: {{ .ClientExp }}\n🌐 Giới hạn IP: {{ .IpLimit }}\n💬 Ghi chú: {{ .ClientComment }}\n\nBây giờ bạn có thể thêm khách hàng vào inbound!",
|
||
"cancel": "❌ Quá trình đã bị hủy! \n\nBạn có thể bắt đầu lại bất cứ lúc nào bằng cách nhập /start. 🔄",
|
||
"error_add_client": "⚠️ Lỗi:\n\n {{ .error }}",
|
||
"using_default_value": "Được rồi, tôi sẽ sử dụng giá trị mặc định. 😊",
|
||
"incorrect_input": "Dữ liệu bạn nhập không hợp lệ.\nCác chuỗi phải liền mạch và không có dấu cách.\nVí dụ đúng: aaaaaa\nVí dụ sai: aaa aaa 🚫",
|
||
"AreYouSure": "Bạn có chắc không? 🤔",
|
||
"SuccessResetTraffic": "📧 Email: {{ .ClientEmail }}\n🏁 Kết quả: ✅ Thành công",
|
||
"FailedResetTraffic": "📧 Email: {{ .ClientEmail }}\n🏁 Kết quả: ❌ Thất bại \n\n🛠️ Lỗi: [ {{ .ErrorMessage }} ]",
|
||
"FinishProcess": "🔚 Quá trình đặt lại lưu lượng đã hoàn tất cho tất cả khách hàng."
|
||
},
|
||
"buttons": {
|
||
"closeKeyboard": "❌ Đóng Bàn Phím",
|
||
"cancel": "❌ Hủy",
|
||
"cancelReset": "❌ Hủy Đặt Lại",
|
||
"cancelIpLimit": "❌ Hủy Giới Hạn IP",
|
||
"confirmResetTraffic": "✅ Xác Nhận Đặt Lại Lưu Lượng?",
|
||
"confirmClearIps": "✅ Xác Nhận Xóa Các IP?",
|
||
"confirmRemoveTGUser": "✅ Xác Nhận Xóa Người Dùng Telegram?",
|
||
"confirmToggle": "✅ Xác nhận Bật/Tắt người dùng?",
|
||
"dbBackup": "Tải bản sao lưu cơ sở dữ liệu",
|
||
"serverUsage": "Sử Dụng Máy Chủ",
|
||
"getInbounds": "Lấy cổng vào",
|
||
"depleteSoon": "Depleted Soon",
|
||
"clientUsage": "Lấy Sử Dụng",
|
||
"onlines": "Khách hàng trực tuyến",
|
||
"commands": "Lệnh",
|
||
"refresh": "🔄 Cập Nhật",
|
||
"clearIPs": "❌ Xóa IP",
|
||
"removeTGUser": "❌ Xóa Người Dùng Telegram",
|
||
"selectTGUser": "👤 Chọn Người Dùng Telegram",
|
||
"selectOneTGUser": "👤 Chọn một người dùng telegram:",
|
||
"resetTraffic": "📈 Đặt Lại Lưu Lượng",
|
||
"resetExpire": "📅 Thay đổi ngày hết hạn",
|
||
"ipLog": "🔢 Nhật ký địa chỉ IP",
|
||
"ipLimit": "🔢 Giới Hạn địa chỉ IP",
|
||
"setTGUser": "👤 Đặt Người Dùng Telegram",
|
||
"toggle": "🔘 Bật / Tắt",
|
||
"custom": "🔢 Tùy chỉnh",
|
||
"confirmNumber": "✅ Xác nhận: {{ .Num }}",
|
||
"confirmNumberAdd": "✅ Xác nhận thêm: {{ .Num }}",
|
||
"limitTraffic": "🚧 Giới hạn lưu lượng",
|
||
"getBanLogs": "Cấm nhật ký",
|
||
"allClients": "Tất cả Khách hàng",
|
||
"addClient": "Thêm Khách Hàng",
|
||
"submitDisable": "Gửi Dưới Dạng Vô Hiệu ☑️",
|
||
"submitEnable": "Gửi Dưới Dạng Kích Hoạt ✅",
|
||
"use_default": "🏷️ Sử Dụng Mặc Định",
|
||
"change_id": "⚙️🔑 ID",
|
||
"change_password": "⚙️🔑 Mật Khẩu",
|
||
"change_email": "⚙️📧 Email",
|
||
"change_comment": "⚙️💬 Bình Luận",
|
||
"change_flow": "⚙️🚦 Flow",
|
||
"ResetAllTraffics": "Đặt lại tất cả lưu lượng",
|
||
"SortedTrafficUsageReport": "Báo cáo sử dụng lưu lượng đã sắp xếp"
|
||
},
|
||
"answers": {
|
||
"successfulOperation": "✅ Thành công!",
|
||
"errorOperation": "❗ Lỗi Trong Quá Trình Thực Hiện.",
|
||
"getInboundsFailed": "❌ Không Thể Lấy Được Inbounds",
|
||
"getClientsFailed": "❌ Không thể lấy khách hàng.",
|
||
"canceled": "❌ {{ .Email }} : Thao Tác Đã Bị Hủy.",
|
||
"clientRefreshSuccess": "✅ {{ .Email }} : Cập Nhật Thành Công Cho Khách Hàng.",
|
||
"IpRefreshSuccess": "✅ {{ .Email }} : Cập Nhật Thành Công Cho IPs.",
|
||
"TGIdRefreshSuccess": "✅ {{ .Email }} : Cập Nhật Thành Công Cho Người Dùng Telegram.",
|
||
"resetTrafficSuccess": "✅ {{ .Email }} : Đặt Lại Lưu Lượng Thành Công.",
|
||
"setTrafficLimitSuccess": "✅ {{ .Email }} : Đã lưu thành công giới hạn lưu lượng.",
|
||
"expireResetSuccess": "✅ {{ .Email }} : Đặt Lại Ngày Hết Hạn Thành Công.",
|
||
"resetIpSuccess": "✅ {{ .Email }} : Giới Hạn IP {{ .Count }} Đã Được Lưu Thành Công.",
|
||
"clearIpSuccess": "✅ {{ .Email }} : IP Đã Được Xóa Thành Công.",
|
||
"getIpLog": "✅ {{ .Email }} : Lấy nhật ký IP Thành Công.",
|
||
"getUserInfo": "✅ {{ .Email }} : Lấy Thông Tin Người Dùng Telegram Thành Công.",
|
||
"removedTGUserSuccess": "✅ {{ .Email }} : Người Dùng Telegram Đã Được Xóa Thành Công.",
|
||
"enableSuccess": "✅ {{ .Email }} : Đã Bật Thành Công.",
|
||
"disableSuccess": "✅ {{ .Email }} : Đã Tắt Thành Công.",
|
||
"askToAddUserId": "Cấu hình của bạn không được tìm thấy!\r\nVui lòng yêu cầu Quản trị viên sử dụng ID người dùng telegram của bạn trong cấu hình của bạn.\r\n\r\nID người dùng của bạn: <code>{{ .TgUserID }}</code>",
|
||
"chooseClient": "Chọn một Khách hàng cho Inbound {{ .Inbound }}",
|
||
"chooseInbound": "Chọn một Inbound"
|
||
}
|
||
}
|
||
} |