Fix incorrect text on actions on EntryPage

This commit is contained in:
Bart De Vries 2021-04-27 11:21:23 +02:00
parent 64ba96fa32
commit 4d526e89c3
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ Kirigami.ScrollablePage {
entry.enclosure.status === Enclosure.Downloadable ? i18n("Download") : entry.enclosure.status === Enclosure.Downloadable ? i18n("Download") :
entry.enclosure.status === Enclosure.Downloading ? i18n("Cancel download") : entry.enclosure.status === Enclosure.Downloading ? i18n("Cancel download") :
!entry.queueStatus ? i18n("Add to Queue") : !entry.queueStatus ? i18n("Add to Queue") :
(audio.entry === entry) && audio.playbackState === Audio.PlayingState ? i18n("Play") : (audio.entry === entry && audio.playbackState === Audio.PlayingState) ? i18n("Pause") :
i18n("Pause") i18n("Play")
icon.name: !entry.enclosure ? "globe" : icon.name: !entry.enclosure ? "globe" :
entry.enclosure.status === Enclosure.Downloadable ? "download" : entry.enclosure.status === Enclosure.Downloadable ? "download" :
entry.enclosure.status === Enclosure.Downloading ? "edit-delete-remove" : entry.enclosure.status === Enclosure.Downloading ? "edit-delete-remove" :