Make new strings reuse old ones.
authorAlexander Larsson <alexl@redhat.com>
Mon, 25 Feb 2008 09:11:09 +0000 (09:11 +0000)
committerAlexander Larsson <alexl@src.gnome.org>
Mon, 25 Feb 2008 09:11:09 +0000 (09:11 +0000)
2008-02-25  Alexander Larsson  <alexl@redhat.com>

        * glocalfile.c:
Make new strings reuse old ones.

svn path=/trunk/; revision=6581

gio/ChangeLog
gio/glocalfile.c

index 32231cee5581eec645c3615c438ba5a768e5918c..749792e4adf74e4cf4620b07a933ae9ec5c50e35 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-25  Alexander Larsson  <alexl@redhat.com>
+
+        * glocalfile.c:
+       Make new strings reuse old ones.
+       
 2008-02-25  Alexander Larsson  <alexl@redhat.com>
 
         * glocalfile.c:
index 5e8cd75dabfcd198a5fde1a8a38496ef386dfc59..fd9b93114e6b358f3daf7d440ec19bb1f2b5f40f 100644 (file)
@@ -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;