forked from VoxeLibre/VoxeLibre
Add new help text for stained glass panes
This commit is contained in:
parent
5c1717971b
commit
15880db548
|
@ -172,17 +172,17 @@ local canonical_color = "blue"
|
||||||
-- Register glass pane (stained and unstained)
|
-- Register glass pane (stained and unstained)
|
||||||
local pane = function(description, node, append)
|
local pane = function(description, node, append)
|
||||||
local texture1, longdesc, entry_name, create_entry
|
local texture1, longdesc, entry_name, create_entry
|
||||||
longdesc = S("Glass panes are thin layers of glass which neatly connect to their neighbors as you build them.")
|
|
||||||
local is_canonical = true
|
local is_canonical = true
|
||||||
-- Special case: Default (unstained) glass texture
|
-- Special case: Default (unstained) glass texture
|
||||||
if append == "_natural" then
|
if append == "_natural" then
|
||||||
texture1 = "default_glass.png"
|
texture1 = "default_glass.png"
|
||||||
|
longdesc = S("Glass panes are thin layers of glass which neatly connect to their neighbors as you build them.")
|
||||||
else
|
else
|
||||||
if append ~= "_"..canonical_color then
|
if append ~= "_"..canonical_color then
|
||||||
is_canonical = false
|
is_canonical = false
|
||||||
longdesc = nil
|
|
||||||
create_entry = false
|
create_entry = false
|
||||||
else
|
else
|
||||||
|
longdesc = S("Stained glass panes are thin layers of stained glass which neatly connect to their neighbors as you build them. They come in many different colors.")
|
||||||
entry_name = S("Stained Glass Pane")
|
entry_name = S("Stained Glass Pane")
|
||||||
end
|
end
|
||||||
texture1 = "mcl_core_glass"..append..".png"
|
texture1 = "mcl_core_glass"..append..".png"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# textdomain: xpanes
|
# textdomain: xpanes
|
||||||
Glass panes are thin layers of glass which neatly connect to their neighbors as you build them.=
|
Glass panes are thin layers of glass which neatly connect to their neighbors as you build them.=
|
||||||
|
Stained glass panes are thin layers of stained glass which neatly connect to their neighbors as you build them. They come in many different colors.=
|
||||||
Iron Bars=
|
Iron Bars=
|
||||||
Iron bars neatly connect to their neighbors as you build them.=
|
Iron bars neatly connect to their neighbors as you build them.=
|
||||||
Glass Pane=
|
Glass Pane=
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# textdomain: xpanes
|
# textdomain: xpanes
|
||||||
Glass panes are thin layers of glass which neatly connect to their neighbors as you build them.=Glasscheiben sind dünne Glasschichten, die sich mit ihren Nachbarn automatisch verbinden.
|
Glass panes are thin layers of glass which neatly connect to their neighbors as you build them.=Glasscheiben sind dünne Glasschichten, die sich mit ihren Nachbarn automatisch verbinden.
|
||||||
|
Stained glass panes are thin layers of stained glass which neatly connect to their neighbors as you build them. They come in many different colors.=Farbglasscheiben sind dünne Schichten aus Farbglas, die sich mit ihren Nachbarn automatisch verbinden. Es gibt sie in vielen verschiedenen Farben.
|
||||||
Iron Bars=Eisenstangen
|
Iron Bars=Eisenstangen
|
||||||
Iron bars neatly connect to their neighbors as you build them.=Eisenstangen verbinden sich mit den Nachbarn, wenn sie gebaut werden.
|
Iron bars neatly connect to their neighbors as you build them.=Eisenstangen verbinden sich mit den Nachbarn, wenn sie gebaut werden.
|
||||||
Glass Pane=Glasscheibe
|
Glass Pane=Glasscheibe
|
||||||
|
|
Loading…
Reference in New Issue