From: Václav Slavík Date: Sat, 13 Dec 2003 00:21:32 +0000 (+0000) Subject: don't return error if we can't load English catalog, it is normal X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/395a670159b7751da633f8be9e5b4aff2ad55942 don't return error if we can't load English catalog, it is normal git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24796 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/intl.cpp b/src/common/intl.cpp index bddfe17c34..470c5d12bb 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -2479,6 +2479,11 @@ bool wxLocale::AddCatalog(const wxChar *szDomain) // don't add it because it couldn't be loaded anyway delete pMsgCat; + // it's OK to not load English catalog, the texts are embedded in + // the program: + if (m_strShort.Mid(0, 2) == wxT("en")) + return TRUE; + return FALSE; } }