diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-03-21 08:49:51 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-03-21 08:49:51 +0100 |
commit | c17f0a58b453982c7fde8b1df042e1cb22a168a5 (patch) | |
tree | b3ba845e5ec3ddd54b013fe83016aaebd4b548d8 /src/qt | |
parent | 733a7992186c3d6338fcfe259c93b5dc15d796a7 (diff) |
[Qt] remove space from translation of client bitness
- its rather easy to leave out the space on Transifex, so remove it from
the string
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/utilitydialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 24992db465..b9ace22197 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -38,9 +38,9 @@ void AboutDialog::setModel(ClientModel *model) * 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious. */ #if defined(__x86_64__) - version += tr(" (%1-bit)").arg(64); + version += " " + tr("(%1-bit)").arg(64); #elif defined(__i386__ ) - version += tr(" (%1-bit)").arg(32); + version += " " + tr("(%1-bit)").arg(32); #endif ui->versionLabel->setText(version); } |