String "change" in gvfs

View: New views
3 Messages — Rating Filter:   Alert me  

String "change" in gvfs

by Luca Ferretti :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Here is a small patch to change the following label:

        #: ../daemon/gvfsbackendcdda.c:826
        #, c-format
        msgid "The file does not exist"
       
The reason is simple: there are yet a lot of occurrences of the same
message, but using another form:

        #: ../daemon/gvfsbackendcomputer.c:571 ../daemon/gvfsbackenddnssd.c:345
        #: ../daemon/gvfsbackendnetwork.c:587 ../daemon/gvfsbackendsmbbrowse.c:799
        #: ../daemon/gvfsbackendsmbbrowse.c:866 ../daemon/gvfsbackendsmbbrowse.c:1037
        #: ../daemon/gvfsbackendsmbbrowse.c:1111
        msgid "File doesn't exist"
       
If I'm right, this change don't break the string freeze, 'cause replace
a string with an existing one.




[gvfs-use-same-string.diff]

Index: daemon/gvfsbackendcdda.c
===================================================================
--- daemon/gvfsbackendcdda.c (revisione 1400)
+++ daemon/gvfsbackendcdda.c (copia locale)
@@ -823,7 +823,7 @@
 
       if (track_num > cdda_backend->drive->tracks)
         {
-          error = g_error_new (G_IO_ERROR, G_IO_ERROR_NOT_FOUND, _("The file does not exist"));
+          error = g_error_new (G_IO_ERROR, G_IO_ERROR_NOT_FOUND, _("File doesn't exist"));
           g_vfs_job_failed_from_error (G_VFS_JOB (job), error);
           return;
         }



_______________________________________________
gnome-vfs-list mailing list
gnome-vfs-list@...
http://mail.gnome.org/mailman/listinfo/gnome-vfs-list

signature.asc (196 bytes) Download Attachment

Re: String "change" in gvfs

by Alexander Larsson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


On Wed, 2008-02-27 at 09:22 +0100, Luca Ferretti wrote:

> Here is a small patch to change the following label:
>
>         #: ../daemon/gvfsbackendcdda.c:826
>         #, c-format
>         msgid "The file does not exist"
>        
> The reason is simple: there are yet a lot of occurrences of the same
> message, but using another form:
>
>         #: ../daemon/gvfsbackendcomputer.c:571 ../daemon/gvfsbackenddnssd.c:345
>         #: ../daemon/gvfsbackendnetwork.c:587 ../daemon/gvfsbackendsmbbrowse.c:799
>         #: ../daemon/gvfsbackendsmbbrowse.c:866 ../daemon/gvfsbackendsmbbrowse.c:1037
>         #: ../daemon/gvfsbackendsmbbrowse.c:1111
>         msgid "File doesn't exist"
>        
> If I'm right, this change don't break the string freeze, 'cause replace
> a string with an existing one.

Looks good. Please commit.


_______________________________________________
gnome-vfs-list mailing list
gnome-vfs-list@...
http://mail.gnome.org/mailman/listinfo/gnome-vfs-list

Re: String "change" in gvfs

by Luca Ferretti :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Il giorno mer, 27/02/2008 alle 15.20 +0100, Alexander Larsson ha
scritto:
> On Wed, 2008-02-27 at 09:22 +0100, Luca Ferretti wrote:
> >        
> > If I'm right, this change don't break the string freeze, 'cause replace
> > a string with an existing one.
>
> Looks good. Please commit.
>

Done, thanks.



_______________________________________________
gnome-vfs-list mailing list
gnome-vfs-list@...
http://mail.gnome.org/mailman/listinfo/gnome-vfs-list

signature.asc (196 bytes) Download Attachment