summaryrefslogtreecommitdiffstats
path: root/info.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-01-29 01:27:36 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-01-29 20:32:56 +1100
commita61877d1d4efdd1ed295d31b0b3042ca44747b25 (patch)
tree74b3112bdbcc45a79c2c1a7f7415014fbaf1ee60 /info.c
parent8d6dd5f87d38fa25769e900028781fa1e851ebc5 (diff)
downloadsubsurface-a61877d1d4efdd1ed295d31b0b3042ca44747b25.tar.gz
Add missing strings for translations
Mostly in new code, but some of them are strings in older code that have been missed in the past. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'info.c')
-rw-r--r--info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/info.c b/info.c
index d6e2182ce..ed5bdb553 100644
--- a/info.c
+++ b/info.c
@@ -625,8 +625,8 @@ void print_gps_coordinates(char *buffer, int len, float lat, float lon)
float latmin, lonmin;
char *lath, *lonh;
- lath = lat >= 0.0 ? "N" : "S";
- lonh = lon >= 0.0 ? "E" : "W";
+ lath = lat >= 0.0 ? _("N") : _("S");
+ lonh = lon >= 0.0 ? _("E") : _("W");
lat = fabs(lat);
lon = fabs(lon);
latdeg = lat;