FormatFullVersion: build fix related to recent translation improvement
This commit is contained in:
parent
6f460bace6
commit
c02ec54269
@ -895,8 +895,10 @@ string FormatVersion(int nVersion)
|
|||||||
string FormatFullVersion()
|
string FormatFullVersion()
|
||||||
{
|
{
|
||||||
string s = FormatVersion(VERSION) + pszSubVer;
|
string s = FormatVersion(VERSION) + pszSubVer;
|
||||||
if (VERSION_IS_BETA)
|
if (VERSION_IS_BETA) {
|
||||||
s += "-" + _("beta");
|
s += "-";
|
||||||
|
s += _("beta");
|
||||||
|
}
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user