From ce408df7cd60dd0cf5115af686d06cfed6262a01 Mon Sep 17 00:00:00 2001 From: HARLAN Date: Mon, 23 Dec 2013 12:28:13 -0500 Subject: [PATCH] localize --- SQF/dayz_code/compile/player_antiWall.sqf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SQF/dayz_code/compile/player_antiWall.sqf b/SQF/dayz_code/compile/player_antiWall.sqf index 48948f2e1..4e9e53245 100644 --- a/SQF/dayz_code/compile/player_antiWall.sqf +++ b/SQF/dayz_code/compile/player_antiWall.sqf @@ -43,22 +43,22 @@ if(_activated) then { _id = [player,"crushed"] spawn player_death; }; if ((_vehicle emptyPositions "driver") > 0) exitWith { - cutText ["Another object is blocking the vehicle exit.", "PLAIN DOWN"]; + cutText [(localize "STR_EPOCH_ACTIONS_15"), "PLAIN DOWN"]; player action ["getInDriver", _vehicle]; DZE_AntiWallCounter = DZE_AntiWallCounter + 1; }; if ((_vehicle emptyPositions "gunner") > 0) exitWith { - cutText ["Another object is blocking the vehicle exit.", "PLAIN DOWN"]; + cutText [(localize "STR_EPOCH_ACTIONS_15"), "PLAIN DOWN"]; player action ["GetInGunner", _vehicle]; DZE_AntiWallCounter = DZE_AntiWallCounter + 1; }; if ((_vehicle emptyPositions "commander") > 0) exitWith { - cutText ["Another object is blocking the vehicle exit.", "PLAIN DOWN"]; + cutText [(localize "STR_EPOCH_ACTIONS_15"), "PLAIN DOWN"]; player action ["getInCommander", _vehicle]; DZE_AntiWallCounter = DZE_AntiWallCounter + 1; }; if ((_vehicle emptyPositions "cargo") > 0) exitWith { - cutText ["Another object is blocking the vehicle exit.", "PLAIN DOWN"]; + cutText [(localize "STR_EPOCH_ACTIONS_15"), "PLAIN DOWN"]; player action ["getInCargo", _vehicle]; DZE_AntiWallCounter = DZE_AntiWallCounter + 1; }; @@ -69,4 +69,4 @@ if(_activated) then { } else { DZE_AntiWallCounter = 0; -}; \ No newline at end of file +};