Skip to content

Commit

Permalink
Merge pull request bitcoin#3587
Browse files Browse the repository at this point in the history
ceb8e22 [Qt] allow translation of client bitness (Philip Kaufmann)
  • Loading branch information
laanwj committed Feb 17, 2014
2 parents 047ee42 + ceb8e22 commit 29ecccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt/utilitydialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 29ecccb

Please sign in to comment.