1
mirror of https://github.com/monero-project/monero-gui synced 2024-11-25 10:47:19 +01:00

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