mirror of https://github.com/KDE/kasts.git
Switch and rename queue and subscriptions
This commit is contained in:
parent
d3107dc096
commit
514dc1fa51
|
@ -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: ""
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue