mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-27 08:00:58 +00:00
feat: add prompt for TCP/UDP proxy (#11343)
This commit is contained in:
@@ -2741,6 +2741,7 @@ const message = {
|
||||
stream: 'TCP/UDP Proxy',
|
||||
streamPorts: 'Listening Ports',
|
||||
streamPortsHelper: 'Separate with commas, e.g., 3306, 3307',
|
||||
streamHelper: 'TCP/UDP Port Forwarding and Load Balancing',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: 'Short tag support',
|
||||
|
||||
@@ -2728,6 +2728,7 @@ const message = {
|
||||
stream: 'Proxy TCP/UDP',
|
||||
streamPorts: 'Puertos de escucha',
|
||||
streamPortsHelper: 'Separe con comas, por ejemplo: 3306, 3307',
|
||||
streamHelper: 'Reenvío de Puertos y Balanceo de Carga TCP/UDP',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: 'Soporte de etiquetas cortas',
|
||||
|
||||
@@ -2663,6 +2663,7 @@ const message = {
|
||||
stream: 'TCP/UDP プロキシ',
|
||||
streamPorts: '待ち受けポート',
|
||||
streamPortsHelper: 'カンマで区切ってください(例:3306, 3307)',
|
||||
streamHelper: 'TCP/UDP ポート転送とロードバランシング',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: '短いタグサポート',
|
||||
|
||||
@@ -2617,6 +2617,7 @@ const message = {
|
||||
stream: 'TCP/UDP 프록시',
|
||||
streamPorts: '수신 포트',
|
||||
streamPortsHelper: '쉼표로 구분하세요. 예: 3306, 3307',
|
||||
streamHelper: 'TCP/UDP 포트 포워딩 및 로드 밸런싱',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: '짧은 태그 지원',
|
||||
|
||||
@@ -2721,6 +2721,7 @@ const message = {
|
||||
stream: 'Proksi TCP/UDP',
|
||||
streamPorts: 'Port Mendengar',
|
||||
streamPortsHelper: 'Sila asingkan dengan koma, contoh: 3306, 3307',
|
||||
streamHelper: 'Penerusan Port dan Pengimbangan Beban TCP/UDP',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: 'Sokongan tag pendek',
|
||||
|
||||
@@ -2726,6 +2726,7 @@ const message = {
|
||||
stream: 'Proxy TCP/UDP',
|
||||
streamPorts: 'Portas de escuta',
|
||||
streamPortsHelper: 'Separe por vírgulas, por exemplo: 3306, 3307',
|
||||
streamHelper: 'Encaminhamento de Portas e Balanceamento de Carga TCP/UDP',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: 'Suporte para short tags',
|
||||
|
||||
@@ -2721,6 +2721,7 @@ const message = {
|
||||
stream: 'Прокси TCP/UDP',
|
||||
streamPorts: 'Порты прослушивания',
|
||||
streamPortsHelper: 'Разделяйте запятыми, например: 3306, 3307',
|
||||
streamHelper: 'Перенаправление портов и балансировка нагрузки TCP/UDP',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: 'Поддержка коротких тегов',
|
||||
|
||||
@@ -2779,6 +2779,7 @@ const message = {
|
||||
stream: 'TCP/UDP Proxy',
|
||||
streamPorts: 'Dinleme Portları',
|
||||
streamPortsHelper: 'Virgülle ayırın, örneğin: 3306, 3307',
|
||||
streamHelper: 'TCP/UDP Port Yönlendirme ve Yük Dengeleme',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: 'Kısa etiket desteği',
|
||||
|
||||
@@ -2550,6 +2550,7 @@ const message = {
|
||||
stream: 'TCP/UDP 代理',
|
||||
streamPorts: '監聽端口',
|
||||
streamPortsHelper: '請用逗號分隔,例如:3306,3307',
|
||||
streamHelper: 'TCP/UDP 端口轉發與負載均衡',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: '短標籤支援',
|
||||
|
||||
@@ -2547,6 +2547,7 @@ const message = {
|
||||
stream: 'TCP/UDP 代理',
|
||||
streamPorts: '监听端口',
|
||||
streamPortsHelper: '请按逗号分割,例如:3306,3307',
|
||||
streamHelper: 'TCP/UDP 端口转发与负载均衡',
|
||||
},
|
||||
php: {
|
||||
short_open_tag: '短标签支持',
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
<template>
|
||||
<DrawerPro v-model="open" :header="$t('website.create')" size="60%" @close="handleClose">
|
||||
<div v-loading="loading" :class="{ mask: !versionExist }">
|
||||
<SSLAlert :websiteType="website.type" />
|
||||
<br />
|
||||
<el-form
|
||||
ref="websiteForm"
|
||||
label-position="top"
|
||||
@@ -19,6 +17,7 @@
|
||||
</el-radio-button>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<SSLAlert :websiteType="website.type" class="mb-2" />
|
||||
<GroupSelect
|
||||
v-model="website.webSiteGroupId"
|
||||
:prop="'webSiteGroupId'"
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
:closable="false"
|
||||
/>
|
||||
<el-alert v-if="websiteType == 'subsite'" :title="$t('website.subsiteHelper')" type="info" :closable="false" />
|
||||
<el-alert v-if="websiteType == 'stream'" :title="$t('website.streamHelper')" type="info" :closable="false" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user