localization #2

This commit is contained in:
Zac Surplice
2013-11-06 19:34:53 +11:00
parent 7e2b6febd0
commit cf2cdc037a
41 changed files with 1012 additions and 122 deletions

View File

@@ -5,7 +5,7 @@
*/
private ["_isOk","_i","_objName","_started","_finished","_animState","_isMedic","_proceed","_itemOut","_countOut","_tree","_trees","_findNearestTree","_index","_invResult","_treesOutput","_text"];
if(TradeInprogress) exitWith { cutText ["\n\nHarvest already in progress." , "PLAIN DOWN"]; };
if(TradeInprogress) exitWith { cutText [(localize "str_epoch_player_72") , "PLAIN DOWN"]; };
TradeInprogress = true;
// allowed trees list move this later
@@ -113,7 +113,7 @@ if (count(_findNearestTree) >= 1) then {
cutText [format["\n\n%1 of %2 has been successfully added to your inventory.", _i,_text], "PLAIN DOWN"];
} else {
cutText [format["\n\n%1 of %2 could not be added to your inventory. (not enough room?)", _i,_text], "PLAIN DOWN"];
cutText [format[(localize "str_epoch_player_143"), _i,_text], "PLAIN DOWN"];
};
} else {
r_interrupt = false;
@@ -121,12 +121,12 @@ if (count(_findNearestTree) >= 1) then {
[objNull, player, rSwitchMove,""] call RE;
player playActionNow "stop";
};
cutText ["\n\nCanceled Harvesting.", "PLAIN DOWN"];
cutText [(localize "str_epoch_player_73"), "PLAIN DOWN"];
};
} else {
cutText ["\n\nYou must be close to a plant to harvest.", "PLAIN DOWN"];
cutText [(localize "str_epoch_player_74"), "PLAIN DOWN"];
};
TradeInprogress = false;