Switch and rename queue and subscriptions

This commit is contained in:
Bart De Vries 2021-04-02 14:06:03 +02:00
parent d3107dc096
commit 514dc1fa51
3 changed files with 11 additions and 11 deletions

View File

@ -14,7 +14,7 @@ import org.kde.kirigami 2.12 as Kirigami
import org.kde.alligator 1.0
Kirigami.ScrollablePage {
title: "Alligator Feed List"
title: "Subscriptions"
property var lastFeed: ""

View File

@ -14,7 +14,7 @@ import org.kde.alligator 1.0
Kirigami.ScrollablePage {
id: queuepage
title: "Alligator Play Queue"
title: "Queue"
Component {
id: delegateComponent
Kirigami.SwipeListItem {

View File

@ -25,21 +25,21 @@ Kirigami.ApplicationWindow {
isMenu: true
actions: [
Kirigami.Action {
text: i18n("Feed List")
iconName: "rss"
onTriggered: {
pageStack.clear()
pageStack.push(feedList)
}
},
Kirigami.Action {
text: i18n("Podcast Queue")
text: i18n("Queue")
iconName: "source-playlist"
onTriggered: {
pageStack.clear()
pageStack.push(queuelist)
}
},
Kirigami.Action {
text: i18n("Subscriptions")
iconName: "rss"
onTriggered: {
pageStack.clear()
pageStack.push(feedList)
}
},
Kirigami.Action {
text: i18n("Settings")
iconName: "settings-configure"