Revision: 1824
          http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1824&view=rev
Author:   dforsi
Date:     2007-12-13 02:51:04 -0800 (Thu, 13 Dec 2007)

Log Message:
-----------
make some strings similar or identical to existing ones and add a missing 
variable for a %s directive

Modified Paths:
--------------
    gtkpod/trunk/ChangeLog_detailed
    gtkpod/trunk/src/file.c
    gtkpod/trunk/src/file_export.c
    gtkpod/trunk/src/file_itunesdb.c

Modified: gtkpod/trunk/ChangeLog_detailed
===================================================================
--- gtkpod/trunk/ChangeLog_detailed     2007-12-12 23:26:25 UTC (rev 1823)
+++ gtkpod/trunk/ChangeLog_detailed     2007-12-13 10:51:04 UTC (rev 1824)
@@ -1,3 +1,9 @@
+2007-12-13 Daniele Forsi <dforsi at users.sourceforge.net>
+        * src/file.c: add variable for existing %s directive
+
+       * src/file_export.c
+         src/file_itunesdb.c: make strings identical to existing ones
+
 2007-12-12 Daniele Forsi <dforsi at users.sourceforge.net>
        * src/misc_confirm.c
          src/display_photo.c

Modified: gtkpod/trunk/src/file.c
===================================================================
--- gtkpod/trunk/src/file.c     2007-12-12 23:26:25 UTC (rev 1823)
+++ gtkpod/trunk/src/file.c     2007-12-13 10:51:04 UTC (rev 1824)
@@ -280,7 +280,7 @@
     /* attempt to open playlist file */
     if (!(fp = fopen (plfile, "r")))
     {
-       gtkpod_warning (_("Cannot open '%s' for reading.\n\n"));
+       gtkpod_warning (_("Could not open '%s' for reading.\n"), plfile);
        g_free (plname);
        return FALSE;  /* definitely not! */
     }

Modified: gtkpod/trunk/src/file_export.c
===================================================================
--- gtkpod/trunk/src/file_export.c      2007-12-12 23:26:25 UTC (rev 1823)
+++ gtkpod/trunk/src/file_export.c      2007-12-13 10:51:04 UTC (rev 1824)
@@ -214,7 +214,7 @@
     }
     else
     {
-       gtkpod_warning (_("Unable to open '%s' for reading\n"), file);
+       gtkpod_warning (_("Could not open '%s' for reading.\n"), file);
     }
     return(result);
 }

Modified: gtkpod/trunk/src/file_itunesdb.c
===================================================================
--- gtkpod/trunk/src/file_itunesdb.c    2007-12-12 23:26:25 UTC (rev 1823)
+++ gtkpod/trunk/src/file_itunesdb.c    2007-12-13 10:51:04 UTC (rev 1824)
@@ -233,7 +233,7 @@
     fp = fopen (name, "r");
     if (!fp)
     {
-       gtkpod_warning (_("Could not open \"iTunesDB.ext\" for reading extended 
info.\n"),
+       gtkpod_warning (_("Could not open \"%s\" for reading extended info.\n"),
                        name);
        return FALSE;
     }


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to