mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
FormatFullVersion: build fix related to recent translation improvement
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user