a couple localization updates (#1690)

* a couple localization updates

* fix merge conflicts

* fix

* fixes
This commit is contained in:
Anton
2016-05-03 22:15:44 +03:00
committed by ebaydayz
parent 5cde6cba69
commit 75ae8ad3c0
7 changed files with 258 additions and 220 deletions

View File

@@ -90,6 +90,6 @@ if ((_isowner select 0 )) then {
};
};
} count _findNearestObjects;
cutText [format["Take Ownership: %1 objects ownership changed.",_changecount], "PLAIN DOWN"];
format[localize "STR_EPOCH_APLOTFORLIFE_TAKE_OWNERSHIP",_changecount] call dayz_rollingMessages;
};

View File

@@ -17,7 +17,7 @@ _playerUID = [player] call FNC_GetPlayerUID;
_config = configFile >> "CfgMagazines" >> _item;
_text = getText (_config >> "displayName");
if (!_hastentitem) exitWith {cutText [format[(localize "str_player_31"),_text,"pitch"] , "PLAIN DOWN"]};
if (!_hastentitem) exitWith format[localize "str_player_31",_text,"pitch"] call dayz_rollingMessages;
//blocked
if (["concrete",dayz_surfaceType] call fnc_inString) then { _isOk = true; diag_log ("surface concrete"); };
@@ -67,8 +67,8 @@ if (!_isOk) then {
PVDZE_obj_Publish = [dayz_characterID,_object,[_dir,_location, _playerUID],_classname];
publicVariableServer "PVDZE_obj_Publish";
cutText [localize "str_success_tent_pitch", "PLAIN DOWN"];
localize "str_success_tent_pitch" call dayz_rollingMessages;
} else {
cutText [localize "str_fail_tent_pitch", "PLAIN DOWN"];
localize "str_fail_tent_pitch" call dayz_rollingMessages;
};