]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/intl.cpp
MinGW compilation fixes.
[wxWidgets.git] / src / common / intl.cpp
index bddfe17c34da94d31da0c83e7020a946803a2b82..470c5d12bb9ec7cc09c6027b015208fe76d60bee 100644 (file)
@@ -2479,6 +2479,11 @@ bool wxLocale::AddCatalog(const wxChar *szDomain)
     // don't add it because it couldn't be loaded anyway
     delete pMsgCat;
 
     // 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;
   }
 }
     return FALSE;
   }
 }