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
|
import org.kde.alligator 1.0
|
||||||
|
|
||||||
Kirigami.ScrollablePage {
|
Kirigami.ScrollablePage {
|
||||||
title: "Alligator Feed List"
|
title: "Subscriptions"
|
||||||
|
|
||||||
property var lastFeed: ""
|
property var lastFeed: ""
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ import org.kde.alligator 1.0
|
||||||
|
|
||||||
Kirigami.ScrollablePage {
|
Kirigami.ScrollablePage {
|
||||||
id: queuepage
|
id: queuepage
|
||||||
title: "Alligator Play Queue"
|
title: "Queue"
|
||||||
Component {
|
Component {
|
||||||
id: delegateComponent
|
id: delegateComponent
|
||||||
Kirigami.SwipeListItem {
|
Kirigami.SwipeListItem {
|
||||||
|
|
|
@ -25,21 +25,21 @@ Kirigami.ApplicationWindow {
|
||||||
isMenu: true
|
isMenu: true
|
||||||
actions: [
|
actions: [
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
text: i18n("Feed List")
|
text: i18n("Queue")
|
||||||
iconName: "rss"
|
|
||||||
onTriggered: {
|
|
||||||
pageStack.clear()
|
|
||||||
pageStack.push(feedList)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
Kirigami.Action {
|
|
||||||
text: i18n("Podcast Queue")
|
|
||||||
iconName: "source-playlist"
|
iconName: "source-playlist"
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
pageStack.clear()
|
pageStack.clear()
|
||||||
pageStack.push(queuelist)
|
pageStack.push(queuelist)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Kirigami.Action {
|
||||||
|
text: i18n("Subscriptions")
|
||||||
|
iconName: "rss"
|
||||||
|
onTriggered: {
|
||||||
|
pageStack.clear()
|
||||||
|
pageStack.push(feedList)
|
||||||
|
}
|
||||||
|
},
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
text: i18n("Settings")
|
text: i18n("Settings")
|
||||||
iconName: "settings-configure"
|
iconName: "settings-configure"
|
||||||
|
|
Loading…
Reference in New Issue