}
if (argc >= 7){
- wxPuts("Too many arguments given.");
+ wxPuts(_("Too many arguments given."));
exit(EXIT_FAILURE);
}
switch (ConvertRunStatus){
case CONVERTRESULT_UNITTESTFAIL:
- wxPuts("An internal unit testing failure has occured.");
+ wxPuts(_("An internal unit testing failure has occured."));
exit(EXIT_SUCCESS);
break;
case CONVERTRESULT_OK:
break;
case CONVERTRESULT_FORMATSSAME:
- wxPuts("Both input and output formats are the same.");
+ wxPuts(_("Both input and output formats are the same."));
exit(EXIT_FAILURE);
break;
case CONVERTRESULT_INVALIDINPUTFORMAT:
- wxPuts("Invalid input format given.");
+ wxPuts(_("Invalid input format given."));
exit(EXIT_FAILURE);
break;
case CONVERTRESULT_INVALIDOUTPUTFORMAT:
- wxPuts("Invalid output format given.");
+ wxPuts(_("Invalid output format given."));
exit(EXIT_FAILURE);
break;
case CONVERTRESULT_INPUTFILEMISSING:
- wxPuts("Input file with the filename given does not exist.");
+ wxPuts(_("Input file with the filename given does not exist."));
exit(EXIT_FAILURE);
break;
case CONVERTRESULT_INPUTFILEEMPTY:
- wxPuts("No input filename given.");
+ wxPuts(_("No input filename given."));
exit(EXIT_FAILURE);
break;
case CONVERTRESULT_INPUTFILEINVALIDFORMAT:
- wxPuts("Input file is in an invalid format.");
+ wxPuts(_("Input file is in an invalid format."));
exit(EXIT_FAILURE);
break;
case CONVERTRESULT_INPUTFILEERROR:
- wxPuts("An error occured whilst trying to open the input file location.");
+ wxPuts(_("An error occured whilst trying to open the input file location."));
exit(EXIT_FAILURE);
break;
case CONVERTRESULT_OUTPUTFILEERROR:
- wxPuts("An error occured whilst trying to open the output file location.");
+ wxPuts(_("An error occured whilst trying to open the output file location."));
exit(EXIT_FAILURE);
break;
}