ZigBee -> Zigbee, as per spec

This commit is contained in:
Michael Zanetti 2020-11-02 17:16:36 +01:00
parent ff8f2d0aad
commit 7013e726aa
3 changed files with 10 additions and 10 deletions

View File

@ -162,8 +162,8 @@ Page {
NymeaListItemDelegate {
width: parent.width
iconName: "../images/zigbee.svg"
text: qsTr("ZigBee networking")
subText: qsTr("Manage and configure ZigBee networks")
text: qsTr("Zigbee")
subText: qsTr("Manage and configure Zigbee networks")
prominentSubText: false
wrapTexts: false
onClicked: pageStack.push(Qt.resolvedUrl("system/ZigbeeNetworkSettingsPage.qml"))

View File

@ -37,10 +37,10 @@ import "../components"
SettingsPageBase {
id: root
title: qsTr("Add a new ZigBee network")
title: qsTr("Add a new Zigbee network")
SettingsPageSectionHeader {
text: qsTr("ZigBee adapters")
text: qsTr("Zigbee adapters")
}
Repeater {
@ -59,7 +59,7 @@ SettingsPageBase {
}
SettingsPageSectionHeader {
text: qsTr("Unrecognized ZigBee adapters")
text: qsTr("Unrecognized Zigbee adapters")
}
Repeater {

View File

@ -35,10 +35,10 @@ import QtQuick.Layouts 1.3
import "../components"
import Nymea 1.0
Page {
SettingsPageBase {
id: root
header: NymeaHeader {
text: qsTr("ZigBee networking")
text: qsTr("Zigbee")
backButtonVisible: true
onBackPressed: pageStack.pop()
@ -57,15 +57,15 @@ Page {
// List networks
SettingsPageSectionHeader {
text: qsTr("ZigBee networks")
text: qsTr("Zigbee networks")
}
NymeaListItemDelegate {
Layout.fillWidth: true
text: qsTr("Add ZigBee network")
subText: qsTr("Set up a new ZigBee network")
text: qsTr("Add Zigbee network")
subText: qsTr("Set up a new Zigbee network")
prominentSubText: false
onClicked: {
pageStack.push(Qt.resolvedUrl("../system/ZigbeeNetworkAddPage.qml"))