[Kst] extragear/graphics/kst/kst

George Staikos staikos at kde.org
Fri Nov 25 16:04:48 CET 2005


SVN commit 483215 by staikos:

fix i18n


 M  +2 -2      kstplotdialog_i.cpp  


--- trunk/extragear/graphics/kst/kst/kstplotdialog_i.cpp #483214:483215
@@ -929,9 +929,9 @@
     if (plot) {
       for (KstMarkerList::ConstIterator it = plot->plotMarkers().begin(); it != plot->plotMarkers().end(); ++it) {
         if ((*it).isRising) {
-          PlotMarkerList->insertItem(QString("%1 [%2]").arg(QString::number((*it).value, 'g', LABEL_PRECISION)).arg(i18n("rising")));
+          PlotMarkerList->insertItem(i18n("%1 [rising]").arg(QString::number((*it).value, 'g', LABEL_PRECISION)));
         } else if ((*it).isFalling) {
-          PlotMarkerList->insertItem(QString("%1 [%2]").arg(QString::number((*it).value, 'g', LABEL_PRECISION)).arg(i18n("falling")));
+          PlotMarkerList->insertItem(i18n("%1 [falling]").arg(QString::number((*it).value, 'g', LABEL_PRECISION)));
         } else {
           PlotMarkerList->insertItem(QString::number((*it).value, 'g', LABEL_PRECISION));
         }


More information about the Kst mailing list