aboutsummaryrefslogtreecommitdiff
path: root/components/DaemonConsole.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/DaemonConsole.qml')
-rw-r--r--components/DaemonConsole.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/DaemonConsole.qml b/components/DaemonConsole.qml
index ba07f523..1a1cd82d 100644
--- a/components/DaemonConsole.qml
+++ b/components/DaemonConsole.qml
@@ -105,7 +105,7 @@ Window {
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
- text: qsTr("Close")
+ text: qsTr("Close") + translationManager.emptyString
onClicked: {
root.close()
root.accepted()
@@ -116,7 +116,7 @@ Window {
MoneroComponents.LineEdit {
id: sendCommandText
width: 300
- placeholderText: qsTr("command + enter (e.g help)")
+ placeholderText: qsTr("command + enter (e.g help)") + translationManager.emptyString
onAccepted: {
if(text.length > 0)
daemonManager.sendCommand(text,currentWallet.testnet);