Localized various strings.

Confirm title, corresponding messages, welcome, and media type dropdown.
This commit is contained in:
sir-wilhelm
2025-12-28 10:36:17 -06:00
parent b2c2b625e3
commit 462021225f
14 changed files with 34 additions and 26 deletions
+4 -4
View File
@@ -346,7 +346,7 @@ export default {
}
const { value } = await Dialog.confirm({
title: 'Confirm',
title: this.$strings.HeaderConfirm,
message: this.$getString('MessageConfirmDeleteLocalEpisode', [localFile.basePath])
})
if (value) {
@@ -514,7 +514,7 @@ export default {
await this.$hapticsImpact()
const { value } = await Dialog.confirm({
title: 'Confirm',
title: this.$strings.HeaderConfirm,
message: this.$strings.MessageConfirmDiscardProgress
})
if (value) {
@@ -575,8 +575,8 @@ export default {
await this.$hapticsImpact()
const { value } = await Dialog.confirm({
title: 'Confirm',
message: `Are you sure you want to delete episode "${this.title}" from the server?\nWarning: This will delete the audio file.`
title: this.$strings.HeaderConfirm,
message: $this.$getString('MessageConfirmDeleteServerEpisode', [this.title])
})
if (value) {
+3 -3
View File
@@ -584,8 +584,8 @@ export default {
// If start time and is not already streaming then ask for confirmation
if (startTime !== null && startTime !== undefined && !this.$store.getters['getIsMediaStreaming'](libraryItemId, null)) {
const { value } = await Dialog.confirm({
title: 'Confirm',
message: `Start playback for "${this.title}" at ${this.$secondsToTimestamp(startTime)}?`
title: this.$strings.HeaderConfirm,
message: this.$getString('MessageConfirmPlaybackTime', [this.title, this.$secondsToTimestamp(startTime)])
})
if (!value) return
}
@@ -673,7 +673,7 @@ export default {
}
}
const { value } = await Dialog.confirm({
title: 'Confirm',
title: this.$strings.HeaderConfirm,
message: startDownloadMessage
})
if (value) {