mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-04-20 05:52:24 +00:00
chore: replace settings list with settings collapse panels
This commit is contained in:
parent
24d98acd14
commit
fb02a9a89a
13 changed files with 574 additions and 474 deletions
|
@ -108,9 +108,10 @@
|
||||||
</a-row>
|
</a-row>
|
||||||
</a-card>
|
</a-card>
|
||||||
<a-tabs default-active-key="1">
|
<a-tabs default-active-key="1">
|
||||||
<a-tab-pane key="1" tab='{{ i18n "pages.settings.panelSettings"}}'>
|
<a-tab-pane key="1" tab='{{ i18n "pages.settings.panelSettings" }}' style="padding-top: 20px;">
|
||||||
<a-list item-layout="horizontal" split="false">
|
<a-collapse>
|
||||||
<a-setting-list-item>
|
<a-collapse-panel header='{{ i18n "pages.xray.generalConfigs"}}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>
|
<template #title>
|
||||||
{{ i18n "pages.settings.remarkModel"}}
|
{{ i18n "pages.settings.remarkModel"}}
|
||||||
</template>
|
</template>
|
||||||
|
@ -131,115 +132,49 @@
|
||||||
</a-input-group>
|
</a-input-group>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.panelListeningIP"}}</template>
|
<template #title>{{ i18n "pages.settings.panelListeningIP"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.panelListeningIPDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.panelListeningIPDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.webListen"></a-input>
|
<a-input type="text" v-model="allSetting.webListen"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.panelListeningDomain"}}</template>
|
<template #title>{{ i18n "pages.settings.panelListeningDomain"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.panelListeningDomainDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.panelListeningDomainDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.webDomain"></a-input>
|
<a-input type="text" v-model="allSetting.webDomain"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.panelPort"}}</template>
|
<template #title>{{ i18n "pages.settings.panelPort"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.panelPortDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.panelPortDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input-number :min="1" :min="65531" v-model="allSetting.webPort" style="width: 100%;"></a-input>
|
<a-input-number :min="1" :min="65531" v-model="allSetting.webPort" style="width: 100%;"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.publicKeyPath"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.publicKeyPathDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" v-model="allSetting.webCertFile"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.privateKeyPath"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.privateKeyPathDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" v-model="allSetting.webKeyFile"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.panelUrlPath"}}</template>
|
<template #title>{{ i18n "pages.settings.panelUrlPath"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.panelUrlPathDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.panelUrlPathDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.webBasePath"></a-input>
|
<a-input type="text" v-model="allSetting.webBasePath"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.sessionMaxAge" }}</template>
|
<template #title>{{ i18n "pages.settings.sessionMaxAge" }}</template>
|
||||||
<template #description>{{ i18n "pages.settings.sessionMaxAgeDesc" }}</template>
|
<template #description>{{ i18n "pages.settings.sessionMaxAgeDesc" }}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input-number :min="60" v-model="allSetting.sessionMaxAge" style="width: 100%;"></a-input>
|
<a-input-number :min="60" v-model="allSetting.sessionMaxAge" style="width: 100%;"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.pageSize" }}</template>
|
<template #title>{{ i18n "pages.settings.pageSize" }}</template>
|
||||||
<template #description>{{ i18n "pages.settings.pageSizeDesc" }}</template>
|
<template #description>{{ i18n "pages.settings.pageSizeDesc" }}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input-number :min="0" step="5" v-model="allSetting.pageSize" style="width: 100%;"></a-input>
|
<a-input-number :min="0" step="5" v-model="allSetting.pageSize" style="width: 100%;"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.expireTimeDiff" }}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.expireTimeDiffDesc" }}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input-number :min="0" v-model="allSetting.expireDiff" style="width: 100%;"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.trafficDiff" }}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.trafficDiffDesc" }}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input-number :min="0" v-model="allSetting.trafficDiff" style="width: 100%;"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.externalTrafficInformEnable"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.externalTrafficInformEnableDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-switch v-model="allSetting.externalTrafficInformEnable"></a-switch>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.externalTrafficInformURI"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.externalTrafficInformURIDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" placeholder="(http|https)://domain[:port]/path/" v-model="allSetting.externalTrafficInformURI"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.timeZone"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.timeZoneDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" v-model="allSetting.timeLocation"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.datepicker"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.datepickerDescription"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-select style="width: 100%" :dropdown-class-name="themeSwitcher.currentTheme" v-model="datepicker">
|
|
||||||
<a-select-option v-for="item in datepickerList" :value="item.value">
|
|
||||||
<span v-text="item.name"></span>
|
|
||||||
</a-select-option>
|
|
||||||
</a-select>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.timeZone"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" v-model="allSetting.timeLocation"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>Language</template>
|
<template #title>Language</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-select ref="selectLang"
|
<a-select ref="selectLang"
|
||||||
|
@ -253,7 +188,76 @@
|
||||||
</a-select>
|
</a-select>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
</a-list>
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.notifications" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.expireTimeDiff" }}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.expireTimeDiffDesc" }}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input-number :min="0" v-model="allSetting.expireDiff" style="width: 100%;"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.trafficDiff" }}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.trafficDiffDesc" }}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input-number :min="0" v-model="allSetting.trafficDiff" style="width: 100%;"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.certs" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.publicKeyPath"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.publicKeyPathDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" v-model="allSetting.webCertFile"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.privateKeyPath"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.privateKeyPathDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" v-model="allSetting.webKeyFile"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.externalTraffic" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.externalTrafficInformEnable"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.externalTrafficInformEnableDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-switch v-model="allSetting.externalTrafficInformEnable"></a-switch>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.externalTrafficInformURI"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.externalTrafficInformURIDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" placeholder="(http|https)://domain[:port]/path/" v-model="allSetting.externalTrafficInformURI"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.dateAndTime" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.timeZone"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.timeZoneDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" v-model="allSetting.timeLocation"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.datepicker"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.datepickerDescription"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-select style="width: 100%" :dropdown-class-name="themeSwitcher.currentTheme" v-model="datepicker">
|
||||||
|
<a-select-option v-for="item in datepickerList" :value="item.value">
|
||||||
|
<span v-text="item.name"></span>
|
||||||
|
</a-select-option>
|
||||||
|
</a-select>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
</a-collapse-panel>
|
||||||
|
</a-collapse>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
<a-tab-pane key="2" tab='{{ i18n "pages.settings.securitySettings" }}' style="padding-top: 20px;">
|
<a-tab-pane key="2" tab='{{ i18n "pages.settings.securitySettings" }}' style="padding-top: 20px;">
|
||||||
<a-collapse>
|
<a-collapse>
|
||||||
|
@ -312,72 +316,31 @@
|
||||||
</a-collapse-panel>
|
</a-collapse-panel>
|
||||||
</a-collapse>
|
</a-collapse>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
<a-tab-pane key="3" tab='{{ i18n "pages.settings.TGBotSettings"}}'>
|
<a-tab-pane key="3" tab='{{ i18n "pages.settings.TGBotSettings" }}' style="padding-top: 20px;">
|
||||||
<a-list item-layout="horizontal" split="false">
|
<a-collapse>
|
||||||
<a-setting-list-item>
|
<a-collapse-panel header='{{ i18n "pages.xray.generalConfigs"}}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.telegramBotEnable" }}</template>
|
<template #title>{{ i18n "pages.settings.telegramBotEnable" }}</template>
|
||||||
<template #description>{{ i18n "pages.settings.telegramBotEnableDesc" }}</template>
|
<template #description>{{ i18n "pages.settings.telegramBotEnableDesc" }}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-switch v-model="allSetting.tgBotEnable"></a-switch>
|
<a-switch v-model="allSetting.tgBotEnable"></a-switch>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.telegramToken"}}</template>
|
<template #title>{{ i18n "pages.settings.telegramToken"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.telegramTokenDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.telegramTokenDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.tgBotToken"></a-input>
|
<a-input type="text" v-model="allSetting.tgBotToken"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.telegramChatId"}}</template>
|
<template #title>{{ i18n "pages.settings.telegramChatId"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.telegramChatIdDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.telegramChatIdDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.tgBotChatId"></a-input>
|
<a-input type="text" v-model="allSetting.tgBotChatId"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.telegramNotifyTime"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.telegramNotifyTimeDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" v-model="allSetting.tgRunTime"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.tgNotifyBackup" }}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.tgNotifyBackupDesc" }}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-switch v-model="allSetting.tgBotBackup"></a-switch>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.tgNotifyLogin" }}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.tgNotifyLoginDesc" }}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-switch v-model="allSetting.tgBotLoginNotify"></a-switch>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.tgNotifyCpu" }}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.tgNotifyCpuDesc" }}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input-number :min="0" :min="100" v-model="allSetting.tgCpu"></a-switch>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.telegramProxy"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.telegramProxyDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" placeholder="socks5://user:pass@host:port" v-model="allSetting.tgBotProxy"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.telegramAPIServer"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.telegramAPIServerDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" placeholder="https://api.example.com" v-model="allSetting.tgBotAPIServer"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>Telegram Bot Language</template>
|
<template #title>Telegram Bot Language</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-select ref="selectBotLang" v-model="allSetting.tgLang" :dropdown-class-name="themeSwitcher.currentTheme" style="width: 100%">
|
<a-select ref="selectBotLang" v-model="allSetting.tgLang" :dropdown-class-name="themeSwitcher.currentTheme" style="width: 100%">
|
||||||
|
@ -387,113 +350,171 @@
|
||||||
</a-select>
|
</a-select>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
</a-list>
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.notifications" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.telegramNotifyTime"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.telegramNotifyTimeDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" v-model="allSetting.tgRunTime"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.tgNotifyBackup" }}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.tgNotifyBackupDesc" }}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-switch v-model="allSetting.tgBotBackup"></a-switch>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.tgNotifyLogin" }}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.tgNotifyLoginDesc" }}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-switch v-model="allSetting.tgBotLoginNotify"></a-switch>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.tgNotifyCpu" }}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.tgNotifyCpuDesc" }}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input-number :min="0" :min="100" v-model="allSetting.tgCpu"></a-switch>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.proxyAndServer" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.telegramProxy"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.telegramProxyDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" placeholder="socks5://user:pass@host:port" v-model="allSetting.tgBotProxy"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.telegramAPIServer"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.telegramAPIServerDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" placeholder="https://api.example.com" v-model="allSetting.tgBotAPIServer"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
</a-collapse-panel>
|
||||||
|
</a-collapse>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
<a-tab-pane key="4" tab='{{ i18n "pages.settings.subSettings" }}'>
|
<a-tab-pane key="4" tab='{{ i18n "pages.settings.subSettings" }}' style="padding-top: 20px;">
|
||||||
<a-list item-layout="horizontal" split="false">
|
<a-collapse>
|
||||||
<a-setting-list-item>
|
<a-collapse-panel header='{{ i18n "pages.xray.generalConfigs"}}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subEnable"}}</template>
|
<template #title>{{ i18n "pages.settings.subEnable"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subEnableDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subEnableDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-switch v-model="allSetting.subEnable"></a-switch>
|
<a-switch v-model="allSetting.subEnable"></a-switch>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subEncrypt"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.subEncryptDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-switch v-model="allSetting.subEncrypt"></a-switch>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.subShowInfo"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.subShowInfoDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-switch v-model="allSetting.subShowInfo"></a-switch>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.subListen"}}</template>
|
<template #title>{{ i18n "pages.settings.subListen"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subListenDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subListenDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.subListen"></a-input>
|
<a-input type="text" v-model="allSetting.subListen"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subDomain"}}</template>
|
<template #title>{{ i18n "pages.settings.subDomain"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subDomainDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subDomainDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.subDomain"></a-input>
|
<a-input type="text" v-model="allSetting.subDomain"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subPort"}}</template>
|
<template #title>{{ i18n "pages.settings.subPort"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subPortDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subPortDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input-number v-model="allSetting.subPort" :min="1" :min="65531" style="width: 100%;"></a-input-number>
|
<a-input-number v-model="allSetting.subPort" :min="1" :min="65531" style="width: 100%;"></a-input-number>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subPath"}}</template>
|
<template #title>{{ i18n "pages.settings.subPath"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subPathDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subPathDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.subPath"></a-input>
|
<a-input type="text" v-model="allSetting.subPath"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subCertPath"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.subCertPathDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" v-model="allSetting.subCertFile"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.subKeyPath"}}</template>
|
|
||||||
<template #description>{{ i18n "pages.settings.subKeyPathDesc"}}</template>
|
|
||||||
<template #control>
|
|
||||||
<a-input type="text" v-model="allSetting.subKeyFile"></a-input>
|
|
||||||
</template>
|
|
||||||
</a-setting-list-item>
|
|
||||||
<a-setting-list-item>
|
|
||||||
<template #title>{{ i18n "pages.settings.subURI"}}</template>
|
<template #title>{{ i18n "pages.settings.subURI"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subURIDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subURIDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" placeholder="(http|https)://domain[:port]/path/" v-model="allSetting.subURI"></a-input>
|
<a-input type="text" placeholder="(http|https)://domain[:port]/path/" v-model="allSetting.subURI"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.information" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.subEncrypt"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.subEncryptDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-switch v-model="allSetting.subEncrypt"></a-switch>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.subShowInfo"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.subShowInfoDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-switch v-model="allSetting.subShowInfo"></a-switch>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.certs" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.subCertPath"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.subCertPathDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" v-model="allSetting.subCertFile"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
|
<template #title>{{ i18n "pages.settings.subKeyPath"}}</template>
|
||||||
|
<template #description>{{ i18n "pages.settings.subKeyPathDesc"}}</template>
|
||||||
|
<template #control>
|
||||||
|
<a-input type="text" v-model="allSetting.subKeyFile"></a-input>
|
||||||
|
</template>
|
||||||
|
</a-setting-list-item>
|
||||||
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.intervals"}}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subUpdates"}}</template>
|
<template #title>{{ i18n "pages.settings.subUpdates"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subUpdatesDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subUpdatesDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input-number :min="1" v-model="allSetting.subUpdates"></a-input-number>
|
<a-input-number :min="1" v-model="allSetting.subUpdates" style="width: 100%;"></a-input-number>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
</a-list>
|
</a-collapse-panel>
|
||||||
|
</a-collapse>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
<a-tab-pane key="5" tab='{{ i18n "pages.settings.subSettings" }} Json' v-if="allSetting.subEnable">
|
<a-tab-pane key="5" tab='{{ i18n "pages.settings.subSettings" }} Json' v-if="allSetting.subEnable" style="padding-top: 20px;">
|
||||||
<a-list item-layout="horizontal" split="false">
|
<a-collapse>
|
||||||
<a-setting-list-item>
|
<a-collapse-panel header='{{ i18n "pages.xray.generalConfigs"}}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subPath"}}</template>
|
<template #title>{{ i18n "pages.settings.subPath"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subPathDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subPathDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" v-model="allSetting.subJsonPath"></a-input>
|
<a-input type="text" v-model="allSetting.subJsonPath"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.subURI"}}</template>
|
<template #title>{{ i18n "pages.settings.subURI"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.subURIDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.subURIDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-input type="text" placeholder="(http|https)://domain[:port]/path/" v-model="allSetting.subJsonURI"></a-input>
|
<a-input type="text" placeholder="(http|https)://domain[:port]/path/" v-model="allSetting.subJsonURI"></a-input>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-setting-list-item>
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.fragment"}}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.fragment"}}</template>
|
<template #title>{{ i18n "pages.settings.fragment"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.fragmentDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.fragmentDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-switch v-model="fragment"></a-switch>
|
<a-switch v-model="fragment"></a-switch>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-list-item v-if="fragment" style="padding: 20px;">
|
<a-list-item v-if="fragment" style="padding: 10px 20px;">
|
||||||
<a-collapse>
|
<a-collapse>
|
||||||
<a-collapse-panel header='{{ i18n "pages.settings.fragmentSett"}}' v-if="fragment">
|
<a-collapse-panel header='{{ i18n "pages.settings.fragmentSett"}}' v-if="fragment">
|
||||||
<a-setting-list-item paddings="small">
|
<a-setting-list-item paddings="small">
|
||||||
|
@ -517,14 +538,16 @@
|
||||||
</a-collapse-panel>
|
</a-collapse-panel>
|
||||||
</a-collapse>
|
</a-collapse>
|
||||||
</a-list-item>
|
</a-list-item>
|
||||||
<a-setting-list-item>
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header="Noises">
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>Noises</template>
|
<template #title>Noises</template>
|
||||||
<template #description>{{ i18n "pages.settings.noisesDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.noisesDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-switch v-model="noises"></a-switch>
|
<a-switch v-model="noises"></a-switch>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-list-item v-if="noises" style="padding: 20px">
|
<a-list-item v-if="noises" style="padding: 10px 20px;">
|
||||||
<a-collapse>
|
<a-collapse>
|
||||||
<a-collapse-panel v-for="(noise, index) in noisesArray" :key="index" :header="`Noise №${index + 1}`">
|
<a-collapse-panel v-for="(noise, index) in noisesArray" :key="index" :header="`Noise №${index + 1}`">
|
||||||
<a-setting-list-item paddings="small">
|
<a-setting-list-item paddings="small">
|
||||||
|
@ -556,14 +579,16 @@
|
||||||
</a-collapse>
|
</a-collapse>
|
||||||
<a-button v-if="noises" type="primary" @click="addNoise" style="margin-top: 10px">Add Noise</a-button>
|
<a-button v-if="noises" type="primary" @click="addNoise" style="margin-top: 10px">Add Noise</a-button>
|
||||||
</a-list-item>
|
</a-list-item>
|
||||||
<a-setting-list-item>
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.mux"}}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.mux"}}</template>
|
<template #title>{{ i18n "pages.settings.mux"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.muxDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.muxDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-switch v-model="enableMux"></a-switch>
|
<a-switch v-model="enableMux"></a-switch>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-list-item v-if="enableMux" style="padding: 20px">
|
<a-list-item v-if="enableMux" style="padding: 10px 20px;">
|
||||||
<a-collapse>
|
<a-collapse>
|
||||||
<a-collapse-panel header='{{ i18n "pages.settings.muxSett"}}'>
|
<a-collapse-panel header='{{ i18n "pages.settings.muxSett"}}'>
|
||||||
<a-setting-list-item paddings="small">
|
<a-setting-list-item paddings="small">
|
||||||
|
@ -589,14 +614,16 @@
|
||||||
</a-collapse-panel>
|
</a-collapse-panel>
|
||||||
</a-collapse>
|
</a-collapse>
|
||||||
</a-list-item>
|
</a-list-item>
|
||||||
<a-setting-list-item>
|
</a-collapse-panel>
|
||||||
|
<a-collapse-panel header='{{ i18n "pages.settings.direct" }}'>
|
||||||
|
<a-setting-list-item paddings="small">
|
||||||
<template #title>{{ i18n "pages.settings.direct"}}</template>
|
<template #title>{{ i18n "pages.settings.direct"}}</template>
|
||||||
<template #description>{{ i18n "pages.settings.directDesc"}}</template>
|
<template #description>{{ i18n "pages.settings.directDesc"}}</template>
|
||||||
<template #control>
|
<template #control>
|
||||||
<a-switch v-model="enableDirect"></a-switch>
|
<a-switch v-model="enableDirect"></a-switch>
|
||||||
</template>
|
</template>
|
||||||
</a-setting-list-item>
|
</a-setting-list-item>
|
||||||
<a-list-item v-if="enableDirect" style="padding: 20px">
|
<a-list-item v-if="enableDirect" style="padding: 10px 20px;">
|
||||||
<a-collapse>
|
<a-collapse>
|
||||||
<a-collapse-panel header='{{ i18n "pages.settings.direct"}}'>
|
<a-collapse-panel header='{{ i18n "pages.settings.direct"}}'>
|
||||||
<a-setting-list-item paddings="small">
|
<a-setting-list-item paddings="small">
|
||||||
|
@ -618,7 +645,8 @@
|
||||||
</a-collapse-panel>
|
</a-collapse-panel>
|
||||||
</a-collapse>
|
</a-collapse>
|
||||||
</a-list-item>
|
</a-list-item>
|
||||||
</a-list>
|
</a-collapse-panel>
|
||||||
|
</a-collapse>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
</a-tabs>
|
</a-tabs>
|
||||||
</a-space>
|
</a-space>
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "Mux Settings"
|
"muxSett" = "Mux Settings"
|
||||||
"direct" = "Direct Connection"
|
"direct" = "Direct Connection"
|
||||||
"directDesc" = "Directly establishes connections with domains or IP ranges of a specific country."
|
"directDesc" = "Directly establishes connections with domains or IP ranges of a specific country."
|
||||||
|
"notifications" = "Notifications"
|
||||||
|
"certs" = "Certificaties"
|
||||||
|
"externalTraffic" = "External Traffic"
|
||||||
|
"dateAndTime" = "Date and Time"
|
||||||
|
"proxyAndServer" = "Proxy and Server"
|
||||||
|
"intervals" = "Intervals"
|
||||||
|
"information" = "Information"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Xray Configs"
|
"title" = "Xray Configs"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "Pool Size"
|
"poolSize" = "Pool Size"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "Admin"
|
"admin" = "Admin credentinals"
|
||||||
"secret" = "Secret Token"
|
"secret" = "Secret Token"
|
||||||
"loginSecurity" = "Secure Login"
|
"loginSecurity" = "Secure Login"
|
||||||
"loginSecurityDesc" = "Adds an additional layer of authentication to provide more security."
|
"loginSecurityDesc" = "Adds an additional layer of authentication to provide more security."
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "Configuración Mux"
|
"muxSett" = "Configuración Mux"
|
||||||
"direct" = "Conexión Directa"
|
"direct" = "Conexión Directa"
|
||||||
"directDesc" = "Establece conexiones directas con dominios o rangos de IP de un país específico."
|
"directDesc" = "Establece conexiones directas con dominios o rangos de IP de un país específico."
|
||||||
|
"notifications" = "Notificaciones"
|
||||||
|
"certs" = "Certificados"
|
||||||
|
"externalTraffic" = "Tráfico Externo"
|
||||||
|
"dateAndTime" = "Fecha y Hora"
|
||||||
|
"proxyAndServer" = "Proxy y Servidor"
|
||||||
|
"intervals" = "Intervalos"
|
||||||
|
"information" = "Información"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Xray Configuración"
|
"title" = "Xray Configuración"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "Tamaño del grupo"
|
"poolSize" = "Tamaño del grupo"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "Administrador"
|
"admin" = "Credenciales de administrador"
|
||||||
"secret" = "Token Secreto"
|
"secret" = "Token Secreto"
|
||||||
"loginSecurity" = "Seguridad de Inicio de Sesión"
|
"loginSecurity" = "Seguridad de Inicio de Sesión"
|
||||||
"loginSecurityDesc" = "Habilitar un paso adicional de seguridad para el inicio de sesión de usuarios."
|
"loginSecurityDesc" = "Habilitar un paso adicional de seguridad para el inicio de sesión de usuarios."
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "تنظیمات ماکس"
|
"muxSett" = "تنظیمات ماکس"
|
||||||
"direct" = "اتصال مستقیم"
|
"direct" = "اتصال مستقیم"
|
||||||
"directDesc" = "به طور مستقیم با دامنه ها یا محدوده آیپی یک کشور خاص ارتباط برقرار می کند"
|
"directDesc" = "به طور مستقیم با دامنه ها یا محدوده آیپی یک کشور خاص ارتباط برقرار می کند"
|
||||||
|
"notifications" = "اعلانها"
|
||||||
|
"certs" = "گواهیها"
|
||||||
|
"externalTraffic" = "ترافیک خارجی"
|
||||||
|
"dateAndTime" = "تاریخ و زمان"
|
||||||
|
"proxyAndServer" = "پراکسی و سرور"
|
||||||
|
"intervals" = "فواصل"
|
||||||
|
"information" = "اطلاعات"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "پیکربندی ایکسری"
|
"title" = "پیکربندی ایکسری"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "اندازه استخر"
|
"poolSize" = "اندازه استخر"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "مدیر"
|
"admin" = "اعتبارنامههای ادمین"
|
||||||
"secret" = "توکن مخفی"
|
"secret" = "توکن مخفی"
|
||||||
"loginSecurity" = "ورود ایمن"
|
"loginSecurity" = "ورود ایمن"
|
||||||
"loginSecurityDesc" = "یک لایه اضافی از احراز هویت برای ایجاد امنیت بیشتر اضافه می کند"
|
"loginSecurityDesc" = "یک لایه اضافی از احراز هویت برای ایجاد امنیت بیشتر اضافه می کند"
|
||||||
|
|
|
@ -320,7 +320,13 @@
|
||||||
"muxSett" = "Pengaturan Mux"
|
"muxSett" = "Pengaturan Mux"
|
||||||
"direct" = "Koneksi langsung"
|
"direct" = "Koneksi langsung"
|
||||||
"directDesc" = "Secara langsung membuat koneksi dengan domain atau rentang IP negara tertentu."
|
"directDesc" = "Secara langsung membuat koneksi dengan domain atau rentang IP negara tertentu."
|
||||||
|
"notifications" = "Notifikasi"
|
||||||
|
"certs" = "Sertifikat"
|
||||||
|
"externalTraffic" = "Lalu Lintas Eksternal"
|
||||||
|
"dateAndTime" = "Tanggal dan Waktu"
|
||||||
|
"proxyAndServer" = "Proxy dan Server"
|
||||||
|
"intervals" = "Interval"
|
||||||
|
"information" = "Informasi"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Konfigurasi Xray"
|
"title" = "Konfigurasi Xray"
|
||||||
|
@ -461,7 +467,7 @@
|
||||||
"poolSize" = "Ukuran Kolam"
|
"poolSize" = "Ukuran Kolam"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "Admin"
|
"admin" = "Kredensial admin"
|
||||||
"secret" = "Token Rahasia"
|
"secret" = "Token Rahasia"
|
||||||
"loginSecurity" = "Login Aman"
|
"loginSecurity" = "Login Aman"
|
||||||
"loginSecurityDesc" = "Menambahkan lapisan otentikasi tambahan untuk memberikan keamanan lebih."
|
"loginSecurityDesc" = "Menambahkan lapisan otentikasi tambahan untuk memberikan keamanan lebih."
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "マルチプレクサ設定"
|
"muxSett" = "マルチプレクサ設定"
|
||||||
"direct" = "直接接続"
|
"direct" = "直接接続"
|
||||||
"directDesc" = "特定の国のドメインまたはIP範囲に直接接続する"
|
"directDesc" = "特定の国のドメインまたはIP範囲に直接接続する"
|
||||||
|
"notifications" = "通知"
|
||||||
|
"certs" = "証明書"
|
||||||
|
"externalTraffic" = "外部トラフィック"
|
||||||
|
"dateAndTime" = "日付と時刻"
|
||||||
|
"proxyAndServer" = "プロキシとサーバー"
|
||||||
|
"intervals" = "間隔"
|
||||||
|
"information" = "情報"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Xray 設定"
|
"title" = "Xray 設定"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "プールサイズ"
|
"poolSize" = "プールサイズ"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "管理者"
|
"admin" = "管理者の資格情報"
|
||||||
"secret" = "セキュリティトークン"
|
"secret" = "セキュリティトークン"
|
||||||
"loginSecurity" = "ログインセキュリティ"
|
"loginSecurity" = "ログインセキュリティ"
|
||||||
"loginSecurityDesc" = "追加の認証を追加してセキュリティを向上させる"
|
"loginSecurityDesc" = "追加の認証を追加してセキュリティを向上させる"
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "Configurações de Mux"
|
"muxSett" = "Configurações de Mux"
|
||||||
"direct" = "Conexão Direta"
|
"direct" = "Conexão Direta"
|
||||||
"directDesc" = "Estabelece conexões diretamente com domínios ou intervalos de IP de um país específico."
|
"directDesc" = "Estabelece conexões diretamente com domínios ou intervalos de IP de um país específico."
|
||||||
|
"notifications" = "Notificações"
|
||||||
|
"certs" = "Certificados"
|
||||||
|
"externalTraffic" = "Tráfego Externo"
|
||||||
|
"dateAndTime" = "Data e Hora"
|
||||||
|
"proxyAndServer" = "Proxy e Servidor"
|
||||||
|
"intervals" = "Intervalos"
|
||||||
|
"information" = "Informação"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Configurações Xray"
|
"title" = "Configurações Xray"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "Tamanho do Pool"
|
"poolSize" = "Tamanho do Pool"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "Admin"
|
"admin" = "Credenciais de administrador"
|
||||||
"secret" = "Token Secreto"
|
"secret" = "Token Secreto"
|
||||||
"loginSecurity" = "Login Seguro"
|
"loginSecurity" = "Login Seguro"
|
||||||
"loginSecurityDesc" = "Adiciona uma camada extra de autenticação para fornecer mais segurança."
|
"loginSecurityDesc" = "Adiciona uma camada extra de autenticação para fornecer mais segurança."
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "Mux Настройки"
|
"muxSett" = "Mux Настройки"
|
||||||
"direct" = "Прямая связь"
|
"direct" = "Прямая связь"
|
||||||
"directDesc" = "Устанавливает прямые соединения с доменами или IP-адресами определённой страны."
|
"directDesc" = "Устанавливает прямые соединения с доменами или IP-адресами определённой страны."
|
||||||
|
"notifications" = "Уведомления"
|
||||||
|
"certs" = "Сертификаты"
|
||||||
|
"externalTraffic" = "Внешний трафик"
|
||||||
|
"dateAndTime" = "Дата и время"
|
||||||
|
"proxyAndServer" = "Прокси и сервер"
|
||||||
|
"intervals" = "Интервалы"
|
||||||
|
"information" = "Информация"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Настройки Xray"
|
"title" = "Настройки Xray"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "Размер пула"
|
"poolSize" = "Размер пула"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "Админ"
|
"admin" = "Учетные данные администратора"
|
||||||
"secret" = "Секретный токен"
|
"secret" = "Секретный токен"
|
||||||
"loginSecurity" = "Безопасность входа"
|
"loginSecurity" = "Безопасность входа"
|
||||||
"loginSecurityDesc" = "Включить дополнительные меры безопасности входа пользователя"
|
"loginSecurityDesc" = "Включить дополнительные меры безопасности входа пользователя"
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "Mux Ayarları"
|
"muxSett" = "Mux Ayarları"
|
||||||
"direct" = "Doğrudan Bağlantı"
|
"direct" = "Doğrudan Bağlantı"
|
||||||
"directDesc" = "Belirli bir ülkenin alan adları veya IP aralıkları ile doğrudan bağlantı kurar."
|
"directDesc" = "Belirli bir ülkenin alan adları veya IP aralıkları ile doğrudan bağlantı kurar."
|
||||||
|
"notifications" = "Bildirimler"
|
||||||
|
"certs" = "Sertifikalar"
|
||||||
|
"externalTraffic" = "Harici Trafik"
|
||||||
|
"dateAndTime" = "Tarih ve Saat"
|
||||||
|
"proxyAndServer" = "Proxy ve Sunucu"
|
||||||
|
"intervals" = "Aralıklar"
|
||||||
|
"information" = "Bilgi"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Xray Yapılandırmaları"
|
"title" = "Xray Yapılandırmaları"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "Havuz Boyutu"
|
"poolSize" = "Havuz Boyutu"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "Yönetici"
|
"admin" = "Yönetici kimlik bilgileri"
|
||||||
"secret" = "Gizli Anahtar"
|
"secret" = "Gizli Anahtar"
|
||||||
"loginSecurity" = "Güvenli Giriş"
|
"loginSecurity" = "Güvenli Giriş"
|
||||||
"loginSecurityDesc" = "Daha fazla güvenlik sağlamak için ek bir kimlik doğrulama katmanı ekler."
|
"loginSecurityDesc" = "Daha fazla güvenlik sağlamak için ek bir kimlik doğrulama katmanı ekler."
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "Налаштування Mux"
|
"muxSett" = "Налаштування Mux"
|
||||||
"direct" = "Пряме підключення"
|
"direct" = "Пряме підключення"
|
||||||
"directDesc" = "Безпосередньо встановлює з’єднання з доменами або діапазонами IP певної країни."
|
"directDesc" = "Безпосередньо встановлює з’єднання з доменами або діапазонами IP певної країни."
|
||||||
|
"notifications" = "Сповіщення"
|
||||||
|
"certs" = "Сертифікати"
|
||||||
|
"externalTraffic" = "Зовнішній трафік"
|
||||||
|
"dateAndTime" = "Дата та час"
|
||||||
|
"proxyAndServer" = "Проксі та сервер"
|
||||||
|
"intervals" = "Інтервали"
|
||||||
|
"information" = "Інформація"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Xray конфігурації"
|
"title" = "Xray конфігурації"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "Розмір пулу"
|
"poolSize" = "Розмір пулу"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "Адміністратор"
|
"admin" = "Облікові дані адміністратора"
|
||||||
"secret" = "Секретний маркер"
|
"secret" = "Секретний маркер"
|
||||||
"loginSecurity" = "Безпечний вхід"
|
"loginSecurity" = "Безпечний вхід"
|
||||||
"loginSecurityDesc" = "Додає додатковий рівень автентифікації для забезпечення більшої безпеки."
|
"loginSecurityDesc" = "Додає додатковий рівень автентифікації для забезпечення більшої безпеки."
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "Mux Cài đặt"
|
"muxSett" = "Mux Cài đặt"
|
||||||
"direct" = "Kết nối trực tiếp"
|
"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ể."
|
"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"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Cài đặt Xray"
|
"title" = "Cài đặt Xray"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "Kích thước bể bơi"
|
"poolSize" = "Kích thước bể bơi"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "Quản trị viên"
|
"admin" = "Thông tin đăng nhập quản trị viên"
|
||||||
"secret" = "Mã thông báo bí mật"
|
"secret" = "Mã thông báo bí mật"
|
||||||
"loginSecurity" = "Bảo mật đăng nhập"
|
"loginSecurity" = "Bảo mật đăng nhập"
|
||||||
"loginSecurityDesc" = "Bật bước bảo mật đăng nhập bổ sung cho người dùng"
|
"loginSecurityDesc" = "Bật bước bảo mật đăng nhập bổ sung cho người dùng"
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "复用器设置"
|
"muxSett" = "复用器设置"
|
||||||
"direct" = "直接连接"
|
"direct" = "直接连接"
|
||||||
"directDesc" = "直接与特定国家的域或IP范围建立连接"
|
"directDesc" = "直接与特定国家的域或IP范围建立连接"
|
||||||
|
"notifications" = "通知"
|
||||||
|
"certs" = "证书"
|
||||||
|
"externalTraffic" = "外部流量"
|
||||||
|
"dateAndTime" = "日期和时间"
|
||||||
|
"proxyAndServer" = "代理和服务器"
|
||||||
|
"intervals" = "间隔"
|
||||||
|
"information" = "信息"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Xray 配置"
|
"title" = "Xray 配置"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "池大小"
|
"poolSize" = "池大小"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "管理员"
|
"admin" = "管理员凭据"
|
||||||
"secret" = "安全令牌"
|
"secret" = "安全令牌"
|
||||||
"loginSecurity" = "登录安全"
|
"loginSecurity" = "登录安全"
|
||||||
"loginSecurityDesc" = "添加额外的身份验证以提高安全性"
|
"loginSecurityDesc" = "添加额外的身份验证以提高安全性"
|
||||||
|
|
|
@ -321,7 +321,13 @@
|
||||||
"muxSett" = "複用器設定"
|
"muxSett" = "複用器設定"
|
||||||
"direct" = "直接連線"
|
"direct" = "直接連線"
|
||||||
"directDesc" = "直接與特定國家的域或IP範圍建立連線"
|
"directDesc" = "直接與特定國家的域或IP範圍建立連線"
|
||||||
|
"notifications" = "通知"
|
||||||
|
"certs" = "證書"
|
||||||
|
"externalTraffic" = "外部流量"
|
||||||
|
"dateAndTime" = "日期和時間"
|
||||||
|
"proxyAndServer" = "代理和伺服器"
|
||||||
|
"intervals" = "間隔"
|
||||||
|
"information" = "資訊"
|
||||||
|
|
||||||
[pages.xray]
|
[pages.xray]
|
||||||
"title" = "Xray 配置"
|
"title" = "Xray 配置"
|
||||||
|
@ -462,7 +468,7 @@
|
||||||
"poolSize" = "池大小"
|
"poolSize" = "池大小"
|
||||||
|
|
||||||
[pages.settings.security]
|
[pages.settings.security]
|
||||||
"admin" = "管理員"
|
"admin" = "管理員憑證"
|
||||||
"secret" = "安全令牌"
|
"secret" = "安全令牌"
|
||||||
"loginSecurity" = "登入安全"
|
"loginSecurity" = "登入安全"
|
||||||
"loginSecurityDesc" = "新增額外的身份驗證以提高安全性"
|
"loginSecurityDesc" = "新增額外的身份驗證以提高安全性"
|
||||||
|
|
Loading…
Reference in a new issue