X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fmain.cpp;h=e0946315b9e2896ba096f85d0877ade7df780e74;hb=dc2c9bc5cebc408bf60691a6bc66939c3b52e984;hp=feb1520c82a7025d09b3c5f13ae8b8817043a7c7;hpb=acb43041f1e96674ce6d989e992815abb6c98588;p=xestiaab%2F.git diff --git a/source/main.cpp b/source/main.cpp index feb1520..e094631 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -150,7 +150,7 @@ bool XestiaABApp::OnInit() } if (argc >= 7){ - wxPuts("Too many arguments given."); + wxPuts(_("Too many arguments given.")); exit(EXIT_FAILURE); } @@ -160,41 +160,41 @@ bool XestiaABApp::OnInit() 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; }