forked from mtcontrib/homedecor_modpack
		
	Make (almost) all items translatable (#60)
* Make all items translatable * add more
This commit is contained in:
		@@ -1,11 +1,11 @@
 | 
			
		||||
# textdomain: homedecor_doors_and_gates
 | 
			
		||||
Plain Wooden Door=Echtholz-Zimmertür
 | 
			
		||||
Fancy Wood/Glass Door=moderne Tür mit Lichtausschnitt
 | 
			
		||||
French door, Oak-colored=französische Flügeltür (Eichendesign)
 | 
			
		||||
French door, Mahogany-colored=französische Flügeltür (Mahagonidesign)
 | 
			
		||||
French door, White=französische Flügeltür (weiß)
 | 
			
		||||
Basic white panel Door=weiße Zimmertür
 | 
			
		||||
Wrought Iron Gate/Door=schmiedeeisernes Tor
 | 
			
		||||
Fancy Wood/Glass Door=Moderne Tür mit Lichtausschnitt
 | 
			
		||||
French door, Oak-colored=Französische Flügeltür (Eichendesign)
 | 
			
		||||
French door, Mahogany-colored=Französische Flügeltür (Mahagonidesign)
 | 
			
		||||
French door, White=Französische Flügeltür (weiß)
 | 
			
		||||
Basic white panel Door=Weiße Zimmertür
 | 
			
		||||
Wrought Iron Gate/Door=Schmiedeeisernes Tor
 | 
			
		||||
Wooden Carolina door=Holztür, Carolina-Stil
 | 
			
		||||
Wooden door with glass insert, type 3=Tür mit Lichtausschnitt
 | 
			
		||||
Mahogany Closet Door=Mahagonilamellentür
 | 
			
		||||
 
 | 
			
		||||
@@ -43,9 +43,9 @@ homedecor.register("ceiling_tile", {
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
local rug_types = {
 | 
			
		||||
	{ "small",   "homedecor_small_rug.obj"    },
 | 
			
		||||
	{ "large",   homedecor.box.slab_y(0.0625) },
 | 
			
		||||
	{ "persian", homedecor.box.slab_y(0.0625) },
 | 
			
		||||
	{ S("small"),   "homedecor_small_rug.obj"    },
 | 
			
		||||
	{ S("large"),   homedecor.box.slab_y(0.0625) },
 | 
			
		||||
	{ S("persian"), homedecor.box.slab_y(0.0625) },
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
for _, rt in ipairs(rug_types) do
 | 
			
		||||
@@ -69,7 +69,7 @@ for _, rt in ipairs(rug_types) do
 | 
			
		||||
	end
 | 
			
		||||
 | 
			
		||||
	homedecor.register("rug_"..s, {
 | 
			
		||||
		description = S("Rug (@1)", S(s)),
 | 
			
		||||
		description = S("Rug (@1)", s),
 | 
			
		||||
		mesh = mesh,
 | 
			
		||||
		tiles = tiles,
 | 
			
		||||
		node_box = nodebox,
 | 
			
		||||
@@ -83,11 +83,11 @@ for _, rt in ipairs(rug_types) do
 | 
			
		||||
	})
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
local pot_colors = { "black", "green", "terracotta" }
 | 
			
		||||
local pot_colors = { S("black"), S("green"), S("terracotta") }
 | 
			
		||||
 | 
			
		||||
for _, p in ipairs(pot_colors) do
 | 
			
		||||
homedecor.register("flower_pot_"..p, {
 | 
			
		||||
	description = S("Flower Pot (@1)", S(p)),
 | 
			
		||||
	description = S("Flower Pot (@1)", p),
 | 
			
		||||
	mesh = "homedecor_flowerpot.obj",
 | 
			
		||||
	tiles = {
 | 
			
		||||
		"homedecor_flower_pot_"..p..".png",
 | 
			
		||||
@@ -525,7 +525,7 @@ for _, side in ipairs({"diagonal_left", "diagonal_right", "horizontal"}) do
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
homedecor.register("spiral_staircase", {
 | 
			
		||||
	description = "Spiral Staircase",
 | 
			
		||||
	description = S("Spiral Staircase"),
 | 
			
		||||
	mesh = "homedecor_spiral_staircase.obj",
 | 
			
		||||
	wield_scale = { x=0.4, y=0.4, z=0.4 },
 | 
			
		||||
	tiles = {
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=Deckenfarbe
 | 
			
		||||
Drop-Ceiling Tile=Abgehängte Deckenkachel
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=Teppich (@1)
 | 
			
		||||
black=schwarz
 | 
			
		||||
green=grün
 | 
			
		||||
terracotta=Terrakotta
 | 
			
		||||
Flower Pot (@1)=Blumentopf (@1)
 | 
			
		||||
Rose=Rose
 | 
			
		||||
Tulip=Tulpe
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=Schmiedeeisen
 | 
			
		||||
diagonal=diagonal
 | 
			
		||||
horizontal=horizontal
 | 
			
		||||
Banister for Stairs (@1, @2)=Treppengeländer (@1, @2)
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=nicht genügend Platz
 | 
			
		||||
Japanese tatami=Japanische Tatami
 | 
			
		||||
Dartboard=Dartscheibe
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=Pintura de techo con textura
 | 
			
		||||
Drop-Ceiling Tile=Azulejo de techo
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=Tapete (@1)
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=Maceta (@1)
 | 
			
		||||
Rose=Rosa
 | 
			
		||||
Tulip=Tulipán
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=hierro forjado
 | 
			
		||||
diagonal=diagonal
 | 
			
		||||
horizontal=horizontal
 | 
			
		||||
Banister for Stairs (@1, @2)=Barandilla para escaleras (@1, @2)
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=no hay suficiente espacio
 | 
			
		||||
Japanese tatami=Tatami
 | 
			
		||||
Dartboard=Diana
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=Peinture pour plafonds
 | 
			
		||||
Drop-Ceiling Tile=Plaque de plafond
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=Tapis (@1)
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=Pot de fleur (@1)
 | 
			
		||||
Rose=Rose
 | 
			
		||||
Tulip=Tulipe
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=fer forgé
 | 
			
		||||
diagonal=diagonal
 | 
			
		||||
horizontal=horizontal
 | 
			
		||||
Banister for Stairs (@1, @2)=Rampe d'escalier (@1, @2)
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=pas assez d'espace
 | 
			
		||||
Japanese tatami=Tatami
 | 
			
		||||
Dartboard=Jeu de fléchettes
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=Vernice con trama per il soffitto
 | 
			
		||||
Drop-Ceiling Tile=Piastrella del controsoffitto
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=
 | 
			
		||||
Rose=
 | 
			
		||||
Tulip=
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=Palo di ferro battuto
 | 
			
		||||
diagonal=
 | 
			
		||||
horizontal=
 | 
			
		||||
Banister for Stairs (@1, @2)=
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=
 | 
			
		||||
Japanese tatami=
 | 
			
		||||
Dartboard=
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=Cat Siling Bertekstur
 | 
			
		||||
Drop-Ceiling Tile=Kepingan Siling
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=Ambal (@1)
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=Pasu Bunga (@1)
 | 
			
		||||
Rose=Ros
 | 
			
		||||
Tulip=Tulip
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=Besi Tempaan
 | 
			
		||||
diagonal=pepenjuru
 | 
			
		||||
horizontal=mendatar
 | 
			
		||||
Banister for Stairs (@1, @2)=Selusur Tangga (@1, @2)
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=Tidak cukup ruang
 | 
			
		||||
Japanese tatami=Tatami Jepun
 | 
			
		||||
Dartboard=Papan Damak
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=Pintura Texturizada do Teto
 | 
			
		||||
Drop-Ceiling Tile=Placa de Teto
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=Carpete (@1)
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=Vaso de Flores (@1)
 | 
			
		||||
Rose=Rosa
 | 
			
		||||
Tulip=Tulipa
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=ferro forjado
 | 
			
		||||
diagonal=diagonal
 | 
			
		||||
horizontal=horizontal
 | 
			
		||||
Banister for Stairs (@1, @2)=Corrimão para Escadas (@1, @2)
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=espaço insuficiente
 | 
			
		||||
Japanese tatami=Tatami Japonês
 | 
			
		||||
Dartboard=Alvo
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=Pintura Texturizada do Teto
 | 
			
		||||
Drop-Ceiling Tile=Placa de Teto
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=Carpete (@1)
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=Vaso de Flores (@1)
 | 
			
		||||
Rose=Rosa
 | 
			
		||||
Tulip=Tulipa
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=ferro forjado
 | 
			
		||||
diagonal=diagonal
 | 
			
		||||
horizontal=horizontal
 | 
			
		||||
Banister for Stairs (@1, @2)=Corrimão para Escadas (@1, @2)
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=espaço insuficiente
 | 
			
		||||
Japanese tatami=Tatami Japonês
 | 
			
		||||
Dartboard=Alvo
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=Текстурированная потолочная краска
 | 
			
		||||
Drop-Ceiling Tile=Потолочная плитка
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=Ковёр (@1)
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=Цветочный горшок (@1)
 | 
			
		||||
Rose=Роза
 | 
			
		||||
Tulip=Тюльпан
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=кованное железо
 | 
			
		||||
diagonal=диагональный
 | 
			
		||||
horizontal=горизонтальный
 | 
			
		||||
Banister for Stairs (@1, @2)=Перила для ступеней (@1, @2)
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=не хватает места
 | 
			
		||||
Japanese tatami=Японский татами
 | 
			
		||||
Dartboard=Мишень для дротиков
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=纹理天花板漆
 | 
			
		||||
Drop-Ceiling Tile=落地砖
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=地毯(@1)
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=花盆(@1)
 | 
			
		||||
Rose=玫瑰
 | 
			
		||||
Tulip=郁金香
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=锻铁
 | 
			
		||||
diagonal=对角线的
 | 
			
		||||
horizontal=水平的
 | 
			
		||||
Banister for Stairs (@1, @2)=楼梯栏杆(@1,@2)
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=空间不足
 | 
			
		||||
Japanese tatami=日本榻榻米
 | 
			
		||||
Dartboard=飞镖板
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,13 @@
 | 
			
		||||
# textdomain: homedecor_misc
 | 
			
		||||
Textured Ceiling Paint=
 | 
			
		||||
Drop-Ceiling Tile=
 | 
			
		||||
small=
 | 
			
		||||
large=
 | 
			
		||||
persian=
 | 
			
		||||
Rug (@1)=
 | 
			
		||||
black=
 | 
			
		||||
green=
 | 
			
		||||
terracotta=
 | 
			
		||||
Flower Pot (@1)=
 | 
			
		||||
Rose=
 | 
			
		||||
Tulip=
 | 
			
		||||
@@ -31,6 +37,7 @@ wrought iron=
 | 
			
		||||
diagonal=
 | 
			
		||||
horizontal=
 | 
			
		||||
Banister for Stairs (@1, @2)=
 | 
			
		||||
Spiral Staircase=
 | 
			
		||||
not enough space=
 | 
			
		||||
Japanese tatami=
 | 
			
		||||
Dartboard=
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
local S = minetest.get_translator("plasmascreen")
 | 
			
		||||
local S = minetest.get_translator("homedecor_plasmascreen")
 | 
			
		||||
 | 
			
		||||
local sc_disallow = minetest.get_modpath("screwdriver") and screwdriver.disallow or nil
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=Jemanden gehört schon die
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=Jemanden gehört schon die Stelle, wo das mittlere oder ferne Stück hingehen würde.
 | 
			
		||||
Long Sofa=Langes Sofa
 | 
			
		||||
No room to place the sofa!=Kein Platz, um das Sofa zu platzieren!
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=Sofa
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=Alguien ya es dueño del lu
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=Alguien ya es dueño del lugar donde va la cabecera.
 | 
			
		||||
Long Sofa=Sofá largo
 | 
			
		||||
No room to place the sofa!=¡No hay lugar para colocar el sofá!
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=Sofá
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=Quelqu'un d'autre est propr
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=Quelqu'un d'autre est propriétaire de l'endroit où va le milieu ou l'autre bout !
 | 
			
		||||
Long Sofa=Canapé long
 | 
			
		||||
No room to place the sofa!=Pas assez de place pour poser le canapé !
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=Canapé
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=
 | 
			
		||||
Long Sofa=
 | 
			
		||||
No room to place the sofa!=
 | 
			
		||||
Sofa=
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=sofà
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=Tempat untuk letak hujung o
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=Tempat untuk letak pertengahan atau hujung objek itu kawasan kepunyaan orang lain!
 | 
			
		||||
Long Sofa=Sofa Panjang
 | 
			
		||||
No room to place the sofa!=Tiada ruang untuk letak sofa!
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=Sofa
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=Alguém já é proprietári
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=Alguém já é proprietário do local onde a cabeceira vai.
 | 
			
		||||
Long Sofa=Sofá Grande
 | 
			
		||||
No room to place the sofa!=Sem espaço para colocar o sofá!
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=Sofá
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=Alguém já é proprietári
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=Alguém já é proprietário do local onde a cabeceira vai.
 | 
			
		||||
Long Sofa=Sofá Grande
 | 
			
		||||
No room to place the sofa!=Sem espaço para colocar o sofá!
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=Sofá
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=Кому-то другом
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=Кому-то другому принадлежит точка, куда выходит средний или дальний конец!
 | 
			
		||||
Long Sofa=Длинный диван
 | 
			
		||||
No room to place the sofa!=Нет места для дивана!
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=Диван
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=另一端去的地方是别
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=中间或远端去的地方是别人的!
 | 
			
		||||
Long Sofa=长沙发
 | 
			
		||||
No room to place the sofa!=没有地方放沙发!
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=沙发
 | 
			
		||||
 
 | 
			
		||||
@@ -4,4 +4,12 @@ Someone else owns the spot where the other end goes!=
 | 
			
		||||
Someone else owns the spot where the middle or far end goes!=
 | 
			
		||||
Long Sofa=
 | 
			
		||||
No room to place the sofa!=
 | 
			
		||||
Deck Chair=
 | 
			
		||||
Deck Chair (blue striped)=
 | 
			
		||||
Simple Bench=
 | 
			
		||||
Garden Bench (style 1)=
 | 
			
		||||
Garden Bench (style 2)=
 | 
			
		||||
Kitchen chair=
 | 
			
		||||
Basic office chair=
 | 
			
		||||
Upscale office chair=
 | 
			
		||||
Sofa=
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,8 @@
 | 
			
		||||
-- this component contains all of the random types of seating previously
 | 
			
		||||
-- scattered among homedecor's other mods
 | 
			
		||||
 | 
			
		||||
local S = minetest.get_translator("homedecor_seating")
 | 
			
		||||
 | 
			
		||||
local dc_cbox = {
 | 
			
		||||
	type = "fixed",
 | 
			
		||||
	fixed = { -0.5, -0.5, -0.5, 0.5, 0, 1 }
 | 
			
		||||
@@ -9,7 +11,7 @@ local dc_cbox = {
 | 
			
		||||
homedecor.register("deckchair", {
 | 
			
		||||
	mesh = "homedecor_deckchair.obj",
 | 
			
		||||
	tiles = {"homedecor_deckchair.png"},
 | 
			
		||||
	description = "Deck Chair",
 | 
			
		||||
	description = S("Deck Chair"),
 | 
			
		||||
	groups = { snappy = 3, dig_tree=2 },
 | 
			
		||||
	expand = { forward="placeholder" },
 | 
			
		||||
	_sound_def = {
 | 
			
		||||
@@ -29,7 +31,7 @@ minetest.register_alias("homedecor:deckchair_head", "air")
 | 
			
		||||
homedecor.register("deckchair_striped_blue", {
 | 
			
		||||
	mesh = "homedecor_deckchair.obj",
 | 
			
		||||
	tiles = {"homedecor_deckchair_striped_blue.png"},
 | 
			
		||||
	description = "Deck Chair (blue striped)",
 | 
			
		||||
	description = S("Deck Chair (blue striped)"),
 | 
			
		||||
	groups = { snappy = 3, dig_tree=2 },
 | 
			
		||||
	expand = { forward="placeholder" },
 | 
			
		||||
	_sound_def = {
 | 
			
		||||
@@ -45,7 +47,7 @@ homedecor.register("deckchair_striped_blue", {
 | 
			
		||||
 | 
			
		||||
homedecor.register("simple_bench", {
 | 
			
		||||
	tiles = { "homedecor_generic_wood_old.png" },
 | 
			
		||||
	description = "Simple Bench",
 | 
			
		||||
	description = S("Simple Bench"),
 | 
			
		||||
	groups = {snappy=3, dig_tree=2},
 | 
			
		||||
	node_box = {
 | 
			
		||||
	type = "fixed",
 | 
			
		||||
@@ -82,7 +84,7 @@ homedecor.register("bench_large_1", {
 | 
			
		||||
		"homedecor_generic_wood_old.png",
 | 
			
		||||
		"homedecor_generic_metal_wrought_iron.png"
 | 
			
		||||
	},
 | 
			
		||||
	description = "Garden Bench (style 1)",
 | 
			
		||||
	description = S("Garden Bench (style 1)"),
 | 
			
		||||
	inventory_image = "homedecor_bench_large_1_inv.png",
 | 
			
		||||
	groups = { snappy = 3, dig_tree=2 },
 | 
			
		||||
	expand = { right="placeholder" },
 | 
			
		||||
@@ -111,7 +113,7 @@ local bl2_cbox = {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
homedecor.register("bench_large_2", {
 | 
			
		||||
	description = "Garden Bench (style 2)",
 | 
			
		||||
	description = S("Garden Bench (style 2)"),
 | 
			
		||||
	mesh = "homedecor_bench_large_2.obj",
 | 
			
		||||
	tiles = { "homedecor_generic_wood_old.png" },
 | 
			
		||||
	inventory_image = "homedecor_bench_large_2_inv.png",
 | 
			
		||||
@@ -134,7 +136,7 @@ local kc_cbox = {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
homedecor.register("kitchen_chair_wood", {
 | 
			
		||||
	description = "Kitchen chair",
 | 
			
		||||
	description = S("Kitchen chair"),
 | 
			
		||||
	mesh = "homedecor_kitchen_chair.obj",
 | 
			
		||||
	tiles = {
 | 
			
		||||
		homedecor.plain_wood,
 | 
			
		||||
@@ -156,7 +158,7 @@ homedecor.register("kitchen_chair_wood", {
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
homedecor.register("kitchen_chair_padded", {
 | 
			
		||||
	description = "Kitchen chair",
 | 
			
		||||
	description = S("Kitchen chair"),
 | 
			
		||||
	mesh = "homedecor_kitchen_chair.obj",
 | 
			
		||||
	tiles = {
 | 
			
		||||
		homedecor.plain_wood,
 | 
			
		||||
@@ -196,8 +198,8 @@ local ofchairs_cbox = {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
local chairs = {
 | 
			
		||||
	{ "basic",   "Basic office chair" },
 | 
			
		||||
	{ "upscale", "Upscale office chair" },
 | 
			
		||||
	{ "basic",   S("Basic office chair") },
 | 
			
		||||
	{ "upscale", S("Upscale office chair") },
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
for _, c in pairs(chairs) do
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user