mirror of https://github.com/1Panel-dev/1Panel
pref: 优化远程数据库解绑提示信息 (#5850)
parent
3c0dc7459c
commit
cae0a6118f
|
@ -69,6 +69,7 @@ const message = {
|
|||
createNewFolder: 'Create new folder',
|
||||
createNewFile: 'Create new file',
|
||||
helpDoc: 'Help Document',
|
||||
unbind: 'UnBind',
|
||||
},
|
||||
search: {
|
||||
timeStart: 'Time start',
|
||||
|
|
|
@ -68,6 +68,7 @@ const message = {
|
|||
createNewFolder: '新建資料夾',
|
||||
createNewFile: '新建檔案',
|
||||
helpDoc: '幫助文档',
|
||||
unbind: '解綁',
|
||||
},
|
||||
search: {
|
||||
timeStart: '開始時間',
|
||||
|
|
|
@ -68,6 +68,7 @@ const message = {
|
|||
createNewFolder: '新建文件夹',
|
||||
createNewFile: '新建文件',
|
||||
helpDoc: '帮助文档',
|
||||
unbind: '解绑',
|
||||
},
|
||||
search: {
|
||||
timeStart: '开始时间',
|
||||
|
|
|
@ -74,7 +74,7 @@ const submit = async () => {
|
|||
.then(() => {
|
||||
loading.value = false;
|
||||
emit('search');
|
||||
MsgSuccess(i18n.global.t('commons.msg.deleteSuccess'));
|
||||
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
||||
dialogVisible.value = false;
|
||||
})
|
||||
.catch(() => {
|
||||
|
|
|
@ -163,7 +163,7 @@ const buttons = [
|
|||
},
|
||||
},
|
||||
{
|
||||
label: i18n.global.t('commons.button.delete'),
|
||||
label: i18n.global.t('commons.button.unbind'),
|
||||
click: (row: Database.DatabaseInfo) => {
|
||||
onDelete(row);
|
||||
},
|
||||
|
|
|
@ -74,7 +74,7 @@ const submit = async () => {
|
|||
.then(() => {
|
||||
loading.value = false;
|
||||
emit('search');
|
||||
MsgSuccess(i18n.global.t('commons.msg.deleteSuccess'));
|
||||
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
||||
dialogVisible.value = false;
|
||||
})
|
||||
.catch(() => {
|
||||
|
|
|
@ -163,7 +163,7 @@ const buttons = [
|
|||
},
|
||||
},
|
||||
{
|
||||
label: i18n.global.t('commons.button.delete'),
|
||||
label: i18n.global.t('commons.button.unbind'),
|
||||
click: (row: Database.DatabaseInfo) => {
|
||||
onDelete(row);
|
||||
},
|
||||
|
|
|
@ -74,7 +74,7 @@ const submit = async () => {
|
|||
.then(() => {
|
||||
loading.value = false;
|
||||
emit('search');
|
||||
MsgSuccess(i18n.global.t('commons.msg.deleteSuccess'));
|
||||
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
||||
dialogVisible.value = false;
|
||||
})
|
||||
.catch(() => {
|
||||
|
|
|
@ -163,7 +163,7 @@ const buttons = [
|
|||
},
|
||||
},
|
||||
{
|
||||
label: i18n.global.t('commons.button.delete'),
|
||||
label: i18n.global.t('commons.button.unbind'),
|
||||
click: (row: Database.DatabaseInfo) => {
|
||||
onDelete(row);
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue