diff --git a/nymea-app/ui/mainviews/energy/CurrentConsumptionBalancePieChart.qml b/nymea-app/ui/mainviews/energy/CurrentConsumptionBalancePieChart.qml index 668ce6b9..1a0bce3e 100644 --- a/nymea-app/ui/mainviews/energy/CurrentConsumptionBalancePieChart.qml +++ b/nymea-app/ui/mainviews/energy/CurrentConsumptionBalancePieChart.qml @@ -104,7 +104,7 @@ ChartView { color: Style.red text: "%1 %2" .arg((absValue / (absValue > 1000 ? 1000 : 1)).toFixed(1)) - .arg(absValue > 1000 ? "kWh" : "W") + .arg(absValue > 1000 ? "kW" : "W") Layout.fillWidth: true horizontalAlignment: Text.AlignHCenter font: Style.smallFont diff --git a/nymea-app/ui/system/ZigbeeNetworkPage.qml b/nymea-app/ui/system/ZigbeeNetworkPage.qml index 10b996be..64763a05 100644 --- a/nymea-app/ui/system/ZigbeeNetworkPage.qml +++ b/nymea-app/ui/system/ZigbeeNetworkPage.qml @@ -275,7 +275,7 @@ SettingsPageBase { Layout.fillWidth: true text: node.model + " - " + node.manufacturer// nodeThing ? nodeThing.name : node.model subText: node.state == ZigbeeNode.ZigbeeNodeStateInitializing ? - qsTr("Initialiazing...") + qsTr("Initializing...") : nodeThings.count == 1 ? nodeThing.name : nodeThings.count > 1 ? qsTr("%1 things").arg(nodeThings.count) : qsTr("Unrecognized device") iconName: nodeThing ? app.interfacesToIcon(nodeThing.thingClass.interfaces) : "/ui/images/zigbee.svg"