From 91fddad252f653995addfc083c0fec6f276260f5 Mon Sep 17 00:00:00 2001 From: HARLAN Date: Mon, 23 Dec 2013 12:24:38 -0500 Subject: [PATCH] localize --- SQF/dayz_code/compile/fn_checkItems.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/compile/fn_checkItems.sqf b/SQF/dayz_code/compile/fn_checkItems.sqf index bb33cc135..bc61a8200 100644 --- a/SQF/dayz_code/compile/fn_checkItems.sqf +++ b/SQF/dayz_code/compile/fn_checkItems.sqf @@ -39,7 +39,7 @@ _hasItems = true; _missingQty = (_countIn - _qty); _hasItems = false; _textMissing = getText(configFile >> "CfgMagazines" >> _missing >> "displayName"); - cutText [format["Missing %1 more of %2", _missingQty, _textMissing], "PLAIN DOWN"]; + cutText [format[(localize "STR_EPOCH_ACTIONS_12"), _missingQty, _textMissing], "PLAIN DOWN"]; }; } forEach _items; _hasItems