From 293851d9310dca2fb1807ed610aefae1208e491f Mon Sep 17 00:00:00 2001
From: advplyr
Date: Mon, 30 Jun 2025 17:49:05 -0500
Subject: [PATCH] Fix missing translation in remove podcast episode modal #4434
---
client/components/modals/podcast/RemoveEpisode.vue | 2 +-
client/strings/en-us.json | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/client/components/modals/podcast/RemoveEpisode.vue b/client/components/modals/podcast/RemoveEpisode.vue
index 38dd71cf..b2cebe84 100644
--- a/client/components/modals/podcast/RemoveEpisode.vue
+++ b/client/components/modals/podcast/RemoveEpisode.vue
@@ -11,7 +11,7 @@
{{ $getString('MessageConfirmRemoveEpisode', [episodeTitle]) }}
{{ $getString('MessageConfirmRemoveEpisodes', [episodes.length]) }}
- Note: This does not delete the audio file unless toggling "Hard delete file"
+ {{ $strings.MessageConfirmRemoveEpisodeNote }}
diff --git a/client/strings/en-us.json b/client/strings/en-us.json
index f6288912..3ce20e1e 100644
--- a/client/strings/en-us.json
+++ b/client/strings/en-us.json
@@ -757,6 +757,7 @@
"MessageConfirmRemoveAuthor": "Are you sure you want to remove author \"{0}\"?",
"MessageConfirmRemoveCollection": "Are you sure you want to remove collection \"{0}\"?",
"MessageConfirmRemoveEpisode": "Are you sure you want to remove episode \"{0}\"?",
+ "MessageConfirmRemoveEpisodeNote": "Note: This does not delete the audio file unless toggling \"Hard delete file\"",
"MessageConfirmRemoveEpisodes": "Are you sure you want to remove {0} episodes?",
"MessageConfirmRemoveListeningSessions": "Are you sure you want to remove {0} listening sessions?",
"MessageConfirmRemoveMetadataFiles": "Are you sure you want to remove all metadata.{0} files in your library item folders?",