isLocalized: Difference between revisions
Jump to navigation
Jump to search
m (update to v2.04) |
m (small tweak) |
||
Line 13: | Line 13: | ||
|s1= '''isLocalized''' string | |s1= '''isLocalized''' string | ||
|p1= string: [[String]] - String which leads to localisation. Casing | |p1= string: [[String]] - String which leads to localisation. Casing does not matter. Since Arma 3 v2.04 a string starting with <tt>"$"</tt> is supported as well | ||
|r1= [[Boolean]] | |r1= [[Boolean]] |
Revision as of 14:46, 27 April 2021
Description
- Description:
- Checks whether given string name is localized.
- Groups:
- StringsLocalization
Syntax
- Syntax:
- isLocalized string
- Parameters:
- string: String - String which leads to localisation. Casing does not matter. Since Arma 3 v2.04 a string starting with "$" is supported as well
- Return Value:
- Boolean
Examples
- Example 1:
if (isLocalized "STR_USRACT_ADJUST") then { hint localize "STR_USRACT_ADJUST"; } else { hint "STR_USRACT_ADJUST"; diag_log "ToDo: STR_USRACT_ADJUST is not localized"; };
- Example 2:
isLocalized "$STR_USRACT_ADJUST"; // Since Arma v2.04
Additional Information
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