diff --git a/discover/qml/UpdatesPage.qml b/discover/qml/UpdatesPage.qml --- a/discover/qml/UpdatesPage.qml +++ b/discover/qml/UpdatesPage.qml @@ -111,7 +111,7 @@ supportsRefreshing: true onRefreshingChanged: { - showPassiveNotification("Fetching updates...") + showPassiveNotification("Fetching Updates...") ResourcesModel.updateAction.triggered() refreshing = false } @@ -319,7 +319,7 @@ states: [ State { name: "fetching" - PropertyChanges { target: page; footerLabel: i18nc("@info", "Fetching updates...") } + PropertyChanges { target: page; footerLabel: i18nc("@info", "Fetching Updates...") } PropertyChanges { target: page; isBusy: true } }, State { @@ -339,17 +339,17 @@ }, State { name: "now-uptodate" - PropertyChanges { target: page; footerLabel: i18nc("@info", "Up to date") } + PropertyChanges { target: page; footerLabel: i18nc("@info", "Up to Date") } PropertyChanges { target: page.actions; main: refreshAction } }, State { name: "uptodate" - PropertyChanges { target: page; footerLabel: i18nc("@info", "Up to date") } + PropertyChanges { target: page; footerLabel: i18nc("@info", "Up to Date") } PropertyChanges { target: page.actions; main: refreshAction } }, State { name: "medium" - PropertyChanges { target: page; title: i18nc("@info", "Up to date") } + PropertyChanges { target: page; title: i18nc("@info", "Up to Date") } PropertyChanges { target: page.actions; main: refreshAction } }, State {