FormatFullVersion: build fix related to recent translation improvement
This commit is contained in:
parent
6f460bace6
commit
c02ec54269
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue