[evolution-patches] hackfest: patch for #237844



Please review.
-Sushma.
Index: calendar/gui/e-cal-model-tasks.c
===================================================================
RCS file: /cvs/gnome/evolution/calendar/gui/e-cal-model-tasks.c,v
retrieving revision 1.29
diff -u -p -r1.29 e-cal-model-tasks.c
--- calendar/gui/e-cal-model-tasks.c	3 Jan 2005 19:52:39 -0000	1.29
+++ calendar/gui/e-cal-model-tasks.c	12 May 2005 06:23:37 -0000
@@ -294,9 +294,9 @@ get_geo (ECalModelComponent *comp_data)
 		geo = icalproperty_get_geo (prop);
 		g_snprintf (buf, sizeof (buf), "%g %s, %g %s",
 			    fabs (geo.lat),
-			    geo.lat >= 0.0 ? _("N") : _("S"),
+			    geo.lat >= 0.0 ? "N" : "S",
 			    fabs (geo.lon),
-			    geo.lon >= 0.0 ? _("E") : _("W"));
+			    geo.lon >= 0.0 ? "E" : "W");
 		return buf;
 	}
 
Index: calendar/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/calendar/ChangeLog,v
retrieving revision 1.2727
diff -u -p -r1.2727 ChangeLog
--- calendar/ChangeLog	10 May 2005 08:14:41 -0000	1.2727
+++ calendar/ChangeLog	12 May 2005 08:02:52 -0000
@@ -1,3 +1,9 @@
+2005-05-12  Sushma Rai  <rsushma novell com>
+
+	* gui/e-cal-model-tasks.c (get_geo): Not marking geographical locations
+	for translation. 
+	Fixes #237844
+
 2005-05-09  Rodrigo Moya <rodrigo novell com>
 
 	Fixes #301350


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]