FormatFullVersion: build fix related to recent translation improvement

This commit is contained in:
Jeff Garzik 2011-06-14 04:50:51 -04:00 committed by Jeff Garzik
parent 6f460bace6
commit c02ec54269
1 changed files with 4 additions and 2 deletions

View File

@ -895,8 +895,10 @@ string FormatVersion(int nVersion)
string FormatFullVersion()
{
string s = FormatVersion(VERSION) + pszSubVer;
if (VERSION_IS_BETA)
s += "-" + _("beta");
if (VERSION_IS_BETA) {
s += "-";
s += _("beta");
}
return s;
}