mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
8d6dd5f87d
commit
a61877d1d4
7 changed files with 54 additions and 54 deletions
4
info.c
4
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue