Merge pull request #3587

ceb8e22 [Qt] allow translation of client bitness (Philip Kaufmann)
This commit is contained in:
Wladimir J. van der Laan 2014-02-17 14:04:43 +01:00
commit 29ecccb597
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}