aboutsummaryrefslogtreecommitdiff
path: root/LeftPanel.qml
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-04-16 16:35:30 +0200
committerselsta <selsta@sent.at>2019-04-16 16:35:30 +0200
commit15a5f763349c6e3b3d3570fd4de6a83a03d726ad (patch)
treec425d914730cb2debe0b2f7e248199fc1a445111 /LeftPanel.qml
parentd2c47606ca8446e58ef122117f8f84b578691bab (diff)
downloadmonzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.tar.gz
monzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.tar.xz
monzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.zip
add missing TranslationManager.emptyString
Diffstat (limited to 'LeftPanel.qml')
-rw-r--r--LeftPanel.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml
index 51ccd01d..c48f62d1 100644
--- a/LeftPanel.qml
+++ b/LeftPanel.qml
@@ -684,7 +684,7 @@ Rectangle {
anchors.right: parent.right
anchors.bottom: daemonProgressBar.top
height: 48 * scaleRatio
- syncType: qsTr("Wallet")
+ syncType: qsTr("Wallet") + translationManager.emptyString
visible: networkStatus.connected
}
@@ -693,7 +693,7 @@ Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
- syncType: qsTr("Daemon")
+ syncType: qsTr("Daemon") + translationManager.emptyString
visible: networkStatus.connected
height: 62 * scaleRatio
}