Revision: 1596
          http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1596&view=rev
Author:   dforsi
Date:     2007-06-26 07:33:01 -0700 (Tue, 26 Jun 2007)

Log Message:
-----------
fix typos in comments

Modified Paths:
--------------
    gtkpod/trunk/ChangeLog_detailed
    gtkpod/trunk/src/details.c
    gtkpod/trunk/src/details.h
    gtkpod/trunk/src/display_coverart.c
    gtkpod/trunk/src/display_itdb.c
    gtkpod/trunk/src/display_playlists.c
    gtkpod/trunk/src/display_sorttabs.c
    gtkpod/trunk/src/fetchcover.c
    gtkpod/trunk/src/file.c
    gtkpod/trunk/src/prefs.h
    gtkpod/trunk/src/tools.c

Modified: gtkpod/trunk/ChangeLog_detailed
===================================================================
--- gtkpod/trunk/ChangeLog_detailed     2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/ChangeLog_detailed     2007-06-26 14:33:01 UTC (rev 1596)
@@ -5,6 +5,17 @@
          src/misc_playlist.c: change some strings to match existing ones
          (this will hopefully help translators a little bit) 
 
+       * src/details.c
+         src/details.h
+         src/display_coverart.c
+         src/display_itdb.c
+         src/display_playlists.c
+         src/display_sorttabs.c
+         src/fetchcover.c
+         src/file.c
+         src/prefs.h
+         src/tools.c: fix typos in comments
+
 2007-06-25  Todd Zullinger <tmzullinger at users.sourceforge.net>
 
        * src/file.c

Modified: gtkpod/trunk/src/details.c
===================================================================
--- gtkpod/trunk/src/details.c  2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/details.c  2007-06-26 14:33:01 UTC (rev 1596)
@@ -524,7 +524,7 @@
 }
 
 
-/****** Copy artwork data if filaname has changed ****** */
+/****** Copy artwork data if filename has changed ****** */
 static gboolean details_copy_artwork (Track *frtrack, Track *totrack)
 {
                gboolean changed = FALSE;

Modified: gtkpod/trunk/src/details.h
===================================================================
--- gtkpod/trunk/src/details.h  2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/details.h  2007-06-26 14:33:01 UTC (rev 1596)
@@ -47,7 +47,7 @@
     GList *tracks;      /* tracks displayed in details window */
     Track *track;       /* currently displayed track          */
     gboolean artwork_ok;/* artwork can be displayed or not    */
-    gboolean changed;   /* at lease one track was changed     */
+    gboolean changed;   /* at least one track was changed     */
 
 };
 

Modified: gtkpod/trunk/src/display_coverart.c
===================================================================
--- gtkpod/trunk/src/display_coverart.c 2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/display_coverart.c 2007-06-26 14:33:01 UTC (rev 1596)
@@ -65,7 +65,7 @@
 
 /* The structure that holds values used throughout all the functions */
 static CD_Widget *cdwidget = NULL;
-/* The backing hash for the albums and it associated key list */
+/* The backing hash for the albums and its associated key list */
 static GHashTable *album_hash;
 static GList *album_key_list;
 /* Dimensions used for the canvas */
@@ -1527,7 +1527,7 @@
                        g_return_if_fail (keypos);
                        g_free (trk_key);
                        
-                       /* Reassign trk_key to the ky from the list */
+                       /* Reassign trk_key to the key from the list */
                        trk_key = keypos->data;
                        index = g_list_position (album_key_list, keypos);
        

Modified: gtkpod/trunk/src/display_itdb.c
===================================================================
--- gtkpod/trunk/src/display_itdb.c     2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/display_itdb.c     2007-06-26 14:33:01 UTC (rev 1596)
@@ -553,7 +553,7 @@
     g_return_val_if_fail (pl_name, pl);
     pl = itdb_playlist_by_name (itdb, pl_name);
     if (pl)
-    {   /* check if the it's the same type (spl or normal) */
+    {   /* check if it's the same type (spl or normal) */
        if (pl->is_spl == spl) return pl;
     }
     /* Create a new playlist */

Modified: gtkpod/trunk/src/display_playlists.c
===================================================================
--- gtkpod/trunk/src/display_playlists.c        2007-06-26 13:43:54 UTC (rev 
1595)
+++ gtkpod/trunk/src/display_playlists.c        2007-06-26 14:33:01 UTC (rev 
1596)
@@ -1076,7 +1076,7 @@
            return TRUE;
        }
 
-       /* no -- go down one hirarchy and try all other iters */
+       /* no -- go down one hierarchy and try all other iters */
        if (!gtk_tree_model_iter_children (model, pl_iter, &itdb_iter))
        {   /* This indicates screwed up programming so we better cry
               out */

Modified: gtkpod/trunk/src/display_sorttabs.c
===================================================================
--- gtkpod/trunk/src/display_sorttabs.c 2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/display_sorttabs.c 2007-06-26 14:33:01 UTC (rev 1596)
@@ -2602,7 +2602,7 @@
 }
 
 
-/* Regularily arrange the visible sort tabs */
+/* Regularly arrange the visible sort tabs */
 void st_arrange_visible_sort_tabs (void)
 {
     gint i, num;

Modified: gtkpod/trunk/src/fetchcover.c
===================================================================
--- gtkpod/trunk/src/fetchcover.c       2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/fetchcover.c       2007-06-26 14:33:01 UTC (rev 1596)
@@ -54,7 +54,7 @@
 static GList *fetchcover_image_list = NULL;
 /* Index for controlling which cover image to display */
 static gint displayed_cover_index = 0;
-/* Pointer to the currently display cover */
+/* Pointer to the currently displayed cover */
 static Fetch_Cover *displayed_cover;
 /* Canvas widget for display of cover */
 static GnomeCanvas *fetchcover_canvas;
@@ -250,7 +250,7 @@
                                if ((!xmlStrcmp(details->name, (const 
xmlChar*)"ImageUrlLarge")))
                                {
                                        key = xmlNodeListGetString (doc, 
details->xmlChildrenNode, 1);
-                                       /* Create a fetchcover object and the 
add to the list */
+                                       /* Create a fetchcover object and then 
add it to the list */
                                        fcover = g_new0(Fetch_Cover, 1);
                                        fcover->url = g_string_new ((gchar*) 
key);
                                        fcover->image = NULL;
@@ -664,7 +664,7 @@
                        gtk_widget_destroy (dialog);
                        return filename;
                case GTK_RESPONSE_NO:
-                       /* User doesnt want to overwrite anything so need to do 
some work on filename */
+                       /* User doesn't want to overwrite anything so need to 
do some work on filename */
                        splitarr = g_strsplit (filename, ".", 0);
                        basename = splitarr[0];
                        
@@ -673,7 +673,7 @@
                                g_sprintf (filename, "%s%d.jpg", basename, i);
                        }
                        
-                       /* Should have found a filename that really doesnt 
exist so this needs to be returned */
+                       /* Should have found a filename that really doesn't 
exist so this needs to be returned */
                        basename = NULL;
                        g_strfreev(splitarr);
                        gtk_widget_destroy (dialog);
@@ -852,7 +852,7 @@
        
        gnome_canvas_item_raise_to_top (art_border);
        
-       /* Add canvas to horizonontal box */
+       /* Add canvas to horizontal box */
        canvasbutton_hbox = GTK_BOX (gtkpod_xml_get_widget (fetchcover_xml, 
"canvasbutton_hbox"));
        gtk_widget_set_size_request (GTK_WIDGET(canvasbutton_hbox), IMGSCALE + 
150, IMGSCALE + 20);
        gtk_box_pack_start_defaults ( canvasbutton_hbox, GTK_WIDGET 
(fetchcover_canvas));

Modified: gtkpod/trunk/src/file.c
===================================================================
--- gtkpod/trunk/src/file.c     2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/file.c     2007-06-26 14:33:01 UTC (rev 1596)
@@ -1166,7 +1166,7 @@
        break;
     case FILE_TYPE_OGG:
         nti = ogg_get_file_info (name);
-        /* Set unk208 to audio */
+        /* Set mediatype to audio */
         if (nti)
         {
             nti->mediatype = ITDB_MEDIATYPE_AUDIO;
@@ -1174,7 +1174,7 @@
         break;
     case FILE_TYPE_FLAC:
         nti = flac_get_file_info (name);
-        /* Set unk208 to audio */
+        /* Set mediatype to audio */
         if (nti)
         {
             nti->mediatype = ITDB_MEDIATYPE_AUDIO;

Modified: gtkpod/trunk/src/prefs.h
===================================================================
--- gtkpod/trunk/src/prefs.h    2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/prefs.h    2007-06-26 14:33:01 UTC (rev 1596)
@@ -75,7 +75,7 @@
        GTree *tree;
 } TempLists;
 
-/* Prefrences setup and cleanup */
+/* Preferences setup and cleanup */
 void prefs_init (int argc, char *argv[]);
 void prefs_save (void);
 void prefs_shutdown (void);

Modified: gtkpod/trunk/src/tools.c
===================================================================
--- gtkpod/trunk/src/tools.c    2007-06-26 13:43:54 UTC (rev 1595)
+++ gtkpod/trunk/src/tools.c    2007-06-26 14:33:01 UTC (rev 1596)
@@ -658,7 +658,7 @@
 
     /*create the pipe*/
     pipe(fdpipe);
-    /*than fork*/
+    /*then fork*/
     pid=fork();
 
     /*and cast mp3gain*/


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

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to