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