From e4b9ac5446009ba7d64900879ed4ef5e30e7c3c8 Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 19 Aug 2025 16:52:50 -0500 Subject: [PATCH] Add episode updated translation for podcast match #4606 --- client/components/modals/podcast/tabs/EpisodeMatch.vue | 2 +- client/strings/en-us.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/client/components/modals/podcast/tabs/EpisodeMatch.vue b/client/components/modals/podcast/tabs/EpisodeMatch.vue index dbea4e70b..c7ac60cd3 100644 --- a/client/components/modals/podcast/tabs/EpisodeMatch.vue +++ b/client/components/modals/podcast/tabs/EpisodeMatch.vue @@ -114,7 +114,7 @@ export default { .$patch(`/api/podcasts/${this.libraryItem.id}/episode/${this.episodeId}`, updatePayload) .then(() => { this.isProcessing = false - this.$toast.success('Podcast episode updated') + this.$toast.success(this.$strings.ToastPodcastEpisodeUpdated) this.$emit('selectTab', 'details') }) .catch((error) => { diff --git a/client/strings/en-us.json b/client/strings/en-us.json index 5885445b8..77e9e07a6 100644 --- a/client/strings/en-us.json +++ b/client/strings/en-us.json @@ -1096,6 +1096,7 @@ "ToastPlaylistUpdateSuccess": "Playlist updated", "ToastPodcastCreateFailed": "Failed to create podcast", "ToastPodcastCreateSuccess": "Podcast created successfully", + "ToastPodcastEpisodeUpdated": "Episode updated", "ToastPodcastGetFeedFailed": "Failed to get podcast feed", "ToastPodcastNoEpisodesInFeed": "No episodes found in RSS feed", "ToastPodcastNoRssFeed": "Podcast does not have an RSS feed",