mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-07-13 04:30:21 +02:00
Add MT 5.0 translation support
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
local S = minetest.get_translator("mesecons_movestone")
|
||||
|
||||
-- MOVESTONE
|
||||
-- Non-sticky:
|
||||
-- Moves along mesecon lines
|
||||
@ -127,7 +129,7 @@ mesecon.register_movestone("mesecons_movestones:movestone", {
|
||||
"jeija_movestone_arrows.png",
|
||||
},
|
||||
groups = {cracky = 3},
|
||||
description = "Movestone",
|
||||
description = S("Movestone"),
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
}, false, false)
|
||||
|
||||
@ -141,7 +143,7 @@ mesecon.register_movestone("mesecons_movestones:sticky_movestone", {
|
||||
"jeija_sticky_movestone.png",
|
||||
},
|
||||
groups = {cracky = 3},
|
||||
description = "Sticky Movestone",
|
||||
description = S("Sticky Movestone"),
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
}, true, false)
|
||||
|
||||
@ -155,7 +157,7 @@ mesecon.register_movestone("mesecons_movestones:movestone_vertical", {
|
||||
"jeija_movestone_arrows.png^[transformR90",
|
||||
},
|
||||
groups = {cracky = 3},
|
||||
description = "Vertical Movestone",
|
||||
description = S("Vertical Movestone"),
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
}, false, true)
|
||||
|
||||
@ -169,7 +171,7 @@ mesecon.register_movestone("mesecons_movestones:sticky_movestone_vertical", {
|
||||
"jeija_movestone_arrows.png^[transformR90",
|
||||
},
|
||||
groups = {cracky = 3},
|
||||
description = "Vertical Sticky Movestone",
|
||||
description = S("Vertical Sticky Movestone"),
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
}, true, true)
|
||||
|
||||
|
Reference in New Issue
Block a user