summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcorey <corey@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-31 05:49:05 +0000
committercorey <corey@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-31 05:49:05 +0000
commit8dec4eaf25a272755387af21ee23251a598bf019 (patch)
tree952b18e2a76ed1d85be68c8e6248841ae9fdf24a
parent12f9bb89464b8685cdd46dfbaa9858b66fe36c7f (diff)
downloadmpv-8dec4eaf25a272755387af21ee23251a598bf019.tar.bz2
mpv-8dec4eaf25a272755387af21ee23251a598bf019.tar.xz
Minor spelling and grammar fixes for part 1 of Otvos Attila's
"printf2mp_msg" changes. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18007 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--help/help_mp-en.h8
-rw-r--r--libmenu/menu_cmdlist.c2
-rw-r--r--libmenu/menu_param.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/help/help_mp-en.h b/help/help_mp-en.h
index 7fac1bdb92..0c15df1786 100644
--- a/help/help_mp-en.h
+++ b/help/help_mp-en.h
@@ -1448,15 +1448,15 @@ static char help_text[]=
// libmenu/menu_cmdlist.c
#define MSGTR_LIBMENU_NoEntryFoundInTheMenuDefinition "[MENU] No entry found in the menu definition.\n"
-#define MSGTR_LIBMENU_ListMenuEntryDefinitionsNeedAName "[MENU] List menu entry definitions needs a name (line %d).\n"
-#define MSGTR_LIBMENU_ListMenuNeedAnArgument "[MENU] List menu needs an argument.\n"
+#define MSGTR_LIBMENU_ListMenuEntryDefinitionsNeedAName "[MENU] List menu entry definitions need a name (line %d).\n"
+#define MSGTR_LIBMENU_ListMenuNeedsAnArgument "[MENU] List menu needs an argument.\n"
// libmenu/menu_console.c
#define MSGTR_LIBMENU_WaitPidError "[MENU] Waitpid error: %s.\n"
#define MSGTR_LIBMENU_SelectError "[MENU] Select error.\n"
#define MSGTR_LIBMENU_ReadErrorOnChilds "[MENU] Read error on child's: %s.\n"
#define MSGTR_LIBMENU_ConsoleRun "[MENU] Console run: %s ...\n"
-#define MSGTR_LIBMENU_AChildIsAlreadyRunning "[MENU] A child is alredy running.\n"
+#define MSGTR_LIBMENU_AChildIsAlreadyRunning "[MENU] A child is already running.\n"
#define MSGTR_LIBMENU_ForkFailed "[MENU] Fork failed !!!\n"
#define MSGTR_LIBMENU_WriteError "[MENU] Write error.\n"
@@ -1471,7 +1471,7 @@ static char help_text[]=
#define MSGTR_LIBMENU_NoEntryFoundInTheMenuDefinition "[MENU] No entry found in the menu definition.\n"
#define MSGTR_LIBMENU_SubmenuDefinitionNeedAMenuAttribut "[MENU] Submenu definition needs a 'menu' attribute.\n"
#define MSGTR_LIBMENU_PrefMenuEntryDefinitionsNeed "[MENU] Pref menu entry definitions need a valid 'property' attribute (line %d).\n"
-#define MSGTR_LIBMENU_PrefMenuNeedAnArgument "[MENU] Pref menu needs an argument.\n"
+#define MSGTR_LIBMENU_PrefMenuNeedsAnArgument "[MENU] Pref menu needs an argument.\n"
// libmenu/menu_pt.c
#define MSGTR_LIBMENU_CantfindTheTargetItem "[MENU] Can't find the target item ????\n"
diff --git a/libmenu/menu_cmdlist.c b/libmenu/menu_cmdlist.c
index bdef83892b..497b7b6d55 100644
--- a/libmenu/menu_cmdlist.c
+++ b/libmenu/menu_cmdlist.c
@@ -147,7 +147,7 @@ static int open(menu_t* menu, char* args) {
menu->close = close;
if(!args) {
- mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_ListMenuNeedAnArgument);
+ mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_ListMenuNeedsAnArgument);
return 0;
}
diff --git a/libmenu/menu_param.c b/libmenu/menu_param.c
index 8cec09b9a0..0e211e99b8 100644
--- a/libmenu/menu_param.c
+++ b/libmenu/menu_param.c
@@ -238,7 +238,7 @@ static int openMenu(menu_t* menu, char* args) {
if(!args) {
- mp_msg(MSGT_OSD_MENU,MSGL_ERR,MSGTR_LIBMENU_PrefMenuNeedAnArgument);
+ mp_msg(MSGT_OSD_MENU,MSGL_ERR,MSGTR_LIBMENU_PrefMenuNeedsAnArgument);
return 0;
}