diff --git a/client/components/modals/AudioFileDataModal.vue b/client/components/modals/AudioFileDataModal.vue index eeedf2951..a37e8cba1 100644 --- a/client/components/modals/AudioFileDataModal.vue +++ b/client/components/modals/AudioFileDataModal.vue @@ -4,7 +4,7 @@

{{ metadata.filename }}

{{ $strings.ButtonReset }} - Probe Audio File + {{ $strings.ButtonProbeAudioFile }}
@@ -159,7 +159,7 @@ export default { }) .catch((error) => { console.error('Failed to get ffprobe data', error) - this.$toast.error('FFProbe failed') + this.$toast.error(this.$strings.ToastFfprobeFailed) }) .finally(() => { this.probingFile = false diff --git a/client/strings/en-us.json b/client/strings/en-us.json index 19a688d7e..ccf608508 100644 --- a/client/strings/en-us.json +++ b/client/strings/en-us.json @@ -836,6 +836,7 @@ "ToastEpisodeDownloadQueueClearSuccess": "Episode download queue cleared", "ToastFailedToLoadData": "Failed to load data", "ToastFailedToUpdateAccount": "Failed to update account", + "ToastFfprobeFailed": "FFprobe failed", "ToastItemCoverUpdateFailed": "Failed to update item cover", "ToastItemCoverUpdateSuccess": "Item cover updated", "ToastItemDeletedFailed": "Failed to delete item",