mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-06-29 14:20:25 +02:00
Add Esperanto translation (#625)
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
local S = minetest.get_translator(minetest.get_current_modname())
|
||||
|
||||
local specs = {
|
||||
normal = {
|
||||
offname = "mesecons_pistons:piston_normal_off",
|
||||
@ -265,7 +267,7 @@ local piston_on_box = {
|
||||
-- Normal (non-sticky) Pistons:
|
||||
-- offstate
|
||||
minetest.register_node("mesecons_pistons:piston_normal_off", {
|
||||
description = "Piston",
|
||||
description = S("Piston"),
|
||||
tiles = {
|
||||
"mesecons_piston_top.png",
|
||||
"mesecons_piston_bottom.png",
|
||||
@ -290,7 +292,7 @@ minetest.register_node("mesecons_pistons:piston_normal_off", {
|
||||
|
||||
-- onstate
|
||||
minetest.register_node("mesecons_pistons:piston_normal_on", {
|
||||
description = "Activated Piston Base",
|
||||
description = S("Activated Piston Base"),
|
||||
drawtype = "nodebox",
|
||||
tiles = {
|
||||
"mesecons_piston_top.png",
|
||||
@ -319,7 +321,7 @@ minetest.register_node("mesecons_pistons:piston_normal_on", {
|
||||
|
||||
-- pusher
|
||||
minetest.register_node("mesecons_pistons:piston_pusher_normal", {
|
||||
description = "Piston Pusher",
|
||||
description = S("Piston Pusher"),
|
||||
drawtype = "nodebox",
|
||||
tiles = {
|
||||
"mesecons_piston_pusher_top.png",
|
||||
@ -344,7 +346,7 @@ minetest.register_node("mesecons_pistons:piston_pusher_normal", {
|
||||
-- Sticky ones
|
||||
-- offstate
|
||||
minetest.register_node("mesecons_pistons:piston_sticky_off", {
|
||||
description = "Sticky Piston",
|
||||
description = S("Sticky Piston"),
|
||||
tiles = {
|
||||
"mesecons_piston_top.png",
|
||||
"mesecons_piston_bottom.png",
|
||||
@ -369,7 +371,7 @@ minetest.register_node("mesecons_pistons:piston_sticky_off", {
|
||||
|
||||
-- onstate
|
||||
minetest.register_node("mesecons_pistons:piston_sticky_on", {
|
||||
description = "Activated Sticky Piston Base",
|
||||
description = S("Activated Sticky Piston Base"),
|
||||
drawtype = "nodebox",
|
||||
tiles = {
|
||||
"mesecons_piston_top.png",
|
||||
@ -398,7 +400,7 @@ minetest.register_node("mesecons_pistons:piston_sticky_on", {
|
||||
|
||||
-- pusher
|
||||
minetest.register_node("mesecons_pistons:piston_pusher_sticky", {
|
||||
description = "Sticky Piston Pusher",
|
||||
description = S("Sticky Piston Pusher"),
|
||||
drawtype = "nodebox",
|
||||
tiles = {
|
||||
"mesecons_piston_pusher_top.png",
|
||||
|
Reference in New Issue
Block a user