manually add the <qt>...</qt> markers, as it seems the only way to make that text recognized as rich text (albeit the format forced as Qt::RichText...)

svn path=/trunk/KDE/kdegraphics/okular/; revision=703799
This commit is contained in:
Pino Toscano 2007-08-23 10:48:47 +00:00
parent 424fedf876
commit 5d4df04811

View file

@ -30,9 +30,9 @@ ChooseEngineDialog::ChooseEngineDialog( const QStringList &generators, const KMi
m_widget->engineList->addItems(generators);
m_widget->description->setText(
i18n( "More than one backend found for the MIME type:<br />"
i18n( "<qt>More than one backend found for the MIME type:<br />"
"<b>%1</b> (%2).<br /><br />"
"Please select which one to use:", mime->comment(), mime->name() ) );
"Please select which one to use:</qt>", mime->comment(), mime->name() ) );
}
ChooseEngineDialog::~ChooseEngineDialog()