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
This commit is contained in:
Václav Slavík
2013-07-07 13:42:02 +00:00
parent 0053219faf
commit 3f84459166

View File

@@ -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
*/