mark some strings as translatable

This commit is contained in:
erciccione
2018-06-26 13:28:31 +03:00
parent cd46edb23f
commit 53c3151a23
6 changed files with 11 additions and 11 deletions

View File

@@ -65,7 +65,7 @@ Rectangle {
id: soloLocalDaemonsLabel
fontSize: 18
color: "#D02020"
text: qsTr("(only available for local daemons)")
text: qsTr("(only available for local daemons)") + translationManager.emptyString
visible: !walletManager.isDaemonLocal(appWindow.currentDaemonAddress)
}
@@ -73,7 +73,7 @@ Rectangle {
id: soloSyncedLabel
fontSize: 18
color: "#D02020"
text: qsTr("Your daemon must be synchronized before you can start mining")
text: qsTr("Your daemon must be synchronized before you can start mining") + translationManager.emptyString
visible: walletManager.isDaemonLocal(appWindow.currentDaemonAddress) && !appWindow.daemonSynced
}