From d0f0627b0ff66dbe203f565daa5130facc63448c Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:07:33 -0500 Subject: [PATCH 01/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp index 246037791..5989ac9f6 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp @@ -1,7 +1,7 @@ class ItemKeyKit: ItemCore { scope = 2; - displayname = "Keymakers kit"; + displayname = "STR_EPOCH_PLAYER_295"; model="\z\addons\dayz_epoch\models\keykit.p3d"; - descriptionShort="Kit including the tools required to smelt, mold and shape keys."; + descriptionShort="STR_EPOCH_PLAYER_296"; picture="\z\addons\dayz_epoch\pictures\equip_keykit_ca.paa"; -}; \ No newline at end of file +}; From 88753978d1b6857c2362991b0ae6d6266918a8bd Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:07:40 -0500 Subject: [PATCH 02/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_epoch_b/stringtable.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 0abee1243..61fd4c5c1 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -5464,6 +5464,26 @@ + + Keymakers kit + Keymakers kit + + + + + + + + + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + + + + + + + 1.04 1.04 From 0fd8c45fcd0b854f4cc8e2ce1e6399d72c2d0b58 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:09:35 -0500 Subject: [PATCH 03/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp index ab5b33444..c7f6c05aa 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp @@ -1,10 +1,10 @@ class ItemSledge: ItemCore { scope=2; - displayName="Sledgehammer"; + displayName="$STR_EPOCH_PLAYER_297"; model="\z\addons\dayz_epoch\models\sledge_mag.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; - descriptionShort="A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers."; + descriptionShort="STR_EPOCH_PLAYER_298"; class ItemActions { class Toolbelt From 108d10fa0a6d45dc6efa0348fa63391ee47a48cc Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:10:59 -0500 Subject: [PATCH 04/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_epoch_b/stringtable.xml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 61fd4c5c1..6f79d19cf 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -5484,6 +5484,36 @@ + + Sledgehammer + Sledgehammer + + + + + + + + + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + + + + + + + + + Remove from toolbelt. + Remove from toolbelt. + + + + + + + 1.04 1.04 From 83e01346f70fdef3dda5c3fbe224cd820020fc6e Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:11:17 -0500 Subject: [PATCH 05/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp index c7f6c05aa..4dadeb4d7 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp @@ -9,7 +9,7 @@ class ItemSledge: ItemCore { class Toolbelt { - text="Remove from Toolbelt"; + text="STR_EPOCH_PLAYER_299"; script="spawn player_addToolbelt;"; use[]= { From 7b67014fba283d7509307d327c9c0f47c389e5e6 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:11:42 -0500 Subject: [PATCH 06/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp index a816f7eba..769308649 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp @@ -9,7 +9,7 @@ class MeleeFlashlight : Pistol { class ItemFlashlight : ItemCore { class ItemActions { class Toolbelt { - text = "Remove from toolbelt"; + text = "STR_EPOCH_PLAYER_299"; }; }; }; @@ -25,7 +25,7 @@ class MeleeFlashlight : Pistol { class ItemFlashlightRed : ItemCore { class ItemActions { class Toolbelt { - text = "Remove from toolbelt"; + text = "STR_EPOCH_PLAYER_299"; }; }; - }; \ No newline at end of file + }; From 30d365cda53b57ce5281198e5b9ea497fa304b06 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:12:23 -0500 Subject: [PATCH 07/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_epoch_b/stringtable.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 6f79d19cf..75fecd09c 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -5514,6 +5514,16 @@ + + Add to toolbelt. + Add to toolbelt. + + + + + + + 1.04 1.04 From 5a3bd015ec55907f520e646b9e324571f73ffe62 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:12:45 -0500 Subject: [PATCH 08/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp index 769308649..495071031 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp @@ -1,7 +1,7 @@ class MeleeFlashlight : Pistol { class ItemActions { class Toolbelt { - text = "Add to toolbelt"; + text = "STR_EPOCH_PLAYER_300"; }; }; }; @@ -17,7 +17,7 @@ class MeleeFlashlight : Pistol { class MeleeFlashlightRed : MeleeFlashlight { class ItemActions { class Toolbelt { - text = "Add to toolbelt"; + text = "STR_EPOCH_PLAYER_300"; }; }; }; From b7d6be0675271c4a1f7effb39848a63746ef6af4 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:14:12 -0500 Subject: [PATCH 09/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp index 112376f90..479e83bb9 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp @@ -1,15 +1,15 @@ class ItemFishingPole: ItemCore { scope=2; - displayName="Fishing Pole"; + displayName="STR_EPOCH_PLAYER_301"; model="\z\addons\dayz_epoch\models\fishing_rod_loot_item.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa"; - descriptionShort="Fishing Pole: This carbon fiber rod may be old but, she still works like a charm."; + descriptionShort="STR_EPOCH_PLAYER_302"; class ItemActions { class Toolbelt { - text="Remove from Toolbelt"; + text="STR_EPOCH_PLAYER_299"; script="spawn player_addToolbelt;"; use[]= { @@ -21,4 +21,4 @@ class ItemFishingPole: ItemCore }; }; }; -}; \ No newline at end of file +}; From 1cc4aeba53bfabb04f3219006959095a227cee1f Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:14:41 -0500 Subject: [PATCH 10/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_epoch_b/stringtable.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 75fecd09c..8d498a107 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -5524,6 +5524,26 @@ + + Fishing Pole + Fishing Pole + + + + + + + + + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + + + + + + + 1.04 1.04 From 869d7208d881b5b592b86c0cb45d59fcfb526f51 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:15:26 -0500 Subject: [PATCH 11/28] Update ItemFishingPole.hpp --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp index 479e83bb9..34bbabb68 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp @@ -1,10 +1,10 @@ class ItemFishingPole: ItemCore { scope=2; - displayName="STR_EPOCH_PLAYER_301"; + displayName=$STR_EPOCH_PLAYER_301; model="\z\addons\dayz_epoch\models\fishing_rod_loot_item.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa"; - descriptionShort="STR_EPOCH_PLAYER_302"; + descriptionShort=$STR_EPOCH_PLAYER_302; class ItemActions { class Toolbelt From 29f5e726cdc99ed45cfcd0731b64737a140c479d Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:15:59 -0500 Subject: [PATCH 12/28] Update ItemKeyKit.hpp --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp index 5989ac9f6..657e6ca86 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp @@ -1,7 +1,7 @@ class ItemKeyKit: ItemCore { scope = 2; - displayname = "STR_EPOCH_PLAYER_295"; + displayname = $STR_EPOCH_PLAYER_295; model="\z\addons\dayz_epoch\models\keykit.p3d"; - descriptionShort="STR_EPOCH_PLAYER_296"; + descriptionShort=$STR_EPOCH_PLAYER_296; picture="\z\addons\dayz_epoch\pictures\equip_keykit_ca.paa"; }; From 8cee7619809a5b1df864c41db76e0aa3d3e15576 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:16:30 -0500 Subject: [PATCH 13/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp index 4dadeb4d7..d79a7b0db 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp @@ -1,10 +1,10 @@ class ItemSledge: ItemCore { scope=2; - displayName="$STR_EPOCH_PLAYER_297"; + displayName=$STR_EPOCH_PLAYER_297; model="\z\addons\dayz_epoch\models\sledge_mag.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; - descriptionShort="STR_EPOCH_PLAYER_298"; + descriptionShort=$STR_EPOCH_PLAYER_298; class ItemActions { class Toolbelt From 7d29ac62c7fb7d2ba7fe3170e98f9e6c9c9bdfaa Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:18:38 -0500 Subject: [PATCH 14/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp index 4c07ea566..eeeac769d 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp @@ -1,15 +1,15 @@ class ItemCrowbar: ItemCore { scope=2; - displayName="Crowbar"; + displayName=$STR_EPOCH_PLAYER_303; model="\dayz_equip\models\crowbar.p3d"; picture="\z\addons\dayz_communityassets\pictures\equip_crowbar_CA.paa"; - descriptionShort="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails."; + descriptionShort=$STR_EPOCH_PLAYER_304; class ItemActions { class Toolbelt { - text = "Remove from toolbelt"; + text = "STR_EPOCH_PLAYER_298"; script="spawn player_addToolbelt;"; use[]= { @@ -21,4 +21,4 @@ class ItemCrowbar: ItemCore }; }; }; - }; \ No newline at end of file + }; From ded6bd14b81993d6486bdc6bf8a0103e279e709c Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:42:58 -0500 Subject: [PATCH 15/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_epoch_b/stringtable.xml | 128 +++++++++++++++---------------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 8d498a107..dacc55827 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -2522,6 +2522,66 @@ Orange Sherbet est une boisson gazeuse rafraîchissante sucrée trés pétillante. Orange Sherbet is a tangy orange carbonated soft drink with plenty of fizz. + + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + Keymakers kit + + + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + Kit including the tools required to smelt, mold and shape keys. + + + Sledgehammer + Sledgehammer + Vorschlaghammer + кувалда + Almádena + Beukhamer + Frappe-Devant + Perlík + + + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. + + + Fishing Pole + Fishing Pole + Angelrute + удочка + Caña de Pesca + Hengelroede + Canne à Pêche + Rybářský Prut + + + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + @@ -5465,8 +5525,8 @@ - Keymakers kit - Keymakers kit + Remove from Toolbelt. + Remove from Toolbelt. @@ -5475,68 +5535,8 @@ - Kit including the tools required to smelt, mold and shape keys. - Kit including the tools required to smelt, mold and shape keys. - - - - - - - - - Sledgehammer - Sledgehammer - - - - - - - - - A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. - A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. - - - - - - - - - Remove from toolbelt. - Remove from toolbelt. - - - - - - - - - Add to toolbelt. - Add to toolbelt. - - - - - - - - - Fishing Pole - Fishing Pole - - - - - - - - - Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. - Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + Add to Toolbelt. + Add to Toolbelt. From 7d4f3be4551379a5e21564045f1e653ae5504b37 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:44:44 -0500 Subject: [PATCH 16/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp index eeeac769d..00b2fbefa 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemCrowbar.hpp @@ -1,15 +1,15 @@ class ItemCrowbar: ItemCore { scope=2; - displayName=$STR_EPOCH_PLAYER_303; + displayName=$STR_EQUIP_CROWBAR; model="\dayz_equip\models\crowbar.p3d"; picture="\z\addons\dayz_communityassets\pictures\equip_crowbar_CA.paa"; - descriptionShort=$STR_EPOCH_PLAYER_304; + descriptionShort=$STR_EQUIP_CROWBAR_DESC; class ItemActions { class Toolbelt { - text = "STR_EPOCH_PLAYER_298"; + text = "STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { From edef9c50f81502fbc7667fca854b99cdbe2f1849 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:51:07 -0500 Subject: [PATCH 17/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_epoch_b/stringtable.xml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index dacc55827..26896b54b 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -2582,6 +2582,27 @@ Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. Fishing Pole: This carbon fiber rod may be old but, she still works like a charm. + + Crowbar + Crowbar + Brechstange + aншпуг + Palanca + Breekijzer + Pied de Biche + Sochor + + + A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails. + A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails. + + + + + + + + @@ -5544,6 +5565,16 @@ + + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + Cast Fishing Pole + 1.04 1.04 From c8d84607072088549170e2a900e82372481e0c0c Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:51:25 -0500 Subject: [PATCH 18/28] #709 Add Stringtable localization for Epoch toolbelt items --- .../Configs/CfgWeapons/Melee/MeleeFishingPole.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp index 963b95f09..1ab57f47f 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeFishingPole.hpp @@ -5,7 +5,7 @@ class MeleeFishingPole: MeleeWeapon magazineReloadTime=0; model="\z\addons\dayz_epoch\models\fishing_rod_weaponized.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa"; - displayName="Fishing Pole"; + displayName=$STR_EQUIP_FISHPOLE; magazines[]= { "Fishing_Swing" @@ -19,12 +19,12 @@ class MeleeFishingPole: MeleeWeapon { class Use { - text="Cast Fishing Pole"; + text="STR_EPOCH_PLAYER_297"; script="spawn player_goFishing;"; }; class Toolbelt { - text="Add to Toolbelt"; + text="STR_EPOCH_PLAYER_296"; script="spawn player_addToolbelt;"; use[]= { @@ -40,5 +40,5 @@ class MeleeFishingPole: MeleeWeapon { libTextDesc=""; }; - descriptionShort="Fishing Pole: This carbon fiber rod may be old but, she still works like a charm."; -}; \ No newline at end of file + descriptionShort=$STR_EQUIP_FISHPOLE_DESC; +}; From 7f247b5d0cee1d06f7cc86ac796cb8a6f1d946ab Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:51:57 -0500 Subject: [PATCH 19/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp index fdc47df6e..607111e7a 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemMachete.hpp @@ -9,7 +9,7 @@ class ItemMachete: ItemCore { class Toolbelt { - text="Remove from Toolbelt"; + text="STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { @@ -22,4 +22,4 @@ class ItemMachete: ItemCore }; }; }; - \ No newline at end of file + From a27c04ae4cc171db8d3fbbb0d46d97f9a1f47440 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:52:35 -0500 Subject: [PATCH 20/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp index ab7587206..ba7886bda 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeHatchet.hpp @@ -21,7 +21,7 @@ class MeleeHatchet: MeleeWeapon { class Toolbelt { - text="Add to Toolbelt"; + text="STR_EPOCH_PLAYER_296"; script="spawn player_addToolbelt;"; use[]= { @@ -38,4 +38,4 @@ class MeleeHatchet: MeleeWeapon libTextDesc="$STR_EQUIP_DESC_41"; }; descriptionShort="$STR_EQUIP_DESC_41"; - }; \ No newline at end of file + }; From 2eedabe1891b38975915cbb11d02784a5db5f110 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:53:34 -0500 Subject: [PATCH 21/28] #709 Add Stringtable localization for Epoch toolbelt items --- .../Configs/CfgWeapons/Melee/MeleeCrowbar.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp index 15b437d72..f9551968a 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp @@ -6,7 +6,7 @@ class MeleeCrowbar: MeleeWeapon magazineReloadTime=0; model="\dayz_weapons\models\crowbar_weaponized"; picture="\dayz_weapons\textures\equip_crowbar_CA.paa"; - displayName="Crowbar"; + displayName=$STR_EQUIP_CROWBAR; droppeditem= "ItemCrowbar"; magazines[]= { @@ -21,7 +21,7 @@ class MeleeCrowbar: MeleeWeapon { class Toolbelt { - text="Add to Toolbelt"; + text="STR_EPOCH_PLAYER_296"; script="spawn player_addToolbelt;"; use[]= { @@ -35,7 +35,7 @@ class MeleeCrowbar: MeleeWeapon }; class Library { - libTextDesc="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails."; + libTextDesc="STR_EQUIP_CROWBAR_DESC"; }; - descriptionShort="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails."; - }; \ No newline at end of file + descriptionShort="STR_EQUIP_CROWBAR_DESC"; + }; From cd86f39c36317d384ecbe8b7fc306f6cd9f29f97 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:54:38 -0500 Subject: [PATCH 22/28] #709 Add Stringtable localization for Epoch toolbelt items --- .../Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp index e720895cb..105c1e7ab 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp @@ -6,7 +6,7 @@ class MeleeSledge: MeleeWeapon magazineReloadTime=0; model="\z\addons\dayz_epoch\models\sledge_weaponized"; picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; // todo icon - displayName="Sledgehammer"; + displayName="STR_EQUIP_SLEDGE"; droppeditem= "ItemSledge"; magazines[]= { @@ -21,7 +21,7 @@ class MeleeSledge: MeleeWeapon { class Toolbelt { - text="Add to Toolbelt"; + text="STR_EPOCH_PLAYER_296"; script="spawn player_addToolbelt;"; use[]= { @@ -35,7 +35,7 @@ class MeleeSledge: MeleeWeapon }; class Library { - libTextDesc="A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers."; + libTextDesc="STR_EQUIP_CROWBAR_DESC"; }; - descriptionShort="A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers."; - }; \ No newline at end of file + descriptionShort="STR_EQUIP_CROWBAR_DESC"; + }; From f6d6d82bfcda6b931febc80926df42a863c19837 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:55:15 -0500 Subject: [PATCH 23/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp index 237a78012..128bb7dbc 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/ItemHatchet.hpp @@ -8,7 +8,7 @@ class ItemHatchet_DZE : ItemCore { class Toolbelt { - text="Remove from Toolbelt"; + text="STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { @@ -20,4 +20,4 @@ class ItemHatchet_DZE : ItemCore { }; }; }; - }; \ No newline at end of file + }; From 39f1b5d45f19fca685edf4d897e6fdb2dfe8c531 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:56:45 -0500 Subject: [PATCH 24/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp index d79a7b0db..a83ca112d 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp @@ -1,15 +1,15 @@ class ItemSledge: ItemCore { scope=2; - displayName=$STR_EPOCH_PLAYER_297; + displayName=$STR_EQUIP_SLEDGE; model="\z\addons\dayz_epoch\models\sledge_mag.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; - descriptionShort=$STR_EPOCH_PLAYER_298; + descriptionShort=$STR_EQUIP_SLEDGE_DESC; class ItemActions { class Toolbelt { - text="STR_EPOCH_PLAYER_299"; + text="STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { From dded22825dccc068d0ffebbc82de6e32d341be12 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:58:05 -0500 Subject: [PATCH 25/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp index 34bbabb68..5294df8c8 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemFishingPole.hpp @@ -1,15 +1,15 @@ class ItemFishingPole: ItemCore { scope=2; - displayName=$STR_EPOCH_PLAYER_301; + displayName=$STR_EQUIP_FISHPOLE; model="\z\addons\dayz_epoch\models\fishing_rod_loot_item.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_fishingpole_CA.paa"; - descriptionShort=$STR_EPOCH_PLAYER_302; + descriptionShort=$STR_EQUIP_FISHPOLE_DESC; class ItemActions { class Toolbelt { - text="STR_EPOCH_PLAYER_299"; + text="STR_EPOCH_PLAYER_295"; script="spawn player_addToolbelt;"; use[]= { From c28e96fb030d6460736e269530c11bafa46dbb7f Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 11:05:25 -0500 Subject: [PATCH 26/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_epoch_b/stringtable.xml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 26896b54b..bf091a129 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -2602,7 +2602,16 @@ - + + Etool + Etool + Feldspaten + саперная лопатка + Pala Afianzar + + Outil de Tranchée + + From 9b1ceb857c15e01e1b8137305e3ff6f0607e3e1b Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 11:05:33 -0500 Subject: [PATCH 27/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp index 723943f4a..3ce285029 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemEtool.hpp @@ -1,6 +1,6 @@ //NotWorking _DZ Remove class ItemEtool: ItemCore { scope = 2; - displayName = "Etool"; + displayName = $STR_EQUIP_ETOOL; descriptionShort = $STR_EQUIP_DESC_1; -}; \ No newline at end of file +}; From 21a28b45ce9280001a6e359db54e3691e0001aca Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 11:05:59 -0500 Subject: [PATCH 28/28] #709 Add Stringtable localization for Epoch toolbelt items --- SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp index 657e6ca86..51b236613 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/ItemKeyKit.hpp @@ -1,7 +1,7 @@ class ItemKeyKit: ItemCore { scope = 2; - displayname = $STR_EPOCH_PLAYER_295; + displayname = $STR_EQUIP_KEYKIT; model="\z\addons\dayz_epoch\models\keykit.p3d"; - descriptionShort=$STR_EPOCH_PLAYER_296; + descriptionShort=$STR_EQUIP_KEYKIT_DESC; picture="\z\addons\dayz_epoch\pictures\equip_keykit_ca.paa"; };