X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/23717034757c259cd578b6f72d74857e61e79817..08670ea85abf4b4946a9ce64971b591d7b1ee30b:/src/common/log.cpp diff --git a/src/common/log.cpp b/src/common/log.cpp index 8335dcfd17..20b146d2de 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -252,7 +252,16 @@ wxLog::~wxLog() { wxMessageOutputDebug().Printf ( - wxS("Last repeated message (\"%s\", %lu times) wasn't output"), +#if wxUSE_INTL + wxPLURAL + ( + "Last repeated message (\"%s\", %lu time) wasn't output", + "Last repeated message (\"%s\", %lu times) wasn't output", + gs_prevLog.numRepeated + ), +#else + wxS("Last repeated message (\"%s\", %lu time(s)) wasn't output"), +#endif gs_prevLog.msg, gs_prevLog.numRepeated );