mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
Merge pull request #3922
c17f0a5
[Qt] remove space from translation of client bitness (Philip Kaufmann)
This commit is contained in:
commit
e9d2e6ed90
@ -38,9 +38,9 @@ void AboutDialog::setModel(ClientModel *model)
|
|||||||
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
|
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
|
||||||
*/
|
*/
|
||||||
#if defined(__x86_64__)
|
#if defined(__x86_64__)
|
||||||
version += tr(" (%1-bit)").arg(64);
|
version += " " + tr("(%1-bit)").arg(64);
|
||||||
#elif defined(__i386__ )
|
#elif defined(__i386__ )
|
||||||
version += tr(" (%1-bit)").arg(32);
|
version += " " + tr("(%1-bit)").arg(32);
|
||||||
#endif
|
#endif
|
||||||
ui->versionLabel->setText(version);
|
ui->versionLabel->setText(version);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user