Rename vanilla strings from #1708

When localizing vanilla strings please do not put "EPOCH" in their name
or include them in the dayz_epoch package of the stringtable. This
creates more work to backport common translation updates and vice versa.
This commit is contained in:
ebaydayz
2016-07-17 14:02:04 -04:00
parent b9f4aa3ae0
commit 7751914428
17 changed files with 108 additions and 139 deletions

View File

@@ -304,16 +304,16 @@ if (!isDedicated) then {
_object setVariable ["dayz_padlockLockStatus", false,true];
_object setVariable ["isOpen", "1", true];
_object setVariable ["dayz_padlockHistory", [], true];
format [localize "STR_EPOCH_PLAYER_125",typeOf _object] call dayz_rollingMessages;
format [localize "STR_BLD_UNLOCKED",typeOf _object] call dayz_rollingMessages;
} else {
format [localize "STR_EPOCH_PLAYER_126",typeOf _object] call dayz_rollingMessages;
format [localize "STR_BLD_WRONG_COMBO",typeOf _object] call dayz_rollingMessages;
_object setVariable ["dayz_padlockHistory", _codeGuess, true];
};
};
"PVCDZ_Client_processAccessCode" addPublicVariableEventHandler {
_codeGuess = (_this select 1) select 0;
format [localize "STR_EPOCH_PLAYER_324",_codeGuess] call dayz_rollingMessages;
format [localize "STR_BLD_COMBO_SET",_codeGuess] call dayz_rollingMessages;
};
// EPOCH ADDITION