#include </home/zeitlin/src/wx/github/interface/wx/translation.h>
This loader makes it possible to load translations from Windows resources.
If you wish to store translation MO files in resources, you have to enable this loader before calling wxTranslations::AddCatalog() or wxLocale::AddCatalog():
Translations are stored in resources as compiled MO files, with type set to "MOFILE" (unless you override GetResourceType()) and name consisting of the domain, followed by underscore, followed by language identification. For example, the relevant part of .rc file would look like this:
myapp_de MOFILE "catalogs/de/myapp.mo" myapp_fr MOFILE "catalogs/fr/myapp.mo" myapp_en_GB MOFILE "catalogs/en_GB/myapp.mo"
This class is only available on Windows.
Protected Member Functions | |
virtual wxString | GetResourceType () const |
Returns resource type to use for translations. | |
virtual WXHINSTANCE | GetModule () const |
Returns handle of the module to load resources from. |
virtual WXHINSTANCE wxResourceTranslationsLoader::GetModule | ( | ) | const [protected, virtual] |
Returns handle of the module to load resources from.
By default, the main executable is used.
virtual wxString wxResourceTranslationsLoader::GetResourceType | ( | ) | const [protected, virtual] |
Returns resource type to use for translations.
Default type is "MOFILE".