BIS fnc localize: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Game name" to "|Game name=")
m (Some wiki formatting)
 
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Function|Comments=
{{RV|type=function
____________________________________________________________________________________________


| arma3 |Game name=
|game1= arma3
|version1= 1.00


|1.00|Game version=
|gr1= Strings
____________________________________________________________________________________________


| Checks if passed string is localization key and if so, return the localized text. Else, returns the passed string itself.
|descr= Checks if passed string is localization key and if so, return the localized text. Else, returns the passed string itself.
|DESCRIPTION=
____________________________________________________________________________________________


| localizationString call [[BIS_fnc_localize]] |SYNTAX=
|s1= localizationString call [[BIS_fnc_localize]]


|p1= localizationString: [[String]] |PARAMETER1=
|p1= localizationString: [[String]]


| [[String]] - the localized text behind the key or the key itself (if not localized). |RETURNVALUE=
|r1= [[String]] - the localized text behind the key or the key itself (if not localized).
____________________________________________________________________________________________


|x1= <code>{{codecomment|// assuming the [[Stringtable.xml|stringtable]] contains a key "STR_someString" with the value "Hello world"}}
|x1= <sqf>
"STR_someString" [[call]] [[BIS_fnc_localize]]; {{codecomment|// returns "Hello world"}}
// assuming the stringtable contains a key "STR_someString" with the value "Hello world"
"STR_someString" call BIS_fnc_localize; // returns "Hello world"


{{codecomment|// assuming the [[Stringtable.xml|stringtable]] does not contain a key "STR_anotherString"}}
// assuming the stringtable does not contain a key "STR_anotherString"
"STR_anotherString" [[call]] [[BIS_fnc_localize]]; {{codecomment|// returns "STR_anotherString"}}</code> |EXAMPLE1=
"STR_anotherString" call BIS_fnc_localize; // returns "STR_anotherString"
</sqf>


____________________________________________________________________________________________
|seealso= [[isLocalized]] [[localize]] [[Stringtable.xml]]
 
| [[isLocalized]], [[localize]], [[Stringtable.xml]] |SEEALSO=
}}
}}


<h3 style="display:none">Notes</h3>
{{Note
<dl class="command_description">
|user= Vincent H.
<!-- Note Section BEGIN -->
|timestamp= 20171229000300
 
|text= Unfortunately [[localize]] does not exactly do the same as [[BIS_fnc_localize]].<br>
<!-- Note Section END -->
</dl>
 
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Misc|{{uc:localize}}]]
[[Category:Functions|{{uc:localize}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:localize}}]]
 
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on December 29, 2017 - 00:03 (UTC)</dd>
<dt class="note">[[User:Vincent H.|Vincent H.]]</dt>
<dd class="note">
Unfortunately [[localize]] does not exactly do the same as [[BIS_fnc_localize]].<br />
[[BIS_fnc_localize]] also checks if it the input string [[isLocalized]] while [[localize]] will return an empty string if the input parameter is not localized.
[[BIS_fnc_localize]] also checks if it the input string [[isLocalized]] while [[localize]] will return an empty string if the input parameter is not localized.
</dd>
}}
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 21:33, 18 April 2022

Hover & click on the images for description

Description

Description:
Checks if passed string is localization key and if so, return the localized text. Else, returns the passed string itself.
Execution:
call
Groups:
Strings

Syntax

Syntax:
localizationString call BIS_fnc_localize
Parameters:
localizationString: String
Return Value:
String - the localized text behind the key or the key itself (if not localized).

Examples

Example 1:
// assuming the stringtable contains a key "STR_someString" with the value "Hello world" "STR_someString" call BIS_fnc_localize; // returns "Hello world" // assuming the stringtable does not contain a key "STR_anotherString" "STR_anotherString" call BIS_fnc_localize; // returns "STR_anotherString"

Additional Information

See also:
isLocalized localize Stringtable.xml

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Vincent H. - c
Posted on Dec 29, 2017 - 00:03 (UTC)
Unfortunately localize does not exactly do the same as BIS_fnc_localize.
BIS_fnc_localize also checks if it the input string isLocalized while localize will return an empty string if the input parameter is not localized.