From 2f1524d0db0dc8e16f5cd95ad95e13079d76e452 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Mon, 7 Nov 2016 13:10:53 +0200 Subject: [PATCH] Move url to user manual outside of translated string. --HG-- branch : develop --- .../valentina/dialogs/configpages/configurationpage.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/valentina/dialogs/configpages/configurationpage.cpp b/src/app/valentina/dialogs/configpages/configurationpage.cpp index 8c1ead813..4f2d11265 100644 --- a/src/app/valentina/dialogs/configpages/configurationpage.cpp +++ b/src/app/valentina/dialogs/configpages/configurationpage.cpp @@ -336,9 +336,10 @@ QGroupBox *ConfigurationPage::SendGroup() sendReportCheck->setChecked(qApp->ValentinaSettings()->GetSendReportState()); description = new QLabel(tr("After each crash Valentina collects information that may help us fix the " - "problem. We do not collect any personal information. Find more about what " - "" - "kind of information we collect.")); + "problem. We do not collect any personal information. Find more about what %1" + "kind of information%2 we collect.") + .arg("") + .arg("")); description->setTextFormat(Qt::RichText); description->setTextInteractionFlags(Qt::TextBrowserInteraction); description->setOpenExternalLinks(true);