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.
1 parent 085c621 commit ceb8e22Copy full SHA for ceb8e22
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