pref: 优化远程数据库解绑提示信息 (#5850)

pull/5851/head
ssongliu 2024-07-17 17:53:28 +08:00 committed by GitHub
parent 3c0dc7459c
commit cae0a6118f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 9 additions and 6 deletions

View File

@ -69,6 +69,7 @@ const message = {
createNewFolder: 'Create new folder',
createNewFile: 'Create new file',
helpDoc: 'Help Document',
unbind: 'UnBind',
},
search: {
timeStart: 'Time start',

View File

@ -68,6 +68,7 @@ const message = {
createNewFolder: '',
createNewFile: '',
helpDoc: '',
unbind: '',
},
search: {
timeStart: '',

View File

@ -68,6 +68,7 @@ const message = {
createNewFolder: '',
createNewFile: '',
helpDoc: '',
unbind: '',
},
search: {
timeStart: '',

View File

@ -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(() => {

View File

@ -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);
},

View File

@ -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(() => {

View File

@ -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);
},

View File

@ -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(() => {

View File

@ -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);
},