Now not marking geographical locations for translation. Fixes #261080

svn path=/trunk/; revision=29333
This commit is contained in:
Sushma Rai
2005-05-12 09:36:20 +00:00
parent e4fadeb1c9
commit 9bd1bb6ce2
+2 -2
View File
@@ -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;
}