From: Václav Slavík Date: Sun, 7 Jul 2013 13:42:02 +0000 (+0000) Subject: Correct wxTranslations docs: CWD is not searched. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3f8445916632099542e4de6f363bf84c4055f490 Correct wxTranslations docs: CWD is not searched. The documentation incorrectly stated that the current working directory is searched for translations. This isn't the case (and wouldn't be a good thing to do). See #12498. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/translation.h b/interface/wx/translation.h index 791cb757a9..8ef763a50c 100644 --- a/interface/wx/translation.h +++ b/interface/wx/translation.h @@ -337,9 +337,10 @@ public: This is the default unless you change the loader with wxTranslations::SetLoader(). - Catalogs are searched for in standard places (current directory first, then - the system one), but you may also prepend additional directories to the - search path with AddCatalogLookupPathPrefix(). + Catalogs are searched for in standard places (system locales directory, + `LC_PATH` on Unix systems, Resources folder on OS X, executable's directory + on Windows), but you may also prepend additional directories to the search + path with AddCatalogLookupPathPrefix(). @since 2.9.1 */