Skip to content

Commit 29ecccb

Browse files
committed
Merge pull request #3587
ceb8e22 [Qt] allow translation of client bitness (Philip Kaufmann)
2 parents 047ee42 + ceb8e22 commit 29ecccb

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)