mirror of
https://github.com/APercy/automobiles_pck
synced 2025-10-01 23:26:24 +02:00
Add Esperanto translation
This commit is contained in:
parent
a2830bad63
commit
9eae8c98a7
@ -1,21 +1,23 @@
|
|||||||
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
--
|
--
|
||||||
-- items
|
-- items
|
||||||
--
|
--
|
||||||
|
|
||||||
-- body
|
-- body
|
||||||
minetest.register_craftitem("automobiles_buggy:buggy_body",{
|
minetest.register_craftitem("automobiles_buggy:buggy_body",{
|
||||||
description = "Buggy body",
|
description = S("Buggy Body"),
|
||||||
inventory_image = "automobiles_buggy_body.png",
|
inventory_image = "automobiles_buggy_body.png",
|
||||||
})
|
})
|
||||||
-- wheel
|
-- wheel
|
||||||
minetest.register_craftitem("automobiles_buggy:wheel",{
|
minetest.register_craftitem("automobiles_buggy:wheel",{
|
||||||
description = "Buggy wheel",
|
description = S("Buggy Wheel"),
|
||||||
inventory_image = "automobiles_buggy_wheel_icon.png",
|
inventory_image = "automobiles_buggy_wheel_icon.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- buggy
|
-- buggy
|
||||||
minetest.register_craftitem("automobiles_buggy:buggy", {
|
minetest.register_craftitem("automobiles_buggy:buggy", {
|
||||||
description = "Buggy",
|
description = S("Buggy"),
|
||||||
inventory_image = "automobiles_buggy.png",
|
inventory_image = "automobiles_buggy.png",
|
||||||
liquids_pointable = false,
|
liquids_pointable = false,
|
||||||
|
|
||||||
@ -72,5 +74,3 @@ if minetest.get_modpath("default") then
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
6
automobiles_buggy/locale/automobiles_buggy.eo.tr
Normal file
6
automobiles_buggy/locale/automobiles_buggy.eo.tr
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# textdomain: automobiles_buggy
|
||||||
|
|
||||||
|
### buggy_crafts.lua ###
|
||||||
|
Buggy Body=Korpo de Buggy
|
||||||
|
Buggy Wheel=Rado de Buggy
|
||||||
|
Buggy=Buggy
|
6
automobiles_buggy/locale/template.txt
Normal file
6
automobiles_buggy/locale/template.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# textdomain: automobiles_buggy
|
||||||
|
|
||||||
|
### buggy_crafts.lua ###
|
||||||
|
Buggy Body=
|
||||||
|
Buggy Wheel=
|
||||||
|
Buggy=
|
@ -1,16 +1,18 @@
|
|||||||
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
--
|
--
|
||||||
-- items
|
-- items
|
||||||
--
|
--
|
||||||
|
|
||||||
-- body
|
-- body
|
||||||
minetest.register_craftitem("automobiles_coupe:coupe_body",{
|
minetest.register_craftitem("automobiles_coupe:coupe_body",{
|
||||||
description = "Coupe body",
|
description = S("Coupe Body"),
|
||||||
inventory_image = "automobiles_coupe_body.png",
|
inventory_image = "automobiles_coupe_body.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- coupe
|
-- coupe
|
||||||
minetest.register_craftitem("automobiles_coupe:coupe", {
|
minetest.register_craftitem("automobiles_coupe:coupe", {
|
||||||
description = "Coupe",
|
description = S("Coupe"),
|
||||||
inventory_image = "automobiles_coupe.png",
|
inventory_image = "automobiles_coupe.png",
|
||||||
liquids_pointable = false,
|
liquids_pointable = false,
|
||||||
|
|
||||||
@ -60,5 +62,3 @@ if minetest.get_modpath("default") then
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
5
automobiles_coupe/locale/automobiles_coupe.eo.tr
Normal file
5
automobiles_coupe/locale/automobiles_coupe.eo.tr
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# textdomain: automobiles_coupe
|
||||||
|
|
||||||
|
### coupe_crafts.lua ###
|
||||||
|
Coupe Body=Korpo de Coupe
|
||||||
|
Coupe=Coupe
|
5
automobiles_coupe/locale/template.txt
Normal file
5
automobiles_coupe/locale/template.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# textdomain: automobiles_coupe
|
||||||
|
|
||||||
|
### coupe_crafts.lua ###
|
||||||
|
Coupe Body=
|
||||||
|
Coupe=
|
@ -414,13 +414,13 @@ dofile(minetest.get_modpath("automobiles_lib") .. DIR_DELIM .. "inventory_manage
|
|||||||
|
|
||||||
-- engine
|
-- engine
|
||||||
minetest.register_craftitem("automobiles_lib:engine",{
|
minetest.register_craftitem("automobiles_lib:engine",{
|
||||||
description = "Car engine",
|
description = S("Car Engine"),
|
||||||
inventory_image = "automobiles_engine.png",
|
inventory_image = "automobiles_engine.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- engine
|
-- engine
|
||||||
minetest.register_craftitem("automobiles_lib:wheel",{
|
minetest.register_craftitem("automobiles_lib:wheel",{
|
||||||
description = "Car wheel",
|
description = S("Car Wheel"),
|
||||||
inventory_image = "automobiles_wheel_icon.png",
|
inventory_image = "automobiles_wheel_icon.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
8
automobiles_lib/locale/automobiles_lib.eo.tr
Normal file
8
automobiles_lib/locale/automobiles_lib.eo.tr
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# textdomain: automobiles_lib
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
Car Engine=Aŭta Motoro
|
||||||
|
Car Wheel=Aŭta Rado
|
||||||
|
|
||||||
|
### painter.lua ###
|
||||||
|
Automobiles Painter=Aŭta Pentrilo
|
8
automobiles_lib/locale/template.txt
Normal file
8
automobiles_lib/locale/template.txt
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# textdomain: automobiles_lib
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
Car Engine=
|
||||||
|
Car Wheel=
|
||||||
|
|
||||||
|
### painter.lua ###
|
||||||
|
Automobiles Painter=
|
@ -145,7 +145,7 @@ end)
|
|||||||
|
|
||||||
-- Make the actual thingy
|
-- Make the actual thingy
|
||||||
minetest.register_tool("automobiles_lib:painter", {
|
minetest.register_tool("automobiles_lib:painter", {
|
||||||
description = "Automobiles Painter",
|
description = S("Automobiles Painter"),
|
||||||
inventory_image = "automobiles_painter.png",
|
inventory_image = "automobiles_painter.png",
|
||||||
wield_scale = {x = 2, y = 2, z = 1},
|
wield_scale = {x = 2, y = 2, z = 1},
|
||||||
on_use = function(itemstack, user, pointed_thing)
|
on_use = function(itemstack, user, pointed_thing)
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
# textdomain: automobiles_motorcycle
|
||||||
|
|
||||||
|
### motorcycle_crafts.lua ###
|
||||||
|
Motorcycle Body=Motorcikla Korpo
|
||||||
|
Motorcycle Wheel=Motorcikla Rado
|
||||||
|
Motorcycle=Motorciklo
|
6
automobiles_motorcycle/locale/template.txt
Normal file
6
automobiles_motorcycle/locale/template.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# textdomain: automobiles_motorcycle
|
||||||
|
|
||||||
|
### motorcycle_crafts.lua ###
|
||||||
|
Motorcycle Body=
|
||||||
|
Motorcycle Wheel=
|
||||||
|
Motorcycle=
|
@ -1,21 +1,23 @@
|
|||||||
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
--
|
--
|
||||||
-- items
|
-- items
|
||||||
--
|
--
|
||||||
|
|
||||||
-- body
|
-- body
|
||||||
minetest.register_craftitem("automobiles_motorcycle:body",{
|
minetest.register_craftitem("automobiles_motorcycle:body",{
|
||||||
description = "Motorcycle body",
|
description = S("Motorcycle Body"),
|
||||||
inventory_image = "automobiles_motorcycle_body.png",
|
inventory_image = "automobiles_motorcycle_body.png",
|
||||||
})
|
})
|
||||||
-- wheel
|
-- wheel
|
||||||
minetest.register_craftitem("automobiles_motorcycle:wheel",{
|
minetest.register_craftitem("automobiles_motorcycle:wheel",{
|
||||||
description = "Motorcycle wheel",
|
description = S("Motorcycle Wheel"),
|
||||||
inventory_image = "automobiles_motorcycle_wheel_icon.png",
|
inventory_image = "automobiles_motorcycle_wheel_icon.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- motorcycle
|
-- motorcycle
|
||||||
minetest.register_craftitem("automobiles_motorcycle:motorcycle", {
|
minetest.register_craftitem("automobiles_motorcycle:motorcycle", {
|
||||||
description = "Motorcycle",
|
description = S("Motorcycle"),
|
||||||
inventory_image = "automobiles_motorcycle.png",
|
inventory_image = "automobiles_motorcycle.png",
|
||||||
liquids_pointable = false,
|
liquids_pointable = false,
|
||||||
|
|
||||||
@ -71,5 +73,3 @@ if minetest.get_modpath("default") then
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
6
automobiles_roadster/locale/automobiles_roadster.eo.tr
Normal file
6
automobiles_roadster/locale/automobiles_roadster.eo.tr
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# textdomain: automobiles_roadster
|
||||||
|
|
||||||
|
### roadster_crafts.lua ###
|
||||||
|
Roadster Body=Korpo de Roadster
|
||||||
|
Roadster Wheel=Rado de Roadster
|
||||||
|
Roadster=Roadster
|
6
automobiles_roadster/locale/template.txt
Normal file
6
automobiles_roadster/locale/template.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# textdomain: automobiles_roadster
|
||||||
|
|
||||||
|
### roadster_crafts.lua ###
|
||||||
|
Roadster Body=
|
||||||
|
Roadster Wheel=
|
||||||
|
Roadster=
|
@ -1,21 +1,23 @@
|
|||||||
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
--
|
--
|
||||||
-- items
|
-- items
|
||||||
--
|
--
|
||||||
|
|
||||||
-- body
|
-- body
|
||||||
minetest.register_craftitem("automobiles_roadster:roadster_body",{
|
minetest.register_craftitem("automobiles_roadster:roadster_body",{
|
||||||
description = "Roadster body",
|
description = S("Roadster Body"),
|
||||||
inventory_image = "roadster_body.png",
|
inventory_image = "roadster_body.png",
|
||||||
})
|
})
|
||||||
-- wheel
|
-- wheel
|
||||||
minetest.register_craftitem("automobiles_roadster:wheel",{
|
minetest.register_craftitem("automobiles_roadster:wheel",{
|
||||||
description = "Roadster wheel",
|
description = S("Roadster Wheel"),
|
||||||
inventory_image = "roadster_wheel.png",
|
inventory_image = "roadster_wheel.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- roadster
|
-- roadster
|
||||||
minetest.register_craftitem("automobiles_roadster:roadster", {
|
minetest.register_craftitem("automobiles_roadster:roadster", {
|
||||||
description = "Roadster",
|
description = S("Roadster"),
|
||||||
inventory_image = "automobiles_roadster.png",
|
inventory_image = "automobiles_roadster.png",
|
||||||
liquids_pointable = false,
|
liquids_pointable = false,
|
||||||
|
|
||||||
@ -72,5 +74,3 @@ if minetest.get_modpath("default") then
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user