Fix literal %1 in i18n

This commit is contained in:
David Edmundson 2015-09-07 18:12:24 +02:00
parent 1423000b44
commit 6a7edf5f44

View file

@ -34,7 +34,8 @@ ShareConfig::ShareConfig(QWidget *parent, const QVariantList& args)
{
m_ui->setupUi(this);
// xgettext:no-c-format
m_ui->commentLabel->setText(i18n("%1 in the path will be replaced with the specific device name."));
m_ui->commentLabel->setTextFormat(Qt::RichText);
m_ui->commentLabel->setText(i18n("%1 in the path will be replaced with the specific device name."));
connect(m_ui->kurlrequester, SIGNAL(textChanged(QString)), this, SLOT(changed()));
}