# HG changeset patch # User ptt # Date 1164642396 0 # Node ID d78e7d5bc6d564ff67ec57c77e5492a7014431b2 # Parent 3e29b787f3b8e136f21406aaefbe33217034b7fc localization of parser-m*cmd.c messages diff -r 3e29b787f3b8 -r d78e7d5bc6d5 help/help_mp-en.h --- a/help/help_mp-en.h Mon Nov 27 14:27:33 2006 +0000 +++ b/help/help_mp-en.h Mon Nov 27 15:46:36 2006 +0000 @@ -496,6 +496,15 @@ // fifo.c #define MSGTR_CannotMakePipe "Cannot make PIPE!\n" +// parser-mecmd.c, parser-mpcmd.c +#define MSGTR_NoFileGivenOnCommandLine "'--' indicates no more options, but no filename was given on the command line.\n" +#define MSGTR_TheLoopOptionMustBeAnInteger "The loop option must be an integer: %s\n" +#define MSGTR_UnknownOptionOnCommandLine "Unknown option on the command line: -%s\n" +#define MSGTR_ErrorParsingOptionOnCommandLine "Error parsing option on the command line: -%s\n" +#define MSGTR_InvalidPlayEntry "Invalid play entry %s\n" +#define MSGTR_NotAnMEncoderOption "-%s is not an MEncoder option\n" +#define MSGTR_NoFileGiven "No file given\n" + // m_config.c #define MSGTR_SaveSlotTooOld "Save slot found from lvl %d is too old: %d !!!\n" #define MSGTR_InvalidCfgfileOption "The %s option can't be used in a config file.\n" diff -r 3e29b787f3b8 -r d78e7d5bc6d5 parser-mecmd.c --- a/parser-mecmd.c Mon Nov 27 14:27:33 2006 +0000 +++ b/parser-mecmd.c Mon Nov 27 15:46:36 2006 +0000 @@ -14,6 +14,7 @@ #endif #include "mp_msg.h" +#include "help_mp.h" #include "m_option.h" #include "m_config.h" #include "parser-mecmd.h" @@ -77,7 +78,7 @@ no_more_opts = 1; if (i+1 >= argc) { - mp_msg(MSGT_CFGPARSER, MSGL_ERR, "'--' indicates no more options, but no filename was given on the command line.\n"); + mp_msg(MSGT_CFGPARSER, MSGL_ERR, MSGTR_NoFileGivenOnCommandLine); goto err_out; } continue; @@ -92,7 +93,7 @@ mp_opt = m_config_get_option(config,opt); if(!mp_opt) { tmp = M_OPT_UNKNOWN; - mp_msg(MSGT_CFGPARSER, MSGL_ERR, "-%s is not an MEncoder option\n",opt); + mp_msg(MSGT_CFGPARSER, MSGL_ERR, MSGTR_NotAnMEncoderOption, opt); goto err_out; } if(!entry || (mp_opt->flags & M_OPT_GLOBAL)){ @@ -104,7 +105,7 @@ else if(tmp < 0){ // mp_msg(MSGT_CFGPARSER, MSGL_ERR, "m_config_set_option() failed (%d)\n",tmp); - mp_msg(MSGT_CFGPARSER, MSGL_FATAL, "Error parsing option on the command line: -%s\n",opt); + mp_msg(MSGT_CFGPARSER, MSGL_FATAL, MSGTR_ErrorParsingOptionOnCommandLine, opt); goto err_out; } } else { @@ -141,7 +142,7 @@ exit(0); if(nf == 0) { m_entry_list_free(lst); - mp_msg(MSGT_CFGPARSER, MSGL_ERR, "No file given\n"); + mp_msg(MSGT_CFGPARSER, MSGL_ERR, MSGTR_NoFileGiven); return NULL; } return lst; diff -r 3e29b787f3b8 -r d78e7d5bc6d5 parser-mpcmd.c --- a/parser-mpcmd.c Mon Nov 27 14:27:33 2006 +0000 +++ b/parser-mpcmd.c Mon Nov 27 15:46:36 2006 +0000 @@ -14,6 +14,7 @@ #endif #include "mp_msg.h" +#include "help_mp.h" #include "m_option.h" #include "m_config.h" #include "playtree.h" @@ -103,7 +104,7 @@ no_more_opts = 1; if (i+1 >= argc) { - mp_msg(MSGT_CFGPARSER, MSGL_ERR, "'--' indicates no more options, but no filename was given on the command line.\n"); + mp_msg(MSGT_CFGPARSER, MSGL_ERR, MSGTR_NoFileGivenOnCommandLine); goto err_out; } continue; @@ -150,7 +151,7 @@ char* end = NULL; l = (i+1