diff --git a/mobile/wifi/package/contents/ui/main.qml b/mobile/wifi/package/contents/ui/main.qml --- a/mobile/wifi/package/contents/ui/main.qml +++ b/mobile/wifi/package/contents/ui/main.qml @@ -86,8 +86,27 @@ currentIndex: -1 boundsBehavior: Flickable.StopAtBounds - header: Kirigami.ListSectionHeader { - text: mobileProxyModel.showSavedMode ? i18n("Saved networks") : i18n("Available networks") + section.property: "ConnectionState" + section.delegate: Kirigami.ListSectionHeader { + text: { + + if (section == 1) { + return i18n("Activating") + } + + if (section == 2) { + return i18n("Connected") + } + + if (section == 3) { + return i18n("Deactivating") + } + + if (section == 4) { + return i18n("Available") + } + return i18n("Unknown") + } } model: mobileProxyModel