From ceb8e226ef601dc24b32e1bd11184aeda4939257 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Mon, 27 Jan 2014 11:09:06 +0100 Subject: [PATCH] [Qt] allow translation of client bitness --- src/qt/utilitydialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 9c5bed5b895d4..24992db465f86 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); }