diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-02-17 14:04:43 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-02-17 14:04:55 +0100 |
| commit | 29ecccb597fd373f7b9ab2979f3a13fb486513bb (patch) | |
| tree | fa8988409dcca5d6ff202dc8435868fd766c1ddf | |
| parent | Merge pull request #3666 (diff) | |
| parent | [Qt] allow translation of client bitness (diff) | |
| download | discoin-29ecccb597fd373f7b9ab2979f3a13fb486513bb.tar.xz discoin-29ecccb597fd373f7b9ab2979f3a13fb486513bb.zip | |
Merge pull request #3587
ceb8e22 [Qt] allow translation of client bitness (Philip Kaufmann)
| -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 9c5bed5b8..24992db46 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); } |