fix(downloader): fix download button i18n

This commit is contained in:
JellyBrick
2023-12-13 18:02:18 +09:00
parent 0c9d3cc057
commit 6b2adca1f4

View File

@ -77,7 +77,7 @@ export const onRendererLoad = ({
ipc.on('downloader-feedback', (feedback: string) => {
if (progress) {
progress.innerHTML = feedback || 'Download';
progress.innerHTML = feedback || t('plugins.downloader.templates.button');
} else {
console.warn(
LoggerPrefix,