mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-18 01:30:26 +03:00
Supply crate localization fixes
Extends the displayName RSC width to the same as the description (Not sure why this was so small, it truncated longer display names) Added localization strings for all the supply crates so they were easier to distinguish in the gear menu.
This commit is contained in:
@@ -9,6 +9,7 @@ class bulk: CA_Magazine {
|
||||
weight = 5;
|
||||
};
|
||||
class bulk_empty: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_EMPTY;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_EMPTY;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
@@ -65,6 +66,7 @@ class bulk_empty: bulk {
|
||||
};
|
||||
|
||||
class bulk_ItemSodaCoke: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODACOKE_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODACOKE_HALF;
|
||||
weight = 6;
|
||||
class ItemActions {
|
||||
@@ -84,6 +86,7 @@ class bulk_ItemSodaCoke: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_ItemSodaCokeFull: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODACOKE_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODACOKE_FULL;
|
||||
weight = 7;
|
||||
class ItemActions {
|
||||
@@ -96,6 +99,7 @@ class bulk_ItemSodaCokeFull: bulk {
|
||||
};
|
||||
|
||||
class bulk_ItemSodaPepsi: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODAPEPSI_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODAPEPSI_HALF;
|
||||
weight = 6;
|
||||
class ItemActions {
|
||||
@@ -115,6 +119,7 @@ class bulk_ItemSodaPepsi: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_ItemSodaPepsiFull: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODAPEPSI_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODAPEPSI_FULL;
|
||||
weight = 7;
|
||||
class ItemActions {
|
||||
@@ -127,6 +132,7 @@ class bulk_ItemSodaPepsiFull: bulk {
|
||||
};
|
||||
|
||||
class bulk_FoodbaconCooked: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_BACON_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_BACON_HALF;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
@@ -146,6 +152,7 @@ class bulk_FoodbaconCooked: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_FoodbaconCookedFull: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_BACON_FULL;
|
||||
descriptionshort = $STR_EPOCH_BULK_DESC_BACON_FULL;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
@@ -159,6 +166,7 @@ class bulk_FoodbaconCookedFull: bulk {
|
||||
|
||||
// Ammo
|
||||
class bulk_17Rnd_9x19_glock17: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_G17;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_G17;
|
||||
weight = 17;
|
||||
class ItemActions {
|
||||
@@ -170,6 +178,7 @@ class bulk_17Rnd_9x19_glock17: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_15Rnd_9x19_M9SD: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_M9SD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_M9SD;
|
||||
weight = 17;
|
||||
class ItemActions {
|
||||
@@ -181,6 +190,7 @@ class bulk_15Rnd_9x19_M9SD: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_30Rnd_9x19_MP5SD: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_MP5SD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_MP5SD;
|
||||
weight = 18;
|
||||
class ItemActions {
|
||||
@@ -192,6 +202,7 @@ class bulk_30Rnd_9x19_MP5SD: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_30Rnd_556x45_StanagSD: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_STANAGSD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_STANAGSD;
|
||||
weight = 20;
|
||||
class ItemActions {
|
||||
@@ -204,6 +215,7 @@ class bulk_30Rnd_556x45_StanagSD: bulk {
|
||||
};
|
||||
|
||||
class bulk_ItemSandbag: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SANDBAG;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SANDBAG;
|
||||
weight = 60;
|
||||
class ItemActions {
|
||||
@@ -216,6 +228,7 @@ class bulk_ItemSandbag: bulk {
|
||||
};
|
||||
|
||||
class bulk_ItemTankTrap: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_TANKTRAP_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_TANKTRAP_FULL;
|
||||
weight = 25;
|
||||
class ItemActions {
|
||||
@@ -227,6 +240,7 @@ class bulk_ItemTankTrap: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_ItemTankTrapHalf: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_TANKTRAP_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_TANKTRAP_HALF;
|
||||
weight = 12.5;
|
||||
class ItemActions {
|
||||
@@ -247,6 +261,7 @@ class bulk_ItemTankTrapHalf: bulk {
|
||||
};
|
||||
|
||||
class bulk_ItemWire: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_WIREKIT_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_WIREKIT_FULL;
|
||||
weight = 25;
|
||||
class ItemActions {
|
||||
@@ -258,6 +273,7 @@ class bulk_ItemWire: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_ItemWireHalf: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_WIREKIT_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_WIREKIT_HALF;
|
||||
weight = 12.5;
|
||||
class ItemActions {
|
||||
@@ -278,6 +294,7 @@ class bulk_ItemWireHalf: bulk {
|
||||
};
|
||||
|
||||
class bulk_PartGeneric: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_GENERIC_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_GENERIC_FULL;
|
||||
weight = 60;
|
||||
class ItemActions {
|
||||
@@ -289,6 +306,7 @@ class bulk_PartGeneric: bulk {
|
||||
};
|
||||
};
|
||||
class bulk_PartGenericHalf: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_GENERIC_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_GENERIC_HALF;
|
||||
weight = 30;
|
||||
class ItemActions {
|
||||
@@ -306,4 +324,4 @@ class bulk_PartGenericHalf: bulk {
|
||||
input[] = {{"bulk_PartGenericHalf",1},{"PartGeneric",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user