Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-05-09 06:46:29 +0300
committerGitHub <noreply@github.com>2025-05-09 06:46:29 +0300
commit1ddfe4aba3ff16df9e5006051407d2488ffe4a59 (patch)
tree28eb61df88797217558fd168e3a3bac7b49dc7b6 /web/html/inbounds.html
parentfe3b1c9b52f584b0f045907585b206344fed55db (diff)
chore: toasts translation refactoring
Diffstat (limited to 'web/html/inbounds.html')
-rw-r--r--web/html/inbounds.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/inbounds.html b/web/html/inbounds.html
index cadcb95a..f632a5cc 100644
--- a/web/html/inbounds.html
+++ b/web/html/inbounds.html
@@ -978,7 +978,7 @@
openAddInbound() {
inModal.show({
title: '{{ i18n "pages.inbounds.addInbound"}}',
- okText: '{{ i18n "pages.inbounds.create"}}',
+ okText: '{{ i18n "create"}}',
cancelText: '{{ i18n "close" }}',
confirm: async (inbound, dbInbound) => {
await this.addInbound(inbound, dbInbound, inModal);
@@ -991,7 +991,7 @@
const inbound = dbInbound.toInbound();
inModal.show({
title: '{{ i18n "pages.inbounds.modifyInbound"}}',
- okText: '{{ i18n "pages.inbounds.update"}}',
+ okText: '{{ i18n "update"}}',
cancelText: '{{ i18n "close" }}',
inbound: inbound,
dbInbound: dbInbound,