From 0359bffac523d743a587adbf6ccee9f6c2ea708e Mon Sep 17 00:00:00 2001 From: Maikiwi Date: Mon, 24 Jan 2022 19:24:11 -0800 Subject: [PATCH] Notification i18n --- src/renderer/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/renderer/index.js b/src/renderer/index.js index 95e7b1a5..f4a01ca9 100644 --- a/src/renderer/index.js +++ b/src/renderer/index.js @@ -1710,7 +1710,7 @@ const app = new Vue({ } this.library.songs.downloadState = 1 this.library.downloadNotification.show = true - this.library.downloadNotification.message = "Updating library songs..." + this.library.downloadNotification.message = app.getLz('notification.updatingLibrarySongs') function downloadChunk() { const params = { @@ -1791,7 +1791,7 @@ const app = new Vue({ } this.library.albums.downloadState = 1 this.library.downloadNotification.show = true - this.library.downloadNotification.message = "Updating library albums..." + this.library.downloadNotification.message = app.getLz('notification.updatingLibraryAlbums') function downloadChunk() { self.library.albums.downloadState = 1 @@ -1871,7 +1871,7 @@ const app = new Vue({ } this.library.artists.downloadState = 1 this.library.downloadNotification.show = true - this.library.downloadNotification.message = "Updating library artists..." + this.library.downloadNotification.message = app.getLz('notification.updatingLibraryArtists') function downloadChunk() { self.library.artists.downloadState = 1