From d67cfd146a333f1268ddd464381e99a7753ec85f Mon Sep 17 00:00:00 2001 From: John Maguire Date: Sun, 1 May 2011 09:20:29 -0400 Subject: [PATCH] fixed some translations which was... weird --- ui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui.cpp b/ui.cpp index ac2f2cf98..3a21f42f9 100644 --- a/ui.cpp +++ b/ui.cpp @@ -2627,9 +2627,9 @@ void CMyTaskBarIcon::Show(bool fShow) static char pszPrevTip[200]; if (fShow) { - string strTooltip = _("Balance: ") + FormatMoney(GetBalance()); + string strTooltip = strprintf(_("Balance: %s"), FormatMoney(GetBalance()).c_str()); if (fGenerateBitcoins) - strTooltip = _("Bitcoin - Generating (Balance: ") + FormatMoney(GetBalance()) + ")"; + strTooltip = strprintf(_("Bitcoin - Generating (Balance: %s)"), FormatMoney(GetBalance()).c_str()); if (fGenerateBitcoins && vNodes.empty()) strTooltip = _("Bitcoin - (not connected)");