]> git.street.me.uk Git - andy/viking.git/commitdiff
Improve warning message, no creating is happening here.
authorRob Norris <rw_norris@hotmail.com>
Sun, 21 Oct 2012 22:55:21 +0000 (23:55 +0100)
committerRob Norris <rw_norris@hotmail.com>
Sat, 5 Jan 2013 12:47:39 +0000 (12:47 +0000)
src/viktrwlayer.c

index cb501edbe766dcecafcbaef27803244e32eb98dd..170a23a122f2f99bfabec4abbe5d2c90aa224764 100644 (file)
@@ -5727,7 +5727,7 @@ static const gchar* trw_layer_sublayer_rename_request ( VikTrwLayer *l, const gc
     if ( wpf ) {
       // An existing waypoint has been found with the requested name
       if ( ! a_dialog_yes_or_no ( VIK_GTK_WINDOW_FROM_LAYER(l),
-           _("A waypoint with the name \"%s\" already exists. Really create one with the same name?"), 
+           _("A waypoint with the name \"%s\" already exists. Really rename to the same name?"),
            newname ) )
         return NULL;
     }
@@ -5757,7 +5757,7 @@ static const gchar* trw_layer_sublayer_rename_request ( VikTrwLayer *l, const gc
     if ( trkf ) {
       // An existing track has been found with the requested name
       if ( ! a_dialog_yes_or_no ( VIK_GTK_WINDOW_FROM_LAYER(l),
-          _("A track with the name \"%s\" already exists. Really create one with the same name?"),
+          _("A track with the name \"%s\" already exists. Really rename to the same name?"),
           newname ) )
         return NULL;
     }