branches/KDE/3.5/kdemultimedia/kaudiocreator trunk/KDE/kdemultimedia/kaudiocreator

Thomas Reitelbach tr at erdfunkstelle.de
Tue Nov 14 17:16:00 CET 2006


SVN commit 604923 by reitelbach:

fix issue with l10n. The CDDB edit dialog appears untranslated on screen even if the corresponding strings (which are from libkcddb) are fully translated. Reason: kaudiocreator does not include the i18n-catalogue "libkcddb".

CCMAIL:kde-i18n-de at kde.org


 M  +4 -0      branches/KDE/3.5/kdemultimedia/kaudiocreator/main.cpp  
 M  +4 -0      trunk/KDE/kdemultimedia/kaudiocreator/main.cpp  


--- branches/KDE/3.5/kdemultimedia/kaudiocreator/main.cpp #604922:604923
@@ -41,6 +41,10 @@
   KCmdLineArgs::addCmdLineOptions( options );
   KApplication a(argc, argv);
   KAudioCreator *app = new KAudioCreator(0, "MainWindow");
+
+  // we need some strings from libkcddb for the cddb album dialog
+  KGlobal::locale()->insertCatalogue("libkcddb");
+
   a.setMainWidget(app);
 
   KCmdLineArgs* args = KCmdLineArgs::parsedArgs();
--- trunk/KDE/kdemultimedia/kaudiocreator/main.cpp #604922:604923
@@ -41,6 +41,10 @@
   KCmdLineArgs::addCmdLineOptions( options );
   KApplication a(true);
   KAudioCreator *app = new KAudioCreator(0, "MainWindow");
+
+  // we need some strings from libkcddb for the cddb album dialog
+  KGlobal::locale()->insertCatalogue("libkcddb");
+
   a.setMainWidget(app);
 
   KCmdLineArgs* args = KCmdLineArgs::parsedArgs();


More information about the kde-i18n-de mailing list