# HG changeset patch # User sheepluva # Date 1364597883 -3600 # Node ID 9cc4a057473fff5c8f727fb5ccc4f8926f2918dc # Parent 8f317ba10675004893e2f7033bd85772f5ec9315 feedback page: allow translations for main text; added link to known bugs in order to reduce the future number of bug report duplicates a bit (We can all hope, right? :P) diff -r 8f317ba10675 -r 9cc4a057473f QTfrontend/ui/widget/feedbackdialog.cpp --- a/QTfrontend/ui/widget/feedbackdialog.cpp Fri Mar 29 10:54:12 2013 -0400 +++ b/QTfrontend/ui/widget/feedbackdialog.cpp Fri Mar 29 23:58:03 2013 +0100 @@ -74,16 +74,22 @@ QHBoxLayout * systemLayout = new QHBoxLayout(); info = new QLabel(); - info->setText( + info->setText(QString( "" - "

Please give us feedback!

" - "

We are always happy about suggestions, ideas, or bug reports.

" - "

Your email address is optional, but we may want to contact you.

" - "

" + "

%1

" + "

%2

" + "

%3 known bugs

" + "

%4

" + "

") + .arg(tr("Please give us feedback!")) + .arg(tr("We are always happy about suggestions, ideas, or bug reports.")) + .arg(tr("If you found a bug, you can see if it's already known here (english): ")) + .arg(tr("Your email address is optional, but we may want to contact you.")) ); + info->setOpenExternalLinks(true); pageLayout->addWidget(info); QVBoxLayout * summaryEmailLayout = new QVBoxLayout();