diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-01-27 11:09:06 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-02-16 03:01:34 +0100 |
commit | ceb8e226ef601dc24b32e1bd11184aeda4939257 (patch) | |
tree | b041b26a39fd88db31d096333230824011902092 /src | |
parent | 085c62149ad19cecf235829e49df07884a279e1e (diff) |
[Qt] allow translation of client bitness
Diffstat (limited to 'src')
-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 9c5bed5b89..24992db465 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 += " (64-bit)"; + version += tr(" (%1-bit)").arg(64); #elif defined(__i386__ ) - version += " (32-bit)"; + version += tr(" (%1-bit)").arg(32); #endif ui->versionLabel->setText(version); } |