aboutsummaryrefslogtreecommitdiff
path: root/components/DaemonManagerDialog.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 /components/DaemonManagerDialog.qml
parentd2c47606ca8446e58ef122117f8f84b578691bab (diff)
downloadmonzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.tar.gz
monzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.tar.xz
monzero-gui-15a5f763349c6e3b3d3570fd4de6a83a03d726ad.zip
add missing TranslationManager.emptyString
Diffstat (limited to 'components/DaemonManagerDialog.qml')
-rw-r--r--components/DaemonManagerDialog.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/DaemonManagerDialog.qml b/components/DaemonManagerDialog.qml
index 07dec4a0..92298e3e 100644
--- a/components/DaemonManagerDialog.qml
+++ b/components/DaemonManagerDialog.qml
@@ -90,7 +90,7 @@ Window {
}
Text {
- text: qsTr("Starting local node in %1 seconds").arg(countDown);
+ text: qsTr("Starting local node in %1 seconds").arg(countDown) + translationManager.emptyString;
font.pixelSize: 18
Layout.alignment: Qt.AlignHCenter
Layout.fillWidth: true
@@ -108,7 +108,7 @@ Window {
id: okButton
visible:false
fontSize: 14
- text: qsTr("Start daemon (%1)").arg(countDown)
+ text: qsTr("Start daemon (%1)").arg(countDown) + translationManager.emptyString
KeyNavigation.tab: cancelButton
onClicked: {
timer.stop();
@@ -121,7 +121,7 @@ Window {
MoneroComponents.StandardButton {
id: cancelButton
fontSize: 14
- text: qsTr("Use custom settings")
+ text: qsTr("Use custom settings") + translationManager.emptyString
onClicked: {
timer.stop();