mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
[TextServer] Implement locale and context sensitive case conversion functions.
This commit is contained in:
@@ -1348,6 +1348,22 @@
|
||||
Updates justification opportunities (spaces, kashidas, etc.).
|
||||
</description>
|
||||
</method>
|
||||
<method name="_string_to_lower" qualifiers="virtual const">
|
||||
<return type="String" />
|
||||
<argument index="0" name="string" type="String" />
|
||||
<argument index="1" name="language" type="String" />
|
||||
<description>
|
||||
Returns the string converted to lowercase. Casing is locale dependent and context sensitive. The result may be longer or shorter than the original.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_string_to_upper" qualifiers="virtual const">
|
||||
<return type="String" />
|
||||
<argument index="0" name="string" type="String" />
|
||||
<argument index="1" name="language" type="String" />
|
||||
<description>
|
||||
Returns the string converted to uppercase. Casing is locale dependent and context sensitive. The result may be longer or shorter than the original.
|
||||
</description>
|
||||
</method>
|
||||
<method name="_tag_to_name" qualifiers="virtual const">
|
||||
<return type="String" />
|
||||
<argument index="0" name="tag" type="int" />
|
||||
|
||||
Reference in New Issue
Block a user