Skip to content

Commit ceb8e22

Browse files
author
Philip Kaufmann
committed
[Qt] allow translation of client bitness
1 parent 085c621 commit ceb8e22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qt/utilitydialog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ void AboutDialog::setModel(ClientModel *model)
3838
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
3939
*/
4040
#if defined(__x86_64__)
41-
version += " (64-bit)";
41+
version += tr(" (%1-bit)").arg(64);
4242
#elif defined(__i386__ )
43-
version += " (32-bit)";
43+
version += tr(" (%1-bit)").arg(32);
4444
#endif
4545
ui->versionLabel->setText(version);
4646
}

0 commit comments

Comments
 (0)