mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-28 18:56:32 +02:00
Main.qml: Capitalize Insufficient funds message
This commit is contained in:
parent
a32b30e98b
commit
a3c9c98652
2
main.qml
2
main.qml
@ -549,7 +549,7 @@ ApplicationWindow {
|
|||||||
return;
|
return;
|
||||||
} else if (amountxmr > currentWallet.unlockedBalance) {
|
} else if (amountxmr > currentWallet.unlockedBalance) {
|
||||||
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
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))
|
.arg(walletManager.displayAmount(currentWallet.unlockedBalance))
|
||||||
+ translationManager.emptyString
|
+ translationManager.emptyString
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user