mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-31 02:56:26 -04:00
Merge pull request #1 from Xanthin/translation
Some missing translations and a fix for beds translation
This commit is contained in:
commit
5c718db7a0
4 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
local S = default.intllib
|
local S = beds.intllib
|
||||||
|
|
||||||
-- fancy shaped bed
|
-- fancy shaped bed
|
||||||
beds.register_bed("beds:fancy_bed", {
|
beds.register_bed("beds:fancy_bed", {
|
||||||
|
|
|
@ -55,6 +55,7 @@ Sapling =
|
||||||
Leaves =
|
Leaves =
|
||||||
Apple =
|
Apple =
|
||||||
Jungle Tree =
|
Jungle Tree =
|
||||||
|
Junglewood Planks =
|
||||||
Jungle Leaves =
|
Jungle Leaves =
|
||||||
Jungle Sapling =
|
Jungle Sapling =
|
||||||
Pine Tree =
|
Pine Tree =
|
||||||
|
@ -62,6 +63,7 @@ Pinewood Planks =
|
||||||
Pine Needles =
|
Pine Needles =
|
||||||
Pine Sapling =
|
Pine Sapling =
|
||||||
Coal Ore =
|
Coal Ore =
|
||||||
|
Coal Block =
|
||||||
Iron Ore =
|
Iron Ore =
|
||||||
Steel Block =
|
Steel Block =
|
||||||
Copper Ore =
|
Copper Ore =
|
||||||
|
@ -98,6 +100,7 @@ Bookshelf =
|
||||||
@1 moves stuff to bookshelf at @2 =
|
@1 moves stuff to bookshelf at @2 =
|
||||||
@1 takes stuff from bookshelf at @2 =
|
@1 takes stuff from bookshelf at @2 =
|
||||||
@1 wrote \"@2\" to sign at @3 =
|
@1 wrote \"@2\" to sign at @3 =
|
||||||
|
Sign =
|
||||||
Ladder =
|
Ladder =
|
||||||
Wooden Fence =
|
Wooden Fence =
|
||||||
Glass =
|
Glass =
|
||||||
|
|
|
@ -93,10 +93,10 @@ function doors.register_door(name, def)
|
||||||
local pn = placer:get_player_name()
|
local pn = placer:get_player_name()
|
||||||
local meta = minetest.get_meta(pt)
|
local meta = minetest.get_meta(pt)
|
||||||
meta:set_string("doors_owner", pn)
|
meta:set_string("doors_owner", pn)
|
||||||
meta:set_string("infotext", "Owned by "..pn)
|
meta:set_string("infotext", S("Owned by @1", meta:get_string("doors_owner")))
|
||||||
meta = minetest.get_meta(pt2)
|
meta = minetest.get_meta(pt2)
|
||||||
meta:set_string("doors_owner", pn)
|
meta:set_string("doors_owner", pn)
|
||||||
meta:set_string("infotext", "Owned by "..pn)
|
meta:set_string("infotext", S("Owned by @1", meta:get_string("doors_owner")))
|
||||||
end
|
end
|
||||||
|
|
||||||
if not minetest.setting_getbool("creative_mode") then
|
if not minetest.setting_getbool("creative_mode") then
|
||||||
|
|
|
@ -4,3 +4,4 @@ Steel Door =
|
||||||
Glass Door =
|
Glass Door =
|
||||||
Obsidian Glass Door =
|
Obsidian Glass Door =
|
||||||
Trapdoor =
|
Trapdoor =
|
||||||
|
Owned by @1 =
|
||||||
|
|
Loading…
Add table
Reference in a new issue