diff options
author | Han Lin Yap <codler@gmail.com> | 2011-06-12 00:18:34 +0200 |
---|---|---|
committer | Han Lin Yap <codler@gmail.com> | 2011-06-12 00:18:34 +0200 |
commit | ca93cc563e52e2919d8760c8e58d02e0a5d6d59c (patch) | |
tree | 72017144bbc5252aa8899e3dc337fea25e6715f4 /src/util.cpp | |
parent | e051f1b510c2a8da51c099c73d5750b9c8c9422b (diff) |
Double check translation and improved a translation string
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 6199109289..5220cdcd2b 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -896,7 +896,7 @@ string FormatFullVersion() { string s = FormatVersion(VERSION) + pszSubVer; if (VERSION_IS_BETA) - s += _("-beta"); + s += "-" + _("beta"); return s; } |