From 31cdc2814344487c117d7c38783563970e6e2c18 Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Tue, 8 Oct 2024 10:58:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E6=81=A2=E5=A4=8D=E6=8F=90=E7=A4=BA=E4=BF=A1=E6=81=AF=20(#6647?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/upload/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/upload/index.vue b/frontend/src/components/upload/index.vue index e67e85b09..bac858635 100644 --- a/frontend/src/components/upload/index.vue +++ b/frontend/src/components/upload/index.vue @@ -211,8 +211,8 @@ const onRecover = async (row: File.File) => { currentRow.value = row; if (type.value !== 'app' && type.value !== 'website') { ElMessageBox.confirm( - i18n.global.t('commons.msg.backupHelper', [name.value + '( ' + detailName.value + ' )']), - i18n.global.t('commons.button.backup'), + i18n.global.t('commons.msg.recoverHelper', [row.name]), + i18n.global.t('commons.button.recover'), { confirmButtonText: i18n.global.t('commons.button.confirm'), cancelButtonText: i18n.global.t('commons.button.cancel'),