Browse Source

[Qt] allow translation of client bitness

0.10
Philip Kaufmann 11 years ago
parent
commit
ceb8e226ef
  1. 4
      src/qt/utilitydialog.cpp

4
src/qt/utilitydialog.cpp

@ -38,9 +38,9 @@ void AboutDialog::setModel(ClientModel *model) @@ -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);
}

Loading…
Cancel
Save