From dc2c9bc5cebc408bf60691a6bc66939c3b52e984 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Sun, 6 Mar 2016 11:39:40 +0000 Subject: [PATCH] Added i8ln support to wxPuts messages that didn't have any in main.cpp --- source/main.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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; } -- 2.39.2