Change titles of Kirigami pages such that toolbar icons don't move around

CCBUG: 441764
This commit is contained in:
Bart De Vries 2021-09-03 15:48:24 +02:00
parent 6413085c12
commit 2e6bd7bdcc
3 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ Kirigami.ScrollablePage {
property var feed
title: feed.name
title: i18n("Episode List")
supportsRefreshing: true
onRefreshingChanged: {

View File

@ -19,7 +19,7 @@ Kirigami.ScrollablePage {
property QtObject entry
title: entry.title
title: i18n("Episode Details")
padding: 0 // needed to get the inline header to fill the page
@ -165,4 +165,4 @@ Kirigami.ScrollablePage {
}
}
]
}
}

View File

@ -20,7 +20,7 @@ Kirigami.ScrollablePage {
property bool isSubscribed: true
property string author: isSubscribed ? (page.feed.authors.length === 0 ? "" : page.feed.authors[0].name) : feed.author
title: i18nc("<Podcast Name> - Details", "%1 - Details", isSubscribed ? feed.name : feed.title)
title: i18n("Podcast Details")
header: GenericHeader {
id: headerImage