# HG changeset patch # User masneyb # Date 1147625803 0 # Node ID af9ecca3568e81b14863c63f28e712f404f42624 # Parent 1c6daf1203e8472007fc087cd4ed84f8cda6ddbf 2006-5-14 Brian Masney * src/gtk/bookmarks.c (delete_entry) - fixed typo (closes #312795) diff -r 1c6daf1203e8 -r af9ecca3568e ChangeLog --- a/ChangeLog Sun May 14 16:51:17 2006 +0000 +++ b/ChangeLog Sun May 14 16:56:43 2006 +0000 @@ -1,4 +1,6 @@ 2006-5-14 Brian Masney + * src/gtk/bookmarks.c (delete_entry) - fixed typo (closes #312795) + * docs/gftp.desktop - fixes so that desktop-file-validate processes the file with no errors (from Vincent Fretin ) (closes #316167) @@ -3345,7 +3347,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.422 2006/05/14 16:51:16 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.423 2006/05/14 16:56:42 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r 1c6daf1203e8 -r af9ecca3568e src/gtk/bookmarks.c --- a/src/gtk/bookmarks.c Sun May 14 16:51:17 2006 +0000 +++ b/src/gtk/bookmarks.c Sun May 14 16:56:43 2006 +0000 @@ -554,7 +554,7 @@ else pos++; - tempstr = g_strdup_printf (_("Are you sure you want to erase the bookmark\n%s and all it's children?"), pos); + tempstr = g_strdup_printf (_("Are you sure you want to erase the bookmark\n%s and all its children?"), pos); MakeYesNoDialog (_("Delete Bookmark"), tempstr, do_delete_entry, entry, NULL, NULL); g_free (tempstr);