aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-14 06:30:49 -0400
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-14 06:30:49 -0400
commitce06ec3d17fb712854e8a59429065be2fc332310 (patch)
tree6db19fa395ad3a08bfb922f6e7c9c84cac0d2b41
parentce46a60cafa12080d330a6c6f82feeaeacc5ee37 (diff)
downloadsubsurface-ce06ec3d17fb712854e8a59429065be2fc332310.tar.gz
Fix typo in user visible string
Sadly that means "new translations are needed" Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--gtk-gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk-gui.c b/gtk-gui.c
index 9cdb8d9dd..90476306b 100644
--- a/gtk-gui.c
+++ b/gtk-gui.c
@@ -1547,7 +1547,7 @@ static void edit_dc_nicknames(GtkWidget *w, gpointer data)
vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
gtk_container_add(GTK_CONTAINER(scroll), view);
gtk_container_add(GTK_CONTAINER(vbox),
- gtk_label_new(_("Edit a dive computer nickname by double-clicking the in the relevant nickname field")));
+ gtk_label_new(_("Edit a dive computer nickname by double-clicking it in the relevant nickname field")));
gtk_container_add(GTK_CONTAINER(vbox), scroll);
gtk_widget_set_size_request(scroll, 500, 300);
gtk_widget_show_all(dialog);