Bug 71742 - little cosmetic bug in translated message box
Summary: little cosmetic bug in translated message box
Status: RESOLVED FIXED
Alias: None
Product: kcontrol
Classification: Miscellaneous
Component: kcmprintmgr (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Michael Goffioul
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-01-03 13:22 UTC by Florian Effenberger
Modified: 2004-01-11 19:57 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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>");