2017-09-12 22:42:36 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2021-11-05 15:02:42 +01:00
|
|
|
<class name="Translation" inherits="Resource" version="3.5">
|
2017-09-12 22:42:36 +02:00
|
|
|
<brief_description>
|
|
|
|
Language Translation.
|
|
|
|
</brief_description>
|
|
|
|
<description>
|
2019-06-22 01:04:47 +02:00
|
|
|
Translations are resources that can be loaded and unloaded on demand. They map a string to another string.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
<tutorials>
|
2021-11-15 17:11:20 +01:00
|
|
|
<link>$DOCS_URL/tutorials/i18n/internationalizing_games.html</link>
|
|
|
|
<link>$DOCS_URL/tutorials/i18n/locales.html</link>
|
2017-09-12 22:42:36 +02:00
|
|
|
</tutorials>
|
|
|
|
<methods>
|
2021-09-29 13:06:57 +02:00
|
|
|
<method name="_get_message" qualifiers="virtual">
|
|
|
|
<return type="String" />
|
|
|
|
<argument index="0" name="src_message" type="String" />
|
|
|
|
<description>
|
|
|
|
Virtual method to override [method get_message].
|
|
|
|
</description>
|
|
|
|
</method>
|
2017-09-12 22:42:36 +02:00
|
|
|
<method name="add_message">
|
2021-07-30 15:28:05 +02:00
|
|
|
<return type="void" />
|
|
|
|
<argument index="0" name="src_message" type="String" />
|
|
|
|
<argument index="1" name="xlated_message" type="String" />
|
2017-09-12 22:42:36 +02:00
|
|
|
<description>
|
2018-11-19 05:20:05 +01:00
|
|
|
Adds a message if nonexistent, followed by its translation.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="erase_message">
|
2021-07-30 15:28:05 +02:00
|
|
|
<return type="void" />
|
|
|
|
<argument index="0" name="src_message" type="String" />
|
2017-09-12 22:42:36 +02:00
|
|
|
<description>
|
2018-11-19 05:20:05 +01:00
|
|
|
Erases a message.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="get_message" qualifiers="const">
|
2021-07-30 15:28:05 +02:00
|
|
|
<return type="String" />
|
|
|
|
<argument index="0" name="src_message" type="String" />
|
2017-09-12 22:42:36 +02:00
|
|
|
<description>
|
2018-11-19 05:20:05 +01:00
|
|
|
Returns a message's translation.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="get_message_count" qualifiers="const">
|
2021-07-30 15:28:05 +02:00
|
|
|
<return type="int" />
|
2017-09-12 22:42:36 +02:00
|
|
|
<description>
|
2018-11-19 05:20:05 +01:00
|
|
|
Returns the number of existing messages.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="get_message_list" qualifiers="const">
|
2021-07-30 15:28:05 +02:00
|
|
|
<return type="PoolStringArray" />
|
2017-09-12 22:42:36 +02:00
|
|
|
<description>
|
2018-11-19 05:20:05 +01:00
|
|
|
Returns all the messages (keys).
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
</methods>
|
|
|
|
<members>
|
2019-06-29 12:38:01 +02:00
|
|
|
<member name="locale" type="String" setter="set_locale" getter="get_locale" default=""en"">
|
2018-11-19 05:20:05 +01:00
|
|
|
The locale of the translation.
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
|
|
|
</members>
|
|
|
|
<constants>
|
|
|
|
</constants>
|
|
|
|
</class>
|