Bug 71742

Summary: little cosmetic bug in translated message box
Product: kcontrol Reporter: Florian Effenberger <floeff>
Component: kcmprintmgrAssignee: Michael Goffioul <kdeprint_bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description Florian Effenberger 2004-01-03 13:22:32 UTC
Version:            (using KDE KDE 3.1.94)
Installed from:    Compiled From Sources

There is a little cosmetic bug in a translated message box.

When you add a Samba-connected printer via the Printer Manager in the KDE Control Center and print a test page, the message box says ..."und klicken Sie dann auf <b>OK</b>"...

This <b>OK</b> seems to be wrong :)
Comment 1 Maksim Orlovich 2004-01-11 19:57:15 UTC
Subject: kdelibs/kdeprint/management

CVS commit by orlovich: 

Tell Qt to use rich-text mode for this, in case the translation needs it (#71742)
CCMAIL:71742-done@bugs.kde.org


  M +1 -1      kmwdrivertest.cpp   1.17


--- kdelibs/kdeprint/management/kmwdrivertest.cpp  #1.16:1.17
@@ -143,5 +143,5 @@ void KMWDriverTest::slotTest()
         {
                 if (KMFactory::self()->manager()->testPrinter(m_printer))
-                        KMessageBox::information(this,i18n("Test page successfully sent to printer. Wait until printing is complete, then click the OK button."));
+                        KMessageBox::information(this,"<qt>"+i18n("Test page successfully sent to printer. Wait until printing is complete, then click the OK button."));
                 else
                         KMessageBox::error(this,"<qt>"+i18n("Unable to test printer: ")+KMFactory::self()->manager()->errorMsg()+"</qt>");