[Kst] extragear/graphics/kst/kst

George Staikos staikos at kde.org
Mon Nov 28 21:15:57 CET 2005


SVN commit 483943 by staikos:

remove i18n


 M  +3 -3      ktimezonecombo.cpp  


--- trunk/extragear/graphics/kst/kst/ktimezonecombo.cpp #483942:483943
@@ -40,11 +40,11 @@
     db = new KstTimezones;
   }
 
-  insertItem(i18n("UTC"));
+  insertItem("UTC");
   const KstTimezones::ZoneMap zones = db->allZones();
   d->_offsets.resize(zones.count()+1);
   d->_offsets[0] = 0;
-  d->_names += i18n("UTC");
+  d->_names += "UTC";
   int i = 0;
   
   for (KstTimezones::ZoneMap::ConstIterator it = zones.begin(); it != zones.end(); ++it) {
@@ -69,7 +69,7 @@
       offnum += '0';
     }
     offnum += QString::number(minutes);
-    if ((*it)->name() != i18n("UTC")) {
+    if ((*it)->name() != "UTC") {
       insertItem(i18n("%3 (UTC%1%2)").arg(negative ? '-' : '+').arg(offnum).arg((*it)->name()));
       d->_names += (*it)->name();
     }


More information about the Kst mailing list