TranslationServer
Inherits: Object
Server that manages all translations.
Description
Server that manages all translations. Translations can be set to it and removed from it.
Tutorials
Methods
void | add_translation ( Translation translation ) |
void | clear ( ) |
get_loaded_locales ( ) const | |
get_locale ( ) const | |
get_locale_name ( String locale ) const | |
void | remove_translation ( Translation translation ) |
void | set_locale ( String locale ) |
Method Descriptions
- void add_translation ( Translation translation )
Adds a Translation resource.
- void clear ( )
Clears the server from all translations.
- Array get_loaded_locales ( ) const
Returns an Array of all loaded locales of the game.
- String get_locale ( ) const
Returns the current locale of the game.
Returns a locale’s language and its variant (e.g. "en_US"
would return "English (United States)"
).
- void remove_translation ( Translation translation )
Removes the given translation from the server.
- void set_locale ( String locale )
Sets the locale of the game.
Returns the current locale’s translation for the given message (key).