[Kstars-devel] branches/KDE/4.1/kdeedu/kstars/kstars

Akarsh Simha akarshsimha at gmail.com
Mon Jan 5 19:07:10 CET 2009


SVN commit 906173 by asimha:

Backporting fix to bug 141372 to 4.1 branch. Original commit log
reads as follows:

Localizing Information / Image link titles in the detail dialog. (The
localized strings are already present as the same are used in the
popup menu.)

CCBUG: 141372
CCMAIL: kstars-devel at kde.org



 M  +2 -2      detaildialog.cpp  


--- branches/KDE/4.1/kdeedu/kstars/kstars/detaildialog.cpp #906172:906173
@@ -357,12 +357,12 @@
     Links->ImagesTitle->setPalette( titlePalette );
 
     foreach ( const QString &s, selectedObject->InfoTitle )
-    Links->InfoTitleList->addItem( s );
+    Links->InfoTitleList->addItem( i18nc( "Image/info menu item (should be translated)", s.toLocal8Bit() ) );
 
     //Links->InfoTitleList->setCurrentRow(0);
 
     foreach ( const QString &s, selectedObject->ImageTitle )
-    Links->ImageTitleList->addItem( s );
+    Links->ImageTitleList->addItem( i18nc( "Image/info menu item (should be translated)", s.toLocal8Bit() ) );
 
      updateButtons();
 


More information about the Kstars-devel mailing list