diff --git a/SQF/dayz_code/compile/player_murderBoard.sqf b/SQF/dayz_code/compile/player_murderBoard.sqf
index ff93553ec..2cbc9616f 100644
--- a/SQF/dayz_code/compile/player_murderBoard.sqf
+++ b/SQF/dayz_code/compile/player_murderBoard.sqf
@@ -28,16 +28,16 @@ EpochDeathBoardLoad = {
EpochDeathBoardClick = {
disableSerialization;
- private ["_i", "_record", "_output", "_record_stxt", "_name", "_image", "_h", "_m", "_format"];
+ private ["_i", "_record", "_output", "_record_stxt", "_name", "_image", "_h", "_m", "_format","_quotes","_boardRecord_Var"];
_quotes = [
- "Death is God's way of telling you not to be such a wise guy.",
- "What happens if you get scared half to death, twice?",
- "Don't upset me.. I'm running out of places to hide the bodies.",
- "Don't run, you'll just die tired.",
- "Give me immortality or give me death.",
- "I can't live with death; he's always leaving the toilet seat up.",
- "Why won't you die?!?!",
- "Guns don't kill people; death kills people. It's a proven medical fact."
+ "STR_DEATHBOARD_MESSAGE_1",
+ "STR_DEATHBOARD_MESSAGE_2",
+ "STR_DEATHBOARD_MESSAGE_3",
+ "STR_DEATHBOARD_MESSAGE_4",
+ "STR_DEATHBOARD_MESSAGE_5",
+ "STR_DEATHBOARD_MESSAGE_6",
+ "STR_DEATHBOARD_MESSAGE_7",
+ "STR_DEATHBOARD_MESSAGE_8"
];
_i = _this select 0;
if (_i < 0) exitWith {};
@@ -61,26 +61,26 @@ EpochDeathBoardClick = {
};
_h = ((_record select 4) select 0)+timezoneswitch;
_m = (_record select 4) select 1;
-
- _record_stxt = format["%1Died at %2:%3
", _record_stxt, (_h call _format), (_m call _format)];
-
+
+ _record_stxt = format["%1%4 %2:%3
", _record_stxt, (_h call _format), (_m call _format),localize "STR_DEATHBOARD_KILLED_AT"];
+
if ((_record select 1) != 'unknown') then {
- _record_stxt = format["%1Was killed by %2
", _record_stxt, (_record select 1)];
+ _record_stxt = format["%1%3 %2
", _record_stxt, (_record select 1),localize "STR_DEATHBOARD_KILLED_BY"];
};
-
+
if ((_record select 2) != 'unknown') then {
_name = getText(configFile >> "cfgWeapons" >> (_record select 2) >> "displayName");
_image = getText(configFile >> "cfgWeapons" >> (_record select 2) >> "picture");
- _record_stxt = format["%1With a %2
![]()
", _record_stxt, _name, _image];
+ _record_stxt = format["%1%4 %2
![]()
", _record_stxt, _name, _image,localize "STR_DEATHBOARD_KILLED_WITH"];
};
-
+
if (format["%1", (_record select 3)] != 'unknown') then {
- _record_stxt = format["%1At a distance of %2m
", _record_stxt, (_record select 3)];
+ _record_stxt = format["%1%3 %2m
", _record_stxt, (_record select 3),localize "STR_DEATHBOARD_DISTANCE_OF"];
};
- _record_stxt = format["%1%2", _record_stxt, (_quotes call BIS_fnc_selectRandom)];
+ _record_stxt = format["%1%2", _record_stxt,localize (_quotes call BIS_fnc_selectRandom)];
call compile format["epoch_death_board_record_%1 = ""%2"";" ,_i , _record_stxt];
};
if (!isNil "_record_stxt") then {
_output ctrlSetStructuredText (parseText _record_stxt);
};
-};
\ No newline at end of file
+};
diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml
index a2399b9f1..8ef2204e6 100644
--- a/SQF/dayz_code/stringtable.xml
+++ b/SQF/dayz_code/stringtable.xml
@@ -25548,6 +25548,54 @@
Full Screen Night Vision Goggles
Vollbild-Nachtsichtgerät
+
+
+ Dieded at
+ Gestorben um
+
+
+ Was killed by
+ Wurde getötet von
+
+
+ With
+ Mit
+
+
+ At a distance of
+ Aus einer Distanz von
+
+
+ Death is God's way of telling you not to be such a wise guy.
+ Der Tod ist Gottes Art dir zu sagen, dass du kein so weiser Kerl bist.
+
+
+ What happens if you get scared half to death, twice?
+ Was passiert, wenn du dich zweimal halb zu Tode erschreckst?
+
+
+ Don't upset me.. I'm running out of places to hide the bodies.
+ Verärgere mich nicht.. ich habe kaum noch einen Ort an dem ich Leichen verstecken kann.
+
+
+ Don't run, you'll just die tired.
+ Renn nicht davon, sonst wirst du müde sterben.
+
+
+ Give me immortality or give me death.
+ Gib mir Unsterblichkeit oder bring mir den Tod!
+
+
+ I can't live with death; he's always leaving the toilet seat up.
+ Ich kann nicht mit dem Tod leben. Er lässt immer den Toilettensitz oben.
+
+
+ Why won't you die?!?!
+ Wieso willst du nicht sterben?
+
+
+ Guns don't kill people; death kills people. It's a proven medical fact.
+ Waffen töten keine Menschen. Der Tod tötet sie. Das ist ein bewiesener medizinischer Fakt.