#include <wx/translation.h>
Represents a loaded translations message catalog.
This class should only be used directly by wxTranslationsLoader implementations.
Static Public Member Functions | |
| static wxMsgCatalog * | CreateFromFile (const wxString &filename, const wxString &domain) |
| Creates catalog loaded from a MO file. | |
| static wxMsgCatalog * | CreateFromData (const wxScopedCharBuffer &data, const wxString &domain) |
| Creates catalog from MO file data in memory buffer. | |
| static wxMsgCatalog* wxMsgCatalog::CreateFromData | ( | const wxScopedCharBuffer & | data, | |
| const wxString & | domain | |||
| ) | [static] |
Creates catalog from MO file data in memory buffer.
| data | Data in MO file format. | |
| domain | Catalog's domain. This typically matches the filename. |
| static wxMsgCatalog* wxMsgCatalog::CreateFromFile | ( | const wxString & | filename, | |
| const wxString & | domain | |||
| ) | [static] |
Creates catalog loaded from a MO file.
| filename | Path to the MO file to load. | |
| domain | Catalog's domain. This typically matches the filename. |
|
[ top ] |