mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 00:09:16 +08:00
fix: 快速命令增加提示信息 (#1710)
This commit is contained in:
parent
1fd31fffd6
commit
0ca559f1e1
@ -763,6 +763,7 @@ const message = {
|
|||||||
fold: 'All contract',
|
fold: 'All contract',
|
||||||
batchInput: 'Batch input',
|
batchInput: 'Batch input',
|
||||||
quickCommand: 'Quick command',
|
quickCommand: 'Quick command',
|
||||||
|
quickCommandHelper: 'Frequently used command list for quick selection at the bottom of the terminal interface',
|
||||||
groupDeleteHelper:
|
groupDeleteHelper:
|
||||||
'After the group is removed, all connections in the group will be migrated to the default group. Confirm the information',
|
'After the group is removed, all connections in the group will be migrated to the default group. Confirm the information',
|
||||||
command: 'Command',
|
command: 'Command',
|
||||||
|
@ -737,6 +737,7 @@ const message = {
|
|||||||
fold: '全部收縮',
|
fold: '全部收縮',
|
||||||
batchInput: '批量輸入',
|
batchInput: '批量輸入',
|
||||||
quickCommand: '快速命令',
|
quickCommand: '快速命令',
|
||||||
|
quickCommandHelper: '常用命令列表,用於在終端界面底部快速選擇',
|
||||||
groupDeleteHelper: '移除組後,組內所有連接將遷移到 default 組內,是否確認',
|
groupDeleteHelper: '移除組後,組內所有連接將遷移到 default 組內,是否確認',
|
||||||
command: '命令',
|
command: '命令',
|
||||||
addHost: '添加主機',
|
addHost: '添加主機',
|
||||||
|
@ -737,6 +737,7 @@ const message = {
|
|||||||
fold: '全部收缩',
|
fold: '全部收缩',
|
||||||
batchInput: '批量输入',
|
batchInput: '批量输入',
|
||||||
quickCommand: '快速命令',
|
quickCommand: '快速命令',
|
||||||
|
quickCommandHelper: '常用命令列表,用于在终端界面底部快速选择',
|
||||||
groupDeleteHelper: '移除组后,组内所有连接将迁移到 default 组内,是否确认',
|
groupDeleteHelper: '移除组后,组内所有连接将迁移到 default 组内,是否确认',
|
||||||
command: '命令',
|
command: '命令',
|
||||||
addHost: '添加主机',
|
addHost: '添加主机',
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<LayoutContent v-loading="loading" :title="$t('terminal.quickCommand')">
|
<LayoutContent v-loading="loading" :title="$t('terminal.quickCommand')">
|
||||||
|
<template #prompt>
|
||||||
|
<el-alert type="info" :title="$t('terminal.quickCommandHelper')" :closable="false" />
|
||||||
|
</template>
|
||||||
<template #toolbar>
|
<template #toolbar>
|
||||||
<el-button type="primary" @click="onCreate()">
|
<el-button type="primary" @click="onCreate()">
|
||||||
{{ $t('commons.button.create') }}{{ $t('terminal.quickCommand') }}
|
{{ $t('commons.button.create') }}{{ $t('terminal.quickCommand') }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user