Code

spelling fixes by avuton
authorAndreas Obergrusberger <tradiaz@yahoo.de>
Sat, 12 Aug 2006 14:37:15 +0000 (14:37 +0000)
committerAndreas Obergrusberger <tradiaz@yahoo.de>
Sat, 12 Aug 2006 14:37:15 +0000 (14:37 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4615 09075e82-0dd4-0310-85a5-a0d7c8717e4f

src/conf.c
src/mpdclient.c
src/screen_file.c
src/screen_search.c
src/utils.c

index 2074a26381ea296c22846418817441f53bf5197d..ac9b83c2e43b745b9b1550db552b578b87a33074 100644 (file)
@@ -144,7 +144,7 @@ parse_key_value(char *str, size_t len, char **end)
        case KEY_PARSER_HEX:
          if( !isdigit(next) )
            {
-             fprintf(stderr,_("Error: Digit expexted after 0x - %s\n"), str);
+             fprintf(stderr,_("Error: Digit expected after 0x - %s\n"), str);
              return -1;
            }
          value = (int) strtol(str+(i+1), end, 16);
index 5697bd85d594134e7e8d2aa51df2d1d145f86827..ffa74a8a7a18b37054520a08d7b7611a8abc3fe8 100644 (file)
@@ -444,7 +444,7 @@ mpdclient_cmd_move(mpdclient_t *c, gint old_index, gint new_index)
 
   /* send the move command to mpd */  
 #ifdef ENABLE_SONG_ID
-  D("Swaping id:%d with id:%d\n", song1->id, song2->id);
+  D("Swapping id:%d with id:%d\n", song1->id, song2->id);
   mpd_sendSwapIdCommand(c->connection, song1->id, song2->id);
 #else
   D("Moving index %d to id:%d\n", old_index, new_index);
index 0019c94ffa23017aab8c6cb3f5a18ee567d3742e..2d8c1dea83a763fd2dee138cd7c53a4727c43a3a 100644 (file)
@@ -202,7 +202,7 @@ browse_lw_callback(int index, int *highlight, void *data)
       g_free(filename);
       return buf;
     }
-  return "Error: Unknow entry!";
+  return "Error: Unknown entry!";
 }
 
 /* chdir */
index 585eb6f02c01837cb438252718fd2022c6695d98..3f07d47682056d1b6016b6ffbd6e85d7d3711231 100644 (file)
@@ -119,7 +119,7 @@ lw_search_help_callback(int index, int *highlight, void *data)
   static char *text[] = {
     "Welcome to ncmpc's search screen - SVN version.",
     "",
-    "Quick search - just enter a string and ncmcp will search according",
+    "Quick search - just enter a string and ncmpc will search according",
     "               to the current search mode (displayed above).",
     "",
     "Advanced - bla bla bla.... syntax below",
index 0f63ff1da3dcb8fc3c906c22bdd7a7c1eef80870..404484ef41b602e9362443a1970248f1cb076126 100644 (file)
@@ -88,7 +88,7 @@ gcmp_list_from_path(mpdclient_t *c, gchar *path, GList *list, gint types)
   
   if( (filelist=mpdclient_filelist_get(c, path)) == NULL )
     return list;
-  D("retreived filelist!\n");
+  D("retrieved filelist!\n");
   flist = filelist->list;
   while( flist )
     {