mirror of
https://github.com/minetest-mods/technic.git
synced 2025-06-28 14:26:16 +02:00
Fix trailing whitespace (#482)
Trim all trailing whitespace characters,
This commit is contained in:
committed by
SmallJoker
parent
5f6b87d43a
commit
4f78a69ffc
@ -2,36 +2,36 @@
|
||||
# technic_worldgen translation template
|
||||
|
||||
###crafts.lua
|
||||
Uranium Lump =
|
||||
Uranium Ingot =
|
||||
Chromium Lump =
|
||||
Chromium Ingot =
|
||||
Zinc Lump =
|
||||
Zinc Ingot =
|
||||
Brass Ingot =
|
||||
Uranium Lump =
|
||||
Uranium Ingot =
|
||||
Chromium Lump =
|
||||
Chromium Ingot =
|
||||
Zinc Lump =
|
||||
Zinc Ingot =
|
||||
Brass Ingot =
|
||||
Wrought Iron Ingot =
|
||||
Cast Iron Ingot =
|
||||
Carbon Steel Ingot =
|
||||
Stainless Steel Ingot =
|
||||
Stainless Steel Ingot =
|
||||
Iron =
|
||||
|
||||
###nodes.lua
|
||||
Uranium Ore =
|
||||
Chromium Ore =
|
||||
Zinc Ore =
|
||||
Granite =
|
||||
Marble =
|
||||
Marble Bricks =
|
||||
Uranium Block =
|
||||
Chromium Block =
|
||||
Zinc Block =
|
||||
Uranium Ore =
|
||||
Chromium Ore =
|
||||
Zinc Ore =
|
||||
Granite =
|
||||
Marble =
|
||||
Marble Bricks =
|
||||
Uranium Block =
|
||||
Chromium Block =
|
||||
Zinc Block =
|
||||
Wrought Iron Block =
|
||||
Cast Iron Block =
|
||||
Carbon Steel Block =
|
||||
Stainless Steel Block =
|
||||
Brass Block =
|
||||
Stainless Steel Block =
|
||||
Brass Block =
|
||||
Wrought Iron =
|
||||
|
||||
###rubber.lua
|
||||
Rubber Tree Sapling =
|
||||
Rubber Tree =
|
||||
Rubber Tree Sapling =
|
||||
Rubber Tree =
|
||||
|
@ -1,38 +1,38 @@
|
||||
# Turkish translation
|
||||
# mahmutelmas06@hotmail.com
|
||||
# mahmutelmas06@hotmail.com
|
||||
# Türkçe çeviri
|
||||
|
||||
###crafts.lua
|
||||
Uranium Lump = Uranyum yığını
|
||||
Uranium Lump = Uranyum yığını
|
||||
Uranium Ingot = Uranyum külçesi
|
||||
Chromium Lump = Krom yığını
|
||||
Chromium Ingot = Krom külçesi
|
||||
Zinc Lump = Çinko yığını
|
||||
Zinc Ingot = Çünko külçesi
|
||||
Brass Ingot = Pirinç yığını
|
||||
Brass Ingot = Pirinç yığını
|
||||
Wrought Iron Ingot = İşlenmiş demir yığını
|
||||
Cast Iron Ingot = Döküm demir yığını
|
||||
Carbon Steel Ingot = Karbon çelik külçe
|
||||
Stainless Steel Ingot =Paslanmaz çelik külçe
|
||||
Carbon Steel Ingot = Karbon çelik külçe
|
||||
Stainless Steel Ingot =Paslanmaz çelik külçe
|
||||
Iron = Demir
|
||||
|
||||
###nodes.lua
|
||||
Uranium Ore = Uranyum madeni
|
||||
Chromium Ore = Krom madeni
|
||||
Zinc Ore = Çinko madeni
|
||||
Uranium Ore = Uranyum madeni
|
||||
Chromium Ore = Krom madeni
|
||||
Zinc Ore = Çinko madeni
|
||||
Granite = Granit
|
||||
Marble = Mermer
|
||||
Marble Bricks = Mermer tuğla
|
||||
Uranium Block = Uranyum blok
|
||||
Chromium Block = Karbon blok
|
||||
Zinc Block = Çinko blok
|
||||
Marble Bricks = Mermer tuğla
|
||||
Uranium Block = Uranyum blok
|
||||
Chromium Block = Karbon blok
|
||||
Zinc Block = Çinko blok
|
||||
Wrought Iron Block = İşlenmiş demir blok
|
||||
Cast Iron Block = Döküm demir blok
|
||||
Carbon Steel Block = Karbon çelik blok
|
||||
Stainless Steel Block = Paslanmaz çelik blok
|
||||
Stainless Steel Block = Paslanmaz çelik blok
|
||||
Brass Block = Pirinç blok
|
||||
Wrought Iron = İşlenmiş demir
|
||||
|
||||
###rubber.lua
|
||||
Rubber Tree Sapling = Kauçuk ağacı fidanı
|
||||
Rubber Tree = Kauçuk ağacı
|
||||
Rubber Tree = Kauçuk ağacı
|
||||
|
@ -8,7 +8,7 @@ minetest.register_node( ":technic:mineral_uranium", {
|
||||
groups = {cracky=3, radioactive=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
drop = "technic:uranium_lump",
|
||||
})
|
||||
})
|
||||
|
||||
minetest.register_node( ":technic:mineral_chromium", {
|
||||
description = S("Chromium Ore"),
|
||||
@ -17,7 +17,7 @@ minetest.register_node( ":technic:mineral_chromium", {
|
||||
groups = {cracky=3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
drop = "technic:chromium_lump",
|
||||
})
|
||||
})
|
||||
|
||||
minetest.register_node( ":technic:mineral_zinc", {
|
||||
description = S("Zinc Ore"),
|
||||
@ -52,7 +52,7 @@ minetest.register_node( ":technic:granite", {
|
||||
is_ground_content = true,
|
||||
groups = {cracky=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
})
|
||||
|
||||
minetest.register_node( ":technic:marble", {
|
||||
description = S("Marble"),
|
||||
@ -60,7 +60,7 @@ minetest.register_node( ":technic:marble", {
|
||||
is_ground_content = true,
|
||||
groups = {cracky=3, marble=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
})
|
||||
|
||||
minetest.register_node( ":technic:marble_bricks", {
|
||||
description = S("Marble Bricks"),
|
||||
@ -68,7 +68,7 @@ minetest.register_node( ":technic:marble_bricks", {
|
||||
is_ground_content = true,
|
||||
groups = {cracky=3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
})
|
||||
|
||||
minetest.register_node(":technic:uranium_block", {
|
||||
description = S("Uranium Block"),
|
||||
|
Reference in New Issue
Block a user