[Kst] extragear/graphics/kst/kst

George Staikos staikos at kde.org
Fri Nov 11 00:52:34 CET 2005


SVN commit 479599 by staikos:

update to match the new behavior


 M  +8 -7      timedefinitions.h  


--- trunk/extragear/graphics/kst/kst/timedefinitions.h #479598:479599
@@ -31,13 +31,14 @@
 namespace KST {
 KstTimeDef timeDefinitions[] = {
   { I18N_NOOP("frames"), "frames", 1 },
-  { I18N_NOOP("s"), "seconds", 1 },
-  { I18N_NOOP("m"), "minutes", 60 },
-  { I18N_NOOP("h"), "hours", 3600 },
-  { I18N_NOOP("days"), "days", 86400 },
-  { I18N_NOOP("weeks"), "weeks", 604800 },
-  { I18N_NOOP("months"), "months", 2628000 }, // 1/12 of a year
-  { I18N_NOOP("years"), "years", 31536000 },  // 365 days
+  { I18N_NOOP("ms"), "milliseconds", 1 },
+  { I18N_NOOP("s"), "seconds", 1000 },
+  { I18N_NOOP("m"), "minutes", 60000 },
+  { I18N_NOOP("h"), "hours", 3600000 },
+  { I18N_NOOP("days"), "days", 86400000 },
+  { I18N_NOOP("weeks"), "weeks", 604800000 },
+  { I18N_NOOP("months"), "months", 2628000000 }, // 1/12 of a year
+  { I18N_NOOP("years"), "years", 31536000000 },  // 365 days
   { 0, 0, 0 }
 };
 }


More information about the Kst mailing list