aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-cal-model-tasks.c
diff options
context:
space:
mode:
authorSushma Rai <rsushma@src.gnome.org>2005-05-12 17:36:20 +0800
committerSushma Rai <rsushma@src.gnome.org>2005-05-12 17:36:20 +0800
commit9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b (patch)
tree304167795e3828bd945285b965f2b235c5b43cfb /calendar/gui/e-cal-model-tasks.c
parente4fadeb1c99a42f7af613a4b7cd1869ae646456b (diff)
downloadgsoc2013-evolution-9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b.tar
gsoc2013-evolution-9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b.tar.gz
gsoc2013-evolution-9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b.tar.bz2
gsoc2013-evolution-9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b.tar.lz
gsoc2013-evolution-9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b.tar.xz
gsoc2013-evolution-9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b.tar.zst
gsoc2013-evolution-9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b.zip
Now not marking geographical locations for translation. Fixes #261080
svn path=/trunk/; revision=29333
Diffstat (limited to 'calendar/gui/e-cal-model-tasks.c')
-rw-r--r--calendar/gui/e-cal-model-tasks.c4
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;
}