git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38374
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
searchPath << prefix << wxFILE_SEP_PATH << lang;
// under Unix, the message catalogs are supposed to go into LC_MESSAGES
- // subdirectory but there is no such requirement/tradition on the other
- // systems
+ // subdirectory so look there too
#ifdef __UNIX__
- searchPath << wxFILE_SEP_PATH << wxT("LC_MESSAGES");
-#endif
+ const wxString searchPathOrig(searchPath);
+ searchPath << wxFILE_SEP_PATH << wxT("LC_MESSAGES")
+ << wxPATH_SEP << searchPathOrig;
+#endif // __UNIX__
return searchPath;
}