From a3c9c986528243aeec39a2b08a651167d7f17ca1 Mon Sep 17 00:00:00 2001
From: xmr-eric <eric@moneroeric.com>
Date: Mon, 20 Mar 2017 21:28:43 -0400
Subject: [PATCH] Main.qml: Capitalize Insufficient funds message

---
 main.qml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.qml b/main.qml
index ea11a8a8..d60872c8 100644
--- a/main.qml
+++ b/main.qml
@@ -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