diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/e-cal-model-tasks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-cal-model-tasks.c b/calendar/gui/e-cal-model-tasks.c index 2ef9420788..56479c9ade 100644 --- a/calendar/gui/e-cal-model-tasks.c +++ b/calendar/gui/e-cal-model-tasks.c @@ -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; } |