123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- :github_url: hide
- .. DO NOT EDIT THIS FILE!!!
- .. Generated automatically from Godot engine sources.
- .. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
- .. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Translation.xml.
- .. _class_Translation:
- Translation
- ===========
- **Inherits:** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
- **Inherited By:** :ref:`PHashTranslation<class_PHashTranslation>`
- Language Translation.
- .. rst-class:: classref-introduction-group
- Description
- -----------
- Translations are resources that can be loaded and unloaded on demand. They map a string to another string.
- .. rst-class:: classref-introduction-group
- Tutorials
- ---------
- - :doc:`../tutorials/i18n/internationalizing_games`
- - :doc:`../tutorials/i18n/locales`
- .. rst-class:: classref-reftable-group
- Properties
- ----------
- .. table::
- :widths: auto
- +-----------------------------+--------------------------------------------------+----------+
- | :ref:`String<class_String>` | :ref:`locale<class_Translation_property_locale>` | ``"en"`` |
- +-----------------------------+--------------------------------------------------+----------+
- .. rst-class:: classref-reftable-group
- Methods
- -------
- .. table::
- :widths: auto
- +-----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`_get_message<class_Translation_method__get_message>` **(** :ref:`String<class_String>` src_message **)** |virtual| |
- +-----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`add_message<class_Translation_method_add_message>` **(** :ref:`String<class_String>` src_message, :ref:`String<class_String>` xlated_message **)** |
- +-----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`erase_message<class_Translation_method_erase_message>` **(** :ref:`String<class_String>` src_message **)** |
- +-----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`get_message<class_Translation_method_get_message>` **(** :ref:`String<class_String>` src_message **)** |const| |
- +-----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_message_count<class_Translation_method_get_message_count>` **(** **)** |const| |
- +-----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`PoolStringArray<class_PoolStringArray>` | :ref:`get_message_list<class_Translation_method_get_message_list>` **(** **)** |const| |
- +-----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Property Descriptions
- ---------------------
- .. _class_Translation_property_locale:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **locale** = ``"en"``
- .. rst-class:: classref-property-setget
- - void **set_locale** **(** :ref:`String<class_String>` value **)**
- - :ref:`String<class_String>` **get_locale** **(** **)**
- The locale of the translation.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Method Descriptions
- -------------------
- .. _class_Translation_method__get_message:
- .. rst-class:: classref-method
- :ref:`String<class_String>` **_get_message** **(** :ref:`String<class_String>` src_message **)** |virtual|
- Virtual method to override :ref:`get_message<class_Translation_method_get_message>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Translation_method_add_message:
- .. rst-class:: classref-method
- void **add_message** **(** :ref:`String<class_String>` src_message, :ref:`String<class_String>` xlated_message **)**
- Adds a message if nonexistent, followed by its translation.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Translation_method_erase_message:
- .. rst-class:: classref-method
- void **erase_message** **(** :ref:`String<class_String>` src_message **)**
- Erases a message.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Translation_method_get_message:
- .. rst-class:: classref-method
- :ref:`String<class_String>` **get_message** **(** :ref:`String<class_String>` src_message **)** |const|
- Returns a message's translation.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Translation_method_get_message_count:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **get_message_count** **(** **)** |const|
- Returns the number of existing messages.
- .. rst-class:: classref-item-separator
- ----
- .. _class_Translation_method_get_message_list:
- .. rst-class:: classref-method
- :ref:`PoolStringArray<class_PoolStringArray>` **get_message_list** **(** **)** |const|
- Returns all the messages (keys).
- .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
- .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
- .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
- .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
|