mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Added localization support for displayText
This commit is contained in:
parent
9f3a0fe8d4
commit
a574487166
@ -1,30 +1,27 @@
|
||||
/*
|
||||
* Author: commy2
|
||||
* Author: commy2, Glowbal
|
||||
*
|
||||
* Display a structured text with image.
|
||||
*
|
||||
* Argument:
|
||||
* 0: Text (Anything)
|
||||
* 1: Image (String)
|
||||
* 0: Text <ANY>
|
||||
* 1: Image <STRING>
|
||||
*
|
||||
* Return value:
|
||||
* Nothing
|
||||
*/
|
||||
|
||||
#include "script_component.hpp"
|
||||
|
||||
private ["_text", "_image"];
|
||||
|
||||
_text = _this select 0;
|
||||
_image = _this select 1;
|
||||
|
||||
if (typeName _text != "TEXT") then {
|
||||
_text = parseText format ["<t align='center'>%1</t>", _text];
|
||||
if (typeName _text == "STRING" && {isLocalized _text}) then {
|
||||
_text = localize _text;
|
||||
};
|
||||
_text = parseText format ["<t align='center'>%1</t>", _text];
|
||||
};
|
||||
|
||||
_text = composeText [
|
||||
parseText format ["<img size='2' align='center' color='#ffffff' image='%1'/>", _image],
|
||||
lineBreak,
|
||||
_text
|
||||
];
|
||||
|
||||
[_text] call FUNC(displayTextStructured);
|
||||
_text = composeText [parseText format ["<img size='2' align='center' color='#ffffff' image='%1'/>", _image], lineBreak, _text];
|
||||
[_text, 2] call FUNC(displayTextStructured);
|
||||
|
Loading…
Reference in New Issue
Block a user