1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(i18n): remove HTML from translations

fixes #3781
This commit is contained in:
sudden6 2016-10-06 22:37:50 +02:00
parent 8f37d4c7ab
commit c8bde5bc45
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

@ -167,8 +167,10 @@ void ScreenshotGrabber::setupScene()
void ScreenshotGrabber::useNothingSelectedTooltip()
{
helperTooltip->setHtml(tr("Click and drag to select a region. Press <b>Space</b> to hide/show qTox window, or <b>Escape</b> to cancel.",
"Help text shown when no region has been selected yet"));
helperTooltip->setHtml(tr("Click and drag to select a region. Press %1 to hide/show qTox window, or %2 to cancel.",
"Help text shown when no region has been selected yet")
.arg(QString("<b>%1</b>").arg(tr("Space", "[Space] key on the keyboard")),
QString("<b>%1</b>").arg(tr("Escape", "[Escape] key on the keyboard"))));
adjustTooltipPosition();
}