From 7b7923fe9b66139377fd52550096ba0cc058fddc Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Fri, 1 Dec 2023 21:40:03 +0900 Subject: [PATCH] fix(downloader): fix i18n --- src/plugins/downloader/main/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/downloader/main/index.ts b/src/plugins/downloader/main/index.ts index b2dbdc15..6efc0c6e 100644 --- a/src/plugins/downloader/main/index.ts +++ b/src/plugins/downloader/main/index.ts @@ -347,7 +347,7 @@ async function iterableStreamToTargetFile( const ratio = downloaded / contentLength; const progress = Math.floor(ratio * 100); sendFeedback( - t('plugins.downloader.backend.feedback.downloading-progress', { + t('plugins.downloader.backend.feedback.download-progress', { percent: progress, }), ratio,