We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 047ee42 + ceb8e22 commit 29ecccbCopy full SHA for 29ecccb
src/qt/utilitydialog.cpp
@@ -38,9 +38,9 @@ void AboutDialog::setModel(ClientModel *model)
38
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
39
*/
40
#if defined(__x86_64__)
41
- version += " (64-bit)";
+ version += tr(" (%1-bit)").arg(64);
42
#elif defined(__i386__ )
43
- version += " (32-bit)";
+ version += tr(" (%1-bit)").arg(32);
44
#endif
45
ui->versionLabel->setText(version);
46
}
0 commit comments