summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7a137d8)
raw | patch | inline | side by side (parent: 7a137d8)
author | Andreas Obergrusberger <tradiaz@yahoo.de> | |
Sat, 12 Aug 2006 14:37:15 +0000 (14:37 +0000) | ||
committer | Andreas 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 | patch | blob | history | |
src/mpdclient.c | patch | blob | history | |
src/screen_file.c | patch | blob | history | |
src/screen_search.c | patch | blob | history | |
src/utils.c | patch | blob | history |
diff --git a/src/conf.c b/src/conf.c
index 2074a26381ea296c22846418817441f53bf5197d..ac9b83c2e43b745b9b1550db552b578b87a33074 100644 (file)
--- a/src/conf.c
+++ b/src/conf.c
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);
diff --git a/src/mpdclient.c b/src/mpdclient.c
index 5697bd85d594134e7e8d2aa51df2d1d145f86827..ffa74a8a7a18b37054520a08d7b7611a8abc3fe8 100644 (file)
--- a/src/mpdclient.c
+++ b/src/mpdclient.c
/* 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);
diff --git a/src/screen_file.c b/src/screen_file.c
index 0019c94ffa23017aab8c6cb3f5a18ee567d3742e..2d8c1dea83a763fd2dee138cd7c53a4727c43a3a 100644 (file)
--- a/src/screen_file.c
+++ b/src/screen_file.c
g_free(filename);
return buf;
}
- return "Error: Unknow entry!";
+ return "Error: Unknown entry!";
}
/* chdir */
diff --git a/src/screen_search.c b/src/screen_search.c
index 585eb6f02c01837cb438252718fd2022c6695d98..3f07d47682056d1b6016b6ffbd6e85d7d3711231 100644 (file)
--- a/src/screen_search.c
+++ b/src/screen_search.c
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",
diff --git a/src/utils.c b/src/utils.c
index 0f63ff1da3dcb8fc3c906c22bdd7a7c1eef80870..404484ef41b602e9362443a1970248f1cb076126 100644 (file)
--- a/src/utils.c
+++ b/src/utils.c
if( (filelist=mpdclient_filelist_get(c, path)) == NULL )
return list;
- D("retreived filelist!\n");
+ D("retrieved filelist!\n");
flist = filelist->list;
while( flist )
{