X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/03443829ac3e79461814da084e01060ddc7e60dd..6627a4b0497f89221ea9f7848990f8830cf81b7e:/src/common/intl.cpp diff --git a/src/common/intl.cpp b/src/common/intl.cpp index ec2362d7e8..f21ab61887 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -40,6 +40,7 @@ #include "wx/intl.h" #include "wx/file.h" #include "wx/log.h" +#include "wx/debug.h" #include "wx/utils.h" #include @@ -337,20 +338,22 @@ bool wxMsgCatalog::Load(const wxChar *szDirPrefix, const wxChar *szName0) // not yet be loaded (and it's normal) // // (we're using an object because we have several return paths) + NoTransErr noTransErr; +// Then why do you translate at all? Just use _T() and not _(). RR. wxLogVerbose(_("looking for catalog '%s' in path '%s'."), - szName, searchPath.c_str()); + szName.c_str(), searchPath.c_str()); wxString strFullName; if ( !wxFindFileInPath(&strFullName, searchPath, strFile) ) { - wxLogWarning(_("catalog file for domain '%s' not found."), szName); + wxLogWarning(_("catalog file for domain '%s' not found."), szName.c_str()); return FALSE; } // open file wxLogVerbose(_("using catalog '%s' from '%s'."), - szName, strFullName.c_str()); + szName.c_str(), strFullName.c_str()); wxFile fileMsg(strFullName); if ( !fileMsg.IsOpened() )