Takes care of translating text between different locales. More...
Classes | |
struct | TranslationData |
The struct should be used by the implementer to set the translated text. Use this struct only in the context of a ILocalizationManager::OnTranslate call. More... | |
Public Member Functions | |
ILocalizationManager () | |
virtual | ~ILocalizationManager () |
virtual const char * | Translate (const char *key) |
DEPRECATED. Use the overload with TranslationData instead. Translates the given text in the currently selected language. The returned value must be UTF-8 encoded and outlive the method - it's safe to delete the string on the next call to this method or after the system has been uninitialized. Return nullptr if there's no translation for the text. Your application must take care of tracking the current locale and translating the text according to it. More... | |
virtual void | Translate (const char *key, TranslationData *data) |
Translates the given text in the currently selected language. The translated text must be UTF-8. The string will be copied internally during the TranslationData::Set call. Your application must take care of tracking the current locale and translating the text according to it. More... | |
Takes care of translating text between different locales.
cohtml::ILocalizationManager::ILocalizationManager | ( | ) |
|
virtual |
|
inlinevirtual |
DEPRECATED. Use the overload with TranslationData instead. Translates the given text in the currently selected language. The returned value must be UTF-8 encoded and outlive the method - it's safe to delete the string on the next call to this method or after the system has been uninitialized. Return nullptr if there's no translation for the text. Your application must take care of tracking the current locale and translating the text according to it.
key | the key to the text that needs translation |
|
inlinevirtual |
Translates the given text in the currently selected language. The translated text must be UTF-8. The string will be copied internally during the TranslationData::Set call. Your application must take care of tracking the current locale and translating the text according to it.
key | the key to the text that needs translation |
data | the object that contains the translated text encoded. This object is valid only for the current call. in UTF-8 and its length in bytes |