diff --git a/SQF/dayz_code/Configs/CfgMagazines/DZE/Food.hpp b/SQF/dayz_code/Configs/CfgMagazines/DZE/Food.hpp
index 7d8582c2b..ca529b53e 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/DZE/Food.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/DZE/Food.hpp
@@ -1,9 +1,9 @@
class FoodBioMeat: FoodEdible {
scope = public;
- displayName = "Bio Meat";
+ displayName = $STR_FOOD_NAME_BIOMEAT;
model = "\z\addons\dayz_epoch\models\biomeat_can.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_biomeat_CA.paa";
- descriptionShort = "Bio Meat: A very good source of nutrition, and a very high chance of infection. Eat at own risk.";
+ descriptionShort = $STR_FOOD_NAME_BIOMEAT_DESC;
bloodRegen = 1600;
};
// new DZE harvested food
@@ -11,8 +11,8 @@ class FoodPumpkin : FoodEdible {
scope = public;
count = 1;
bloodRegen = 100;
- displayName = "Pumpkin";
- descriptionShort = "Pumpkin";
+ displayName = $STR_FOOD_NAME_PUMPKIN;
+ descriptionShort = $STR_FOOD_NAME_PUMPKIN;
weight = 1;
model = "z\addons\dayz_communityassets\models\pistachio.p3d"; // TODO: model + icon
picture = "\z\addons\dayz_communityassets\pictures\equip_pistachios_CA.paa";
@@ -20,7 +20,7 @@ class FoodPumpkin : FoodEdible {
{
class Crafting
{
- text = "Craft Pumpkin Seeds";
+ text = $STR_FOOD_NAME_PUMPKIN_CRAFT;
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
neednearby[] = {""};
requiretools[] = {"ItemKnife"};
@@ -33,8 +33,8 @@ class FoodSunFlowerSeed : FoodEdible {
scope = public;
count = 1;
bloodRegen = 100;
- displayName = "Bag of Sunflower Seeds";
- descriptionShort = "Bag of Sunflower Seeds";
+ displayName = $STR_FOOD_NAME_SUNFLOWER;
+ descriptionShort = $STR_FOOD_NAME_SUNFLOWER;
weight = 0.1;
model = "z\addons\dayz_communityassets\models\pistachio.p3d"; // TODO: model + icon
picture = "\z\addons\dayz_communityassets\pictures\equip_pistachios_CA.paa";
diff --git a/SQF/dayz_code/Configs/CfgMagazines/DZE/Gems.hpp b/SQF/dayz_code/Configs/CfgMagazines/DZE/Gems.hpp
index d9a6aaefd..e69bf59e4 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/DZE/Gems.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/DZE/Gems.hpp
@@ -1,63 +1,63 @@
class ItemTopaz : CA_Magazine {
scope = public;
- displayName = "Topaz";
+ displayName = $STR_GEM_NAME_TOPAZ;
model = "\z\addons\dayz_epoch\models\topaz.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_topaz_CA.paa";
count = 1;
type = "256";
- descriptionShort = "Topaz";
+ descriptionShort = $STR_GEM_NAME_TOPAZ;
};
class ItemObsidian : CA_Magazine {
scope = public;
- displayName = "Obsidian";
+ displayName = $STR_GEM_NAME_OBSIDIAN;
model = "\z\addons\dayz_epoch\models\obsidian.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_obsidian_CA.paa";
count = 1;
type = "256";
- descriptionShort = "Obsidian";
+ descriptionShort = $STR_GEM_NAME_OBSIDIAN;
};
class ItemSapphire : CA_Magazine {
scope = public;
- displayName = "Sapphire";
+ displayName = $STR_GEM_NAME_SAPPHIRE;
model = "\z\addons\dayz_epoch\models\sapphire.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_sapphire_CA.paa";
count = 1;
type = "256";
- descriptionShort = "Sapphire";
+ descriptionShort = $STR_GEM_NAME_SAPPHIRE;
};
class ItemAmethyst : CA_Magazine {
scope = public;
- displayName = "Amethyst";
+ displayName = $STR_GEM_NAME_AMETHYST;
model = "\z\addons\dayz_epoch\models\amethyst.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_amethyst_CA.paa";
count = 1;
type = "256";
- descriptionShort = "Amethyst";
+ descriptionShort = $STR_GEM_NAME_AMETHYST;
};
class ItemEmerald : CA_Magazine {
scope = public;
- displayName = "Emerald";
+ displayName = $STR_GEM_NAME_EMERALD;
model = "\z\addons\dayz_epoch\models\emerald.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_emerald_CA.paa";
count = 1;
type = "256";
- descriptionShort = "Emerald";
+ descriptionShort = $STR_GEM_NAME_EMERALD;
};
class ItemCitrine : CA_Magazine {
scope = public;
- displayName = "Citrine";
+ displayName = $STR_GEM_NAME_CITRINE;
model = "\z\addons\dayz_epoch\models\citrine.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_citrine_CA.paa";
count = 1;
type = "256";
- descriptionShort = "Citrine";
+ descriptionShort = $STR_GEM_NAME_CITRINE;
};
class ItemRuby : CA_Magazine {
scope = public;
- displayName = "Ruby";
+ displayName = $STR_GEM_NAME_RUBY;
model = "\z\addons\dayz_epoch\models\ruby.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_ruby_CA.paa";
count = 1;
type = "256";
- descriptionShort = "Ruby";
+ descriptionShort = $STR_GEM_NAME_RUBY;
};
\ No newline at end of file
diff --git a/SQF/dayz_code/Configs/CfgMagazines/DZE/Items.hpp b/SQF/dayz_code/Configs/CfgMagazines/DZE/Items.hpp
index 787571728..9a5b86bb8 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/DZE/Items.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/DZE/Items.hpp
@@ -1,16 +1,16 @@
// For Chainsaw
class ItemMixOil : CA_Magazine {
scope = public;
- displayName = "2-Stroke Engine Oil";
+ displayName = $STR_EPOCH_CHAINSAW_OIL;
model = "\z\addons\dayz_epoch\models\oilmix.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_oilmix_CA.paa";
count = 1;
type = "256";
- descriptionShort = "2-Stroke Engine Oil";
+ descriptionShort = $STR_EPOCH_CHAINSAW_OIL;
sfx = "refuel";
class ItemActions {
class Crafting {
- text = "Mix Chainsaw Gas"; // TODO: localize
+ text = $STR_EPOCH_CHAINSAW_MIXGAS_ACTION;
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
neednearby[] = {};
requiretools[] = {};
@@ -23,8 +23,8 @@ class ItemMixOil : CA_Magazine {
class CSGAS : CA_Magazine {
scope = public;
type = VSoft;
- displayName = "Gas";
- descriptionShort = "Gas for Chainsaw";
+ displayName = $STR_EPOCH_CHAINSAW_GAS;
+ descriptionShort = $STR_EPOCH_CHAINSAW_GAS_DESC;
count = 1000;
picture = "\CA\weapons\data\equip\m_m240_ca.paa";
ammo = "Chainsaw_Swing_Ammo";
@@ -65,14 +65,14 @@ class ItemJerryMixed: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Mixed Gas Full";
+ displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS20L_CAN; //Full Mixed Gas Can?
model = "\dayz_equip\models\jerrycan.p3d";
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
- descriptionShort = "20 liters of Mixed Gas.";
+ descriptionShort = $STR_EPOCH_CHAINSAW_MIXEDGAS20L_CAN_DESC;
sfx = "refuel";
class ItemActions {
class Crafting {
- text = "Fill Chainsaw";
+ text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
neednearby[] = {};
requiretools[] = {"ItemToolbox"};
@@ -85,14 +85,14 @@ class ItemJerryMixed4: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Mixed Gas 16L";
+ displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS16L_CAN;
model = "\dayz_equip\models\jerrycan.p3d";
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
- descriptionShort = "16 liters of Mixed Gas.";
+ descriptionShort = $STR_EPOCH_CHAINSAW_MIXEDGAS16L_CAN_DESC;
sfx = "refuel";
class ItemActions {
class Crafting {
- text = "Fill Chainsaw";
+ text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
neednearby[] = {};
requiretools[] = {"ItemToolbox"};
@@ -105,14 +105,14 @@ class ItemJerryMixed3: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Mixed Gas 12L";
+ displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS12L_CAN;
model = "\dayz_equip\models\jerrycan.p3d";
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
- descriptionShort = "12 liters of Mixed Gas.";
+ descriptionShort = $STR_EPOCH_CHAINSAW_MIXEDGAS12L_CAN_DESC;
sfx = "refuel";
class ItemActions {
class Crafting {
- text = "Fill Chainsaw";
+ text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
neednearby[] = {};
requiretools[] = {"ItemToolbox"};
@@ -125,14 +125,14 @@ class ItemJerryMixed2: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Mixed Gas 8L";
+ displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS8L_CAN;
model = "\dayz_equip\models\jerrycan.p3d";
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
- descriptionShort = "8 liters of Mixed Gas.";
+ descriptionShort = STR_EPOCH_CHAINSAW_MIXEDGAS8L_CAN_DESC;
sfx = "refuel";
class ItemActions {
class Crafting {
- text = "Fill Chainsaw";
+ text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
neednearby[] = {};
requiretools[] = {"ItemToolbox"};
@@ -145,14 +145,14 @@ class ItemJerryMixed1: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Mixed Gas 4L";
+ displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS4L_CAN;
model = "\dayz_equip\models\jerrycan.p3d";
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
- descriptionShort = "4 liters of Mixed Gas.";
+ descriptionShort = STR_EPOCH_CHAINSAW_MIXEDGAS4L_CAN;
sfx = "refuel";
class ItemActions {
class Crafting {
- text = "Fill Chainsaw";
+ text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
neednearby[] = {};
requiretools[] = {"ItemToolbox"};
diff --git a/SQF/dayz_code/Configs/CfgMagazines/DZE/Ores.hpp b/SQF/dayz_code/Configs/CfgMagazines/DZE/Ores.hpp
index c91d2e725..12b7fba15 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/DZE/Ores.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/DZE/Ores.hpp
@@ -2,10 +2,10 @@ class PartOre: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Iron Ore";
+ displayName = $STR_ORE_NAME_IRON;
model = "\z\addons\dayz_epoch\models\iron_ore.p3d";
picture="\z\addons\dayz_epoch\pictures\equip_iron_ore_CA.paa";
- descriptionShort = "Used for crafting scrap metal. Can be mined from rocks using a sledgehammer.";
+ descriptionShort = $STR_ORE_NAME_IRON_DESC;
weight = 1;
class ItemActions {
class Crafting {
@@ -22,10 +22,10 @@ class PartOreSilver: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Silver Ore";
+ displayName = $STR_ORE_NAME_SILVER;
model = "\z\addons\dayz_epoch\models\silver_ore.p3d";
picture="\z\addons\dayz_epoch\pictures\equip_silver_ore_CA.paa";
- descriptionShort = "Can be mined from rocks using a sledgehammer.";
+ descriptionShort = $STR_ORE_NAME_SILVER_DESC;
weight = 1;
class ItemActions {
class Crafting {
@@ -42,10 +42,10 @@ class PartOreGold: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Gold Ore";
+ displayName = $STR_ORE_NAME_GOLD;
model = "\z\addons\dayz_epoch\models\gold_ore.p3d";
picture="\z\addons\dayz_epoch\pictures\equip_gold_ore_CA.paa";
- descriptionShort = "Can be mined from rocks using a sledgehammer.";
+ descriptionShort = $STR_ORE_NAME_GOLD_DESC;
weight = 1;
class ItemActions {
class Crafting {
diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml
index 8ef4ba26c..f6775c356 100644
--- a/SQF/dayz_code/stringtable.xml
+++ b/SQF/dayz_code/stringtable.xml
@@ -1550,7 +1550,7 @@
Attached Carbomb! Next Survivor who starts the engine will blow up!
- Бомба установлена! Выжившего, который решится завести двигатель разорвет на кусочки!
+ Бомба установлена! Выжившего, который решится завести двигатель разорвёт на кусочки!
La bombe est posée ! La prochaine personne qui démarre le véhicule sera éparpillée façon puzzle.
Bomba umístěna! Ten, kdo příště nastartuje motor, se upeče!
Sprengsatz angebracht! Der nächste Survivor, der den Motor startet, wird in die Luft fliegen!
@@ -1564,7 +1564,7 @@
You don't have a bomb in your inventory
- Нужна бомба в инвентаре
+ Необходима бомба в инвентаре
Vous n'avez pas de bombe
Nemáte u sebe bombu.
Du hast keinen Sprengsatz in deinem Inventar!
@@ -1578,7 +1578,7 @@
Chopping down tree.
- Рубим дерево
+ Рубим дерево.
Abattage de l'arbre
Porážíte strom.
Baum wird gefällt
@@ -10698,7 +10698,7 @@
Cannot abort while in a trader area!
Die Verbindung kann nicht getrennt werden, während man sich in einer Händler-Bereich aufhällt!
- Нельзя выходить, находясь в торговом площадка!
+ В торговой зоне нельзя выходить из игры!
Kan niet uitloggen in een handel gebied.
Impossible d'interrompre dans un marché!
@@ -10905,7 +10905,7 @@
Cannot build, too many objects within %1m.
Bau nicht möglich, zu viele Objekte innerhalb von %1m.
- Нельзя построить, слишком много объектов в пределах %1m.
+ Нельзя построить, слишком много объектов в пределах %1м.
Kan niet bouwen, teveel objecten binnen %1.
Impossible de construire, il y a trop d'objets à moins de %1m.
@@ -11031,7 +11031,7 @@
Key crafting needs a fire within 3 meters.
Kopieren eines Schlüssels ist nur innerhalb 3 Meter eines Feuers möglich.
- Для создания ключа нужен огонь в пределах 3-х метров.
+ Для создания ключа нужен огонь вблизи 3-х метров.
Je moet binnen 3 meter van het vuur staan om de sleutel te maken.
@@ -11256,7 +11256,7 @@
Stop already in progress.
Stoppen des Generators bereits im Gange.
-
+ Уже останавливается.
Bezig met stoppen.
L'arrêt est déjà en cours.
@@ -11337,7 +11337,7 @@
Vault pitching already in progress.
Platzieren des Tresors bereits im Gange.
-
+ Сейф уже устанавливается.
Kluis installatie is al bezig.
L'installation du coffre fort est déjà en cours.
@@ -12318,7 +12318,7 @@
Pack 6 Pepsi
6 Pepsi packen
- Запаковать: Пепси(6)
+ Запаковать: Пепси (6)
Verpak 6 pepsi
@@ -12336,7 +12336,7 @@
Pack Tank Traps
Panzerfallen packen
- Запаковать: Танковые ловушки
+ Запаковать: Противотанковый ёж
Verpak tank traps
@@ -12363,7 +12363,7 @@
Pack 6 Bacon
6 Speck packen
- Запаковать: Бекон(6)
+ Запаковать: Бекон (6)
Verpack 6 speklappen
@@ -12480,7 +12480,7 @@
Craft Locked Door
Geschlossene Tür herstellen
- Создать: Закрытая дверь
+ Создать: Дверь с замком
Creëer afsluitbare deur
@@ -12525,7 +12525,7 @@
Failed, you must get into drivers seat first.
Fehlgeschlagen, Sie müssen zuerst auf den Fahrersitz.
- Не удалось, вы должны попасть на сиденье водителя хотя бы раз.
+ Вы должны попасть на сиденье водителя хотя бы раз.
Mislukt, stap eerst in de bestuurders stoel.
@@ -12543,7 +12543,7 @@
Quiet
Ruhe
- Quiet
+ Тихо
Quiet
Quiet
Quiet
@@ -12552,7 +12552,7 @@
Alert
Alamieren
- Alert
+ Бдительно
Alert
Alert
Alert
@@ -12561,7 +12561,7 @@
Walk
Laufen
- Walk
+ Пешком
Walk
Walk
Walk
@@ -12570,7 +12570,7 @@
Run
Rennen
- Run
+ Бегом
Run
Run
Run
@@ -12696,7 +12696,7 @@
Craft Plywood Pack
Sperrholz-Paket herstellen
- Создать: Plywood Pack
+ Создать: Упаковка фанеры
@@ -12714,7 +12714,7 @@
Craft Silver Bar
-
+ Уложить в серебряный слиток
@@ -12723,7 +12723,7 @@
Craft Gold Bar
-
+ Уложить в золотой слиток
@@ -12777,7 +12777,7 @@
Craft Sandbag Nest
Sandsack-Nest herstellen
- Создать: Sandbag Nest
+ Создать: Гнездо из мешков
@@ -12867,7 +12867,7 @@
Craft Round Fence
Abgerundeten Zaun herstellen
- Создать: Круглая ограда из мешков с песком
+ Создать: Круглая ограда
@@ -12876,7 +12876,7 @@
Build Round Fence
Abgerundeten Zaun aufstellen
- Установить: Круглая ограда из мешков с песком
+ Установить: Круглая ограда
@@ -12993,7 +12993,7 @@
You may only access friends' gear in this area.
Sie können Zahn 'Freunde Zugriff nur in diesem Bereich.
- Вы можете получить доступ только к шестерню знакомого в этой области.
+ Вы можете открывать рюкзаки только друзей в этой области.
Sólo se puede acceder engranaje amigos en esta área.
U mag alleen toegang tot versnelling vrienden 'op dit gebied.
Vous ne pouvez accéder à des engins de vos amis dans ce domaine.
@@ -13173,7 +13173,7 @@
Attack
Attacke
- Атака
+ Атаковать
Ataque
Aanval
Attaque
@@ -13407,7 +13407,7 @@
Maintenance already in progress.
Instandhaltung bereits in bearbeitung.
- Уже удерживается.
+ Уже обслуживается.
La maintenance est déjà en cours.
@@ -13416,7 +13416,7 @@
At least one building part is not setup yet.
- По крайней мере, одна часть здания ещё не построена.
+ Как минимум одна часть постройки ещё не установлена.
Il reste encore des parties de la construction à maintenir.
@@ -13425,7 +13425,7 @@
You have maintained %1 building parts.
- Вы удержали %1 частей здания.
+ Вы обслужили %1 построек.
Vous avez maintenu %1 construction(s).
@@ -13434,7 +13434,7 @@
Missing %1 more of %2
Ihnen fehlt/fehlen %1 %2
-
+ Не хватает %2 (В количестве: %1)
Je hebt nog %1 extra %2 nodig.
Il manque %1 %2
@@ -13443,7 +13443,7 @@
%1 building parts in range, maintenance would cost %2.
- В радиусе %1 частей зданий, удержание будет стоить %2.
+ Построек найдено: %1, обслуживание будет стоить %2.
%1 constructions à portée, la maintenance coûtera %2.
@@ -13452,7 +13452,7 @@
You have tagged a player as friendly. Waiting for other player to accept.
- Вы отметили игрока как друга. Ожидание принятия.
+ Вы отметили игрока как друга. Ожидание принятия дружбы.
Vous avez marqué un joueur comme amical. En attente de la confirmation de ce joueur.
@@ -13461,7 +13461,7 @@
Unable to change clothes while wearing backpack.
- Нельзя переодеваться, одевая рюкзак.
+ Нельзя переодеться с рюкзаком на спине.
Impossible de changer ses vêtements lorsque vous portez un sac à dos.
@@ -13470,7 +13470,7 @@
Unable to change clothes while carrying a filled chainsaw.
- Нельзя переодеваться, неся заправленную бензопилу.
+ Нельзя переодеваться, держа заправленную бензопилу.
Impossible de changer ses vêtements lorsque vous avez une tronçonneuse en main.
@@ -13488,7 +13488,7 @@
No Tank Traps found nearby.
Keine Tank Traps in der Nähe gefunden.
- Вблизи не найдено танковых ловушек.
+ Противотанковые ежи не найдены.
Aucun piège à tank trouvé aux alentours.
@@ -13497,7 +13497,7 @@
Another object is blocking the vehicle exit.
- Другой объект блокирует выход из транспорта.
+ Что-то блокирует выход из транспорта.
Un objet empêche de sortir du véhicule.
@@ -13542,7 +13542,7 @@
Deconstructing modular buildables will not refund any components.
- Разборка модульных построек не возвратит составные части.
+ Разборка модульных построек не возвратит потраченные ресурсы.
Le démontage de la construction ne rendra pas de composants.
@@ -13551,7 +13551,7 @@
%1 building parts in range.
- %1 стройматериалов в радиусе.
+ Построек найдено: %1
%1 constructions à portée.
@@ -13569,7 +13569,7 @@
12 x Random Item
12 x Zufällige Gegenstände
-
+ Случайный предмет (12x)
@@ -13677,7 +13677,7 @@
6 x Tank Trap
-
+ Противотанковый ёж (6x)
@@ -13686,7 +13686,7 @@
12 x Tank Trap
-
+ Противотанковый ёж (12x)
@@ -13713,7 +13713,7 @@
6 x Scrap Metal
-
+ Металлолом (6x)
@@ -13722,7 +13722,7 @@
12 x Scrap Metal
-
+ Металлолом (12x)
@@ -13758,7 +13758,7 @@
Now entering %1
Du betrittst %1
-
+ Добро пожаловать в %1
@@ -13767,7 +13767,7 @@
Now leaving %1
Du verlässt %1
-
+ Покидаем %1
@@ -13794,7 +13794,7 @@
You are overburdened.
Sie sind überfordert.
- Вы перегружена.
+ Вы перегружены.
Usted está sobrecargado.
Je bent overbelast.
Vous êtes surchargé.
@@ -13819,7 +13819,7 @@
being crushed
quetsch
- раздавливания
+ раздавлен
ser aplastado
être écrasé
rozdrcení
@@ -13843,7 +13843,7 @@
%1 died from %2
%1 starb %2
- %1 умерли от %2
+ %1 умер от %2
%1 murió de %2
%1 %2 de mort
%1 zemřelo %2
@@ -13851,14 +13851,14 @@
%1 was killed by %2 with a %3 from %4m
%1 wurde von %2 mit einer %3 von %4m getötet
- %1 был убит %2 с %3 от %4м
+ %1 был убит игроком %2 с %3 с расстояния %4м
%1 murió a manos de %2 con un %3 de %4m
%1 a été tué par %2 avec un %3 de %4m
%1 byl zabit %2 na %3 z %4m
Pitch Desert Dome Tent
- Поставить палатку пустыня
+ Поставить палатку-полусферу
Asentar Tienda de Campaña Desierto
Monter la Tente Dôme Désert
Postavit stan (iglú) Poušť
@@ -13867,7 +13867,7 @@
Desert Dome Tent
Tente Dôme Désert
- Палатка-полусфера пустыня
+ Пустынная палатка-полусфера
Tienda de Campaña Desierto
Stan (iglú) Poušť
Igluzelt Wüste
@@ -13875,7 +13875,7 @@
Desert Dome Tent +
Tente Dôme Désert +
- Палатка-полусфера пустыня +
+ Пустынная палатка-полусфера +
Tienda de Campaña Desierto +
Stan (iglú) Poušť +
Igluzelt Wüste +
@@ -13883,7 +13883,7 @@
Desert Dome Tent ++
Tente Dôme Désert ++
- Палатка-полусфера пустыня ++
+ Пустынная палатка-полусфера ++
Tienda de Campaña Desierto ++
Stan (iglú) Poušť ++
Igluzelt Wüste ++
@@ -13891,7 +13891,7 @@
Desert Dome Tent +++
Tente Dôme Désert +++
- Палатка-полусфера пустыня +++
+ Пустынная палатка-полусфера +++
Tienda de Campaña Desierto +++
Stan (iglú) Poušť +++
Igluzelt Wüste +++
@@ -13899,7 +13899,7 @@
Desert Dome Tent ++++
Tente Dôme Désert ++++
- Палатка-полусфера пустыня ++++
+ Пустынная палатка-полусфера ++++
Tienda de Campaña Desierto ++++
Stan (iglú) Poušť ++++
Igluzelt Wüste ++++
@@ -13907,7 +13907,7 @@
Desert Dome Tent +++++
Tente Dôme Désert +++++
- Палатка-полусфера пустыня +++++
+ Пустынная палатка-полусфера +++++
Tienda de Campaña Desierto +++++
Stan (iglú) Poušť +++++
Igluzelt Wüste +++++
@@ -13928,5 +13928,269 @@
Cuit viande de chien
Vařené maso Dog
+
+ Bio Meat
+ Bio Meat
+ Органическое мясо
+ Bio Meat
+ Bio Meat
+ Bio Meat
+
+
+ Bio Meat: A very good source of nutrition, and a very high chance of infection. Eat at own risk.
+ Bio Meat: A very good source of nutrition, and a very high chance of infection. Eat at own risk.
+ Органическое мясо: Очень хороший источник пит. веществ, обладающий высокой вероятностью заражения. Ешьте на свой страх и риск.
+ Bio Meat: A very good source of nutrition, and a very high chance of infection. Eat at own risk.
+ Bio Meat: A very good source of nutrition, and a very high chance of infection. Eat at own risk.
+ Bio Meat: A very good source of nutrition, and a very high chance of infection. Eat at own risk.
+
+
+ Pumpkin
+ Pumpkin
+ Тыква
+ Pumpkin
+ Pumpkin
+ Pumpkin
+
+
+ Craft Pumpkin Seeds
+ Craft Pumpkin Seeds
+ Добыть семена
+ Craft Pumpkin Seeds
+ Craft Pumpkin Seeds
+ Craft Pumpkin Seeds
+
+
+ Bag of Sunflower Seeds
+ Bag of Sunflower Seeds
+ Мешочек семечек
+ Bag of Sunflower Seeds
+ Bag of Sunflower Seeds
+ Bag of Sunflower Seeds
+
+
+ Topaz
+ Topaz
+ Топаз
+ Topaz
+ Topaz
+ Topaz
+
+
+ Obsidian
+ Obsidian
+ Обсидиан
+ Obsidian
+ Obsidian
+ Obsidian
+
+
+ Sapphire
+ Sapphire
+ Сапфир
+ Sapphire
+ Sapphire
+ Sapphire
+
+
+ Amethyst
+ Amethyst
+ Аметист
+ Amethyst
+ Amethyst
+ Amethyst
+
+
+ Emerald
+ Emerald
+ Изумруд
+ Emerald
+ Emerald
+ Emerald
+
+
+ Citrine
+ Citrine
+ Цитрин
+ Citrine
+ Citrine
+ Citrine
+
+
+ Ruby
+ Ruby
+ Рубин
+ Ruby
+ Ruby
+ Ruby
+
+
+ Iron Ore
+ Iron Ore
+ Железная руда
+ Iron Ore
+ Iron Ore
+ Iron Ore
+
+
+ Used for crafting scrap metal. Can be mined from rocks using a sledgehammer.
+ Used for crafting scrap metal. Can be mined from rocks using a sledgehammer.
+ Используется для получения металлолома. Добывается из камней с помощью кувалды.
+ Used for crafting scrap metal. Can be mined from rocks using a sledgehammer.
+ Used for crafting scrap metal. Can be mined from rocks using a sledgehammer.
+ Used for crafting scrap metal. Can be mined from rocks using a sledgehammer.
+
+
+ Silver Ore
+ Silver Ore
+ Серебряная руда
+ Silver Ore
+ Silver Ore
+ Silver Ore
+
+
+ Can be mined from rocks using a sledgehammer.
+ Can be mined from rocks using a sledgehammer.
+ Добывается из камней с помощью кувалды.
+ Can be mined from rocks using a sledgehammer.
+ Can be mined from rocks using a sledgehammer.
+ Can be mined from rocks using a sledgehammer.
+
+
+ Gold Ore
+ Gold Ore
+ Золотая руда
+ Gold Ore
+ Gold Ore
+ Gold Ore
+
+
+ Can be mined from rocks using a sledgehammer.
+ Can be mined from rocks using a sledgehammer.
+ Добывается из камней с помощью кувалды.
+ Can be mined from rocks using a sledgehammer.
+ Can be mined from rocks using a sledgehammer.
+ Can be mined from rocks using a sledgehammer.
+
+
+ 2-Stroke Engine Oil
+ 2-Stroke Engine Oil
+ Масло для двухтактных двигателей
+ 2-Stroke Engine Oil
+ 2-Stroke Engine Oil
+ 2-Stroke Engine Oil
+
+
+ Mix Chainsaw Gas
+ Mix Chainsaw Gas
+ Смешать бензин
+ Mix Chainsaw Gas
+ Mix Chainsaw Gas
+ Mix Chainsaw Gas
+
+
+ Gas
+ Gas
+ Бензин
+ Gas
+ Gas
+ Gas
+
+
+ Gas for Chainsaw
+ Gas for Chainsaw
+ Топливо для бензопилы
+ Gas for Chainsaw
+ Gas for Chainsaw
+ Gas for Chainsaw
+
+
+ Mixed Gas Full
+ Mixed Gas Full
+ Полная канистра бензина
+ Mixed Gas Full
+ Mixed Gas Full
+ Mixed Gas Full
+
+
+ 20 liters of Mixed Gas.
+ 20 liters of Mixed Gas.
+ 20 литров бензина.
+ 20 liters of Mixed Gas.
+ 20 liters of Mixed Gas.
+ 20 liters of Mixed Gas.
+
+
+ Mixed Gas 16L
+ Mixed Gas 16L
+ Канистра бензина (16л)
+ Mixed Gas 16L
+ Mixed Gas 16L
+ Mixed Gas 16L
+
+
+ 16 liters of Mixed Gas.
+ 16 liters of Mixed Gas.
+ 16 литров бензина.
+ 16 liters of Mixed Gas.
+ 16 liters of Mixed Gas.
+ 16 liters of Mixed Gas.
+
+
+ Mixed Gas 12L
+ Mixed Gas 12L
+ Канистра бензина (12л)
+ Mixed Gas 12L
+ Mixed Gas 12L
+ Mixed Gas 12L
+
+
+ 12 liters of Mixed Gas.
+ 12 liters of Mixed Gas.
+ 12 литров бензина.
+ 12 liters of Mixed Gas.
+ 12 liters of Mixed Gas.
+ 12 liters of Mixed Gas.
+
+
+ Mixed Gas 8L
+ Mixed Gas 8L
+ Канистра бензина (8л)
+ Mixed Gas 8L
+ Mixed Gas 8L
+ Mixed Gas 8L
+
+
+ 8 liters of Mixed Gas.
+ 8 liters of Mixed Gas.
+ 8 литров бензина.
+ 8 liters of Mixed Gas.
+ 8 liters of Mixed Gas.
+ 8 liters of Mixed Gas.
+
+
+ Mixed Gas 4L
+ Mixed Gas 4L
+ Канистра бензина (4л)
+ Mixed Gas 4L
+ Mixed Gas 4L
+ Mixed Gas 4L
+
+
+ 4 liters of Mixed Gas.
+ 4 liters of Mixed Gas.
+ 4 литра бензина.
+ 4 liters of Mixed Gas.
+ 4 liters of Mixed Gas.
+ 4 liters of Mixed Gas.
+
+
+ Fill Chainsaw
+ Fill Chainsaw
+ Заправить
+ Fill Chainsaw
+ Fill Chainsaw
+ Fill Chainsaw
+