#709 Add Stringtable localization for Epoch toolbelt items

This commit is contained in:
dayz10k
2013-11-18 10:18:38 -05:00
parent 8cee761980
commit 7d29ac62c7

View File

@@ -1,15 +1,15 @@
class ItemCrowbar: ItemCore class ItemCrowbar: ItemCore
{ {
scope=2; scope=2;
displayName="Crowbar"; displayName=$STR_EPOCH_PLAYER_303;
model="\dayz_equip\models\crowbar.p3d"; model="\dayz_equip\models\crowbar.p3d";
picture="\z\addons\dayz_communityassets\pictures\equip_crowbar_CA.paa"; 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 ItemActions
{ {
class Toolbelt class Toolbelt
{ {
text = "Remove from toolbelt"; text = "STR_EPOCH_PLAYER_298";
script="spawn player_addToolbelt;"; script="spawn player_addToolbelt;";
use[]= use[]=
{ {
@@ -21,4 +21,4 @@ class ItemCrowbar: ItemCore
}; };
}; };
}; };
}; };