mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-31 00:05:27 +02:00
Update confirm mark as finished to use translation #4017
This commit is contained in:
parent
ef77a88fce
commit
a3cd9e4440
2 changed files with 2 additions and 2 deletions
|
@ -155,7 +155,7 @@ export default {
|
|||
const itemProgressPercent = episode.progress?.progress || 0
|
||||
if (!isFinished && itemProgressPercent > 0 && !confirmed) {
|
||||
const payload = {
|
||||
message: `Are you sure you want to mark "${episode.title}" as finished?`,
|
||||
message: this.$getString('MessageConfirmMarkItemFinished', [episode.title]),
|
||||
callback: (confirmed) => {
|
||||
if (confirmed) {
|
||||
this.toggleEpisodeFinished(episode, true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue