From 7b802a38a53bdd5218f72de74316d2ed31d4940b Mon Sep 17 00:00:00 2001 From: Zac Surplice Date: Tue, 12 Nov 2013 11:53:16 +1100 Subject: [PATCH] localization fix --- SQF/dayz_code/actions/trade_any_bicycle.sqf | 2 +- SQF/dayz_code/actions/trade_any_boat.sqf | 2 +- SQF/dayz_code/actions/trade_any_vehicle.sqf | 2 +- SQF/dayz_code/actions/trade_backpacks.sqf | 2 +- SQF/dayz_code/actions/trade_items.sqf | 4 ++-- SQF/dayz_code/actions/trade_items_wo_db.sqf | 4 ++-- SQF/dayz_code/actions/trade_weapons.sqf | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/SQF/dayz_code/actions/trade_any_bicycle.sqf b/SQF/dayz_code/actions/trade_any_bicycle.sqf index 9b4a14bf2..35c582a45 100644 --- a/SQF/dayz_code/actions/trade_any_bicycle.sqf +++ b/SQF/dayz_code/actions/trade_any_bicycle.sqf @@ -189,7 +189,7 @@ if (_qty >= _qty_in) then { } else { _needed = _qty_in - _qty; if(_buy_o_sell == "buy") then { - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; } else { cutText [format[(localize "str_epoch_player_185"),_textPartIn] , "PLAIN DOWN"]; }; diff --git a/SQF/dayz_code/actions/trade_any_boat.sqf b/SQF/dayz_code/actions/trade_any_boat.sqf index 9fdb53707..3d9f8365b 100644 --- a/SQF/dayz_code/actions/trade_any_boat.sqf +++ b/SQF/dayz_code/actions/trade_any_boat.sqf @@ -182,7 +182,7 @@ if (_qty >= _qty_in) then { } else { _needed = _qty_in - _qty; if(_buy_o_sell == "buy") then { - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; } else { cutText [format[(localize "str_epoch_player_185"),_textPartIn] , "PLAIN DOWN"]; }; diff --git a/SQF/dayz_code/actions/trade_any_vehicle.sqf b/SQF/dayz_code/actions/trade_any_vehicle.sqf index 31dd9ed4d..90133bf9f 100644 --- a/SQF/dayz_code/actions/trade_any_vehicle.sqf +++ b/SQF/dayz_code/actions/trade_any_vehicle.sqf @@ -213,7 +213,7 @@ if (_qty >= _qty_in) then { } else { _needed = _qty_in - _qty; if(_buy_o_sell == "buy") then { - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; } else { cutText [format[(localize "str_epoch_player_185"),_textPartIn] , "PLAIN DOWN"]; }; diff --git a/SQF/dayz_code/actions/trade_backpacks.sqf b/SQF/dayz_code/actions/trade_backpacks.sqf index 4e5114143..ca2fb0f25 100644 --- a/SQF/dayz_code/actions/trade_backpacks.sqf +++ b/SQF/dayz_code/actions/trade_backpacks.sqf @@ -126,7 +126,7 @@ if (_qty >= _qty_in) then { } else { _needed = _qty_in - _qty; - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; }; TradeInprogress = false; \ No newline at end of file diff --git a/SQF/dayz_code/actions/trade_items.sqf b/SQF/dayz_code/actions/trade_items.sqf index 654fa28a0..16c008ec4 100644 --- a/SQF/dayz_code/actions/trade_items.sqf +++ b/SQF/dayz_code/actions/trade_items.sqf @@ -35,7 +35,7 @@ _abort = false; if(_total_trades < 1) exitWith { _needed = _qty_in - _qty; - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; TradeInprogress = false; }; @@ -135,7 +135,7 @@ for "_x" from 1 to _total_trades do { } else { _needed = _qty_in - _qty; - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; }; }; diff --git a/SQF/dayz_code/actions/trade_items_wo_db.sqf b/SQF/dayz_code/actions/trade_items_wo_db.sqf index 388f16abe..e5858ca9f 100644 --- a/SQF/dayz_code/actions/trade_items_wo_db.sqf +++ b/SQF/dayz_code/actions/trade_items_wo_db.sqf @@ -22,7 +22,7 @@ _total_trades = floor (_qty / _qty_in); if(_total_trades < 1) exitWith { _needed = _qty_in - _qty; - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; TradeInprogress = false; }; @@ -110,7 +110,7 @@ for "_x" from 1 to _total_trades do { } else { _needed = _qty_in - _qty; - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; }; sleep 1; diff --git a/SQF/dayz_code/actions/trade_weapons.sqf b/SQF/dayz_code/actions/trade_weapons.sqf index 80273f66a..03a31bf8f 100644 --- a/SQF/dayz_code/actions/trade_weapons.sqf +++ b/SQF/dayz_code/actions/trade_weapons.sqf @@ -116,7 +116,7 @@ if (_qty >= _qty_in) then { } else { _needed = _qty_in - _qty; - cutText [format[(localize "str_epoch_player_185"),_needed,_textPartIn] , "PLAIN DOWN"]; + cutText [format[(localize "str_epoch_player_184"),_needed,_textPartIn] , "PLAIN DOWN"]; }; TradeInprogress = false; \ No newline at end of file