diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-05-12 17:36:20 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-05-12 17:36:20 +0800 |
commit | 9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b (patch) | |
tree | 304167795e3828bd945285b965f2b235c5b43cfb /calendar | |
parent | e4fadeb1c99a42f7af613a4b7cd1869ae646456b (diff) | |
download | gsoc2013-evolution-9bd1bb6ce23325c8cf28b5a341ff391e4b893e8b.tar.gz 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')
-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; } |