Main.qml: Capitalize Insufficient funds message

This commit is contained in:
xmr-eric 2017-03-20 21:28:43 -04:00 committed by GitHub
parent a32b30e98b
commit a3c9c98652

View file

@ -549,7 +549,7 @@ ApplicationWindow {
return;
} else if (amountxmr > currentWallet.unlockedBalance) {
informationPopup.title = qsTr("Error") + translationManager.emptyString;
informationPopup.text = qsTr("insufficient funds. Unlocked balance: %1")
informationPopup.text = qsTr("Insufficient funds. Unlocked balance: %1")
.arg(walletManager.displayAmount(currentWallet.unlockedBalance))
+ translationManager.emptyString