summaryrefslogtreecommitdiff
path: root/technic_worldgen/crafts.lua
diff options
context:
space:
mode:
Diffstat (limited to 'technic_worldgen/crafts.lua')
-rw-r--r--technic_worldgen/crafts.lua17
1 files changed, 10 insertions, 7 deletions
diff --git a/technic_worldgen/crafts.lua b/technic_worldgen/crafts.lua
index 26d7d51..fc593a6 100644
--- a/technic_worldgen/crafts.lua
+++ b/technic_worldgen/crafts.lua
@@ -1,38 +1,41 @@
+
+local S = technic.worldgen.gettext
+
minetest.register_craftitem(":technic:uranium", {
- description = "Uranium",
+ description = S("Uranium"),
inventory_image = "technic_uranium.png",
on_place_on_ground = minetest.craftitem_place_item,
})
minetest.register_craftitem(":technic:chromium_lump", {
- description = "Chromium Lump",
+ description = S("Chromium Lump"),
inventory_image = "technic_chromium_lump.png",
on_place_on_ground = minetest.craftitem_place_item,
})
minetest.register_craftitem(":technic:chromium_ingot", {
- description = "Chromium Ingot",
+ description = S("Chromium Ingot"),
inventory_image = "technic_chromium_ingot.png",
on_place_on_ground = minetest.craftitem_place_item,
})
minetest.register_craftitem(":technic:zinc_lump", {
- description = "Zinc Lump",
+ description = S("Zinc Lump"),
inventory_image = "technic_zinc_lump.png",
})
minetest.register_craftitem(":technic:zinc_ingot", {
- description = "Zinc Ingot",
+ description = S("Zinc Ingot"),
inventory_image = "technic_zinc_ingot.png",
})
minetest.register_craftitem(":technic:brass_ingot", {
- description = "Brass Ingot",
+ description = S("Brass Ingot"),
inventory_image = "technic_brass_ingot.png",
})
minetest.register_craftitem(":technic:stainless_steel_ingot", {
- description = "Stainless Steel Ingot",
+ description = S("Stainless Steel Ingot"),
inventory_image = "technic_stainless_steel_ingot.png",
})