Browse Source

Fix C++ word breaking

Fixes #13805.
PR #16636.
adaptive-webui-19844
Aleksandr Cupacenko 3 years ago committed by GitHub
parent
commit
67b35b76ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/gui/aboutdialog.cpp

1
src/gui/aboutdialog.cpp

@ -66,6 +66,7 @@ AboutDialog::AboutDialog(QWidget *parent) @@ -66,6 +66,7 @@ AboutDialog::AboutDialog(QWidget *parent)
"</table>"
"</p>")
.arg(tr("An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar.")
.replace("C++", "C\u2060+\u2060+") // make C++ non-breaking
, tr("Copyright %1 2006-2022 The qBittorrent project").arg(QString::fromUtf8(C_COPYRIGHT))
, tr("Home Page:")
, tr("Forum:")

Loading…
Cancel
Save