diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-01-29 01:27:36 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-29 20:32:56 +1100 |
commit | a61877d1d4efdd1ed295d31b0b3042ca44747b25 (patch) | |
tree | 74b3112bdbcc45a79c2c1a7f7415014fbaf1ee60 /info.c | |
parent | 8d6dd5f87d38fa25769e900028781fa1e851ebc5 (diff) | |
download | subsurface-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |