Commit c17f0a58 authored by Philip Kaufmann's avatar Philip Kaufmann
Browse files

[Qt] remove space from translation of client bitness

- its rather easy to leave out the space on Transifex, so remove it from
  the string
parent 733a7992
Showing with 2 additions and 2 deletions
+2 -2
......@@ -38,9 +38,9 @@ void AboutDialog::setModel(ClientModel *model)
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
*/
#if defined(__x86_64__)
version += tr(" (%1-bit)").arg(64);
version += " " + tr("(%1-bit)").arg(64);
#elif defined(__i386__ )
version += tr(" (%1-bit)").arg(32);
version += " " + tr("(%1-bit)").arg(32);
#endif
ui->versionLabel->setText(version);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment