localization #1

This commit is contained in:
Zac Surplice
2013-11-06 16:37:51 +11:00
parent c87df96724
commit 7e2b6febd0
39 changed files with 665 additions and 73 deletions

View File

@@ -7,12 +7,12 @@ _isCardiac = _unit getVariable["USEC_isCardiac",false];
sleep 1;
if (_isDead) then {
TitleText["Pulse is extremely weak","PLAIN DOWN",3];
TitleText[(localize "str_epoch_player_3"),"PLAIN DOWN",3];
} else {
if (_isCardiac) then {
TitleText["Pulse is weak","PLAIN DOWN",3];
TitleText[(localize "str_epoch_player_4"),"PLAIN DOWN",3];
} else {
TitleText["Pulse is strong","PLAIN DOWN",3];
TitleText[(localize "str_epoch_player_5"),"PLAIN DOWN",3];
};
};