mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-06-28 05:50:17 +02:00
Add Esperanto translation (#625)
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
-- WALL BUTTON
|
||||
-- A button that when pressed emits power for 1 second
|
||||
-- and then turns off again
|
||||
local S = minetest.get_translator(minetest.get_current_modname())
|
||||
|
||||
mesecon.button_turnoff = function (pos)
|
||||
local node = minetest.get_node(pos)
|
||||
@ -45,7 +46,7 @@ minetest.register_node("mesecons_button:button_off", {
|
||||
}
|
||||
},
|
||||
groups = {dig_immediate=2, mesecon_needs_receiver = 1},
|
||||
description = "Button",
|
||||
description = S("Button"),
|
||||
on_rightclick = function (pos, node)
|
||||
minetest.swap_node(pos, {name = "mesecons_button:button_on", param2=node.param2})
|
||||
mesecon.receptor_on(pos, mesecon.rules.buttonlike_get(node))
|
||||
@ -92,7 +93,7 @@ minetest.register_node("mesecons_button:button_on", {
|
||||
},
|
||||
groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon_needs_receiver = 1},
|
||||
drop = 'mesecons_button:button_off',
|
||||
description = "Button",
|
||||
description = S("Button"),
|
||||
sounds = mesecon.node_sound.stone,
|
||||
mesecons = {receptor = {
|
||||
state = mesecon.state.on,
|
||||
|
4
mesecons_button/locale/mesecons_button.eo.tr
Normal file
4
mesecons_button/locale/mesecons_button.eo.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_button
|
||||
|
||||
### init.lua ###
|
||||
Button=Butono
|
4
mesecons_button/locale/template.txt
Normal file
4
mesecons_button/locale/template.txt
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_button
|
||||
|
||||
### init.lua ###
|
||||
Button=
|
Reference in New Issue
Block a user