From: Alexander Larsson Date: Mon, 25 Feb 2008 09:11:09 +0000 (+0000) Subject: Make new strings reuse old ones. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=493cbfa6077850d2e134e3ac3dbe4cbf85a36e9b;p=dana%2Fcg-glib.git Make new strings reuse old ones. 2008-02-25 Alexander Larsson * glocalfile.c: Make new strings reuse old ones. svn path=/trunk/; revision=6581 --- diff --git a/gio/ChangeLog b/gio/ChangeLog index 32231cee..749792e4 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-02-25 Alexander Larsson + + * glocalfile.c: + Make new strings reuse old ones. + 2008-02-25 Alexander Larsson * glocalfile.c: diff --git a/gio/glocalfile.c b/gio/glocalfile.c index 5e8cd75d..fd9b9311 100644 --- a/gio/glocalfile.c +++ b/gio/glocalfile.c @@ -1853,14 +1853,14 @@ g_local_file_trash (GFile *file, g_set_error (error, G_IO_ERROR, G_IO_ERROR_CANCELLED, _("Unable to trash file: %s"), - _("cancelled")); + _("Operation was cancelled")); success = FALSE; } else if (!success) g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, _("Unable to trash file: %s"), - _("failed")); + _("internal error")); g_free (wfilename); return success;