summaryrefslogtreecommitdiffstats
path: root/gps.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 /gps.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 'gps.c')
-rw-r--r--gps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gps.c b/gps.c
index 92835a229..66f787b85 100644
--- a/gps.c
+++ b/gps.c
@@ -179,7 +179,7 @@ void show_map(OsmGpsMap *map, GtkWidget **window, struct dive *dive, void (*call
*window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_position(GTK_WINDOW(*window), GTK_WIN_POS_MOUSE);
gtk_window_set_default_size(GTK_WINDOW(*window), 640, 480);
- gtk_window_set_title(GTK_WINDOW(*window), _("Dives locations"));
+ gtk_window_set_title(GTK_WINDOW(*window), _("Dive locations"));
gtk_container_set_border_width(GTK_CONTAINER(*window), 5);
gtk_window_set_resizable(GTK_WINDOW(*window), TRUE);
gtk_container_add(GTK_CONTAINER(*window), GTK_WIDGET(map));