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/modals
parentfe3b1c9b52f584b0f045907585b206344fed55db (diff)
chore: toasts translation refactoring
Diffstat (limited to 'web/html/modals')
-rw-r--r--web/html/modals/warp_modal.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/modals/warp_modal.html b/web/html/modals/warp_modal.html
index 14426472..4bfb7ca1 100644
--- a/web/html/modals/warp_modal.html
+++ b/web/html/modals/warp_modal.html
@@ -3,7 +3,7 @@
:confirm-loading="warpModal.confirmLoading" :closable="true" :mask-closable="true"
:footer="null" :class="themeSwitcher.currentTheme">
<template v-if="ObjectUtil.isEmpty(warpModal.warpData)">
- <a-button icon="api" @click="register" :loading="warpModal.confirmLoading">{{ i18n "pages.inbounds.create" }}</a-button>
+ <a-button icon="api" @click="register" :loading="warpModal.confirmLoading">{{ i18n "create" }}</a-button>
</template>
<template v-else>
<table :style="{ margin: '5px 0', width: '100%' }">
@@ -32,7 +32,7 @@
<a-form-item label="Key">
<a-input v-model="warpPlus"></a-input>
<a-button @click="updateLicense(warpPlus)" :disabled="warpPlus.length<26"
- :loading="warpModal.confirmLoading">{{ i18n "pages.inbounds.update" }}</a-button>
+ :loading="warpModal.confirmLoading">{{ i18n "update" }}</a-button>
</a-form-item>
</a-form>
</a-collapse-panel>