From 2eedabe1891b38975915cbb11d02784a5db5f110 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Mon, 18 Nov 2013 10:53:34 -0500 Subject: [PATCH] #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"; + };