Difference between revisions of "Module:Infobox/fr"

From Minetest Wiki
Jump to navigation Jump to search
(Added block)
 
(FnControlOption changed the content model of the page Module:Infobox/fr from "plain text" to "Scribunto")
Tag: content model change
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
return {
 
return {
 
     block = {
 
     block = {
         type = "Type",
+
         {id = "type", name = "Type"},
         drops = "[[Mining/fr#Lâchers|Drop]]",
+
         {id = "drops", name = "[[Mining/fr#Lâchers|Drop]]"},
         physics = "[[:Category:Falling|Physique]]",
+
         {id = "physics", name = "[[:Category:Falling|Physique]]"},
         luminance = "[[:Category:Luminous|Luminance]]",
+
         {id = "luminance", name = "[[:Category:Luminous|Luminance]]"},
         flammable = "[[:Category:Flammable|Imflammable]]",
+
         {id = "flammable", name = "[[:Category:Flammable|Imflammable]]"},
         generated = "[[:Category:Generated blocks|Bloc généré]]",
+
         {id = "generated", name = "[[:Category:Generated blocks|Bloc généré]]"},
         renewable = "Renouvelable",
+
         {id = "renewable", name = "Renouvelable"},
         stackable = "Empilable",
+
         {id = "stackable", name = "Empilable"},
         itemstring = "[[Itemstrings/fr|Itemstring]]",
+
         {id = "itemstring", name = "[[Itemstrings/fr|Itemstring]]"},
 
     },
 
     },
 
}
 
}

Latest revision as of 17:53, 7 June 2022

Documentation for this module may be created at Module:Infobox/fr/doc

return {
    block = {
        {id = "type", name = "Type"},
        {id = "drops", name = "[[Mining/fr#Lâchers|Drop]]"},
        {id = "physics", name = "[[:Category:Falling|Physique]]"},
        {id = "luminance", name = "[[:Category:Luminous|Luminance]]"},
        {id = "flammable", name = "[[:Category:Flammable|Imflammable]]"},
        {id = "generated", name = "[[:Category:Generated blocks|Bloc généré]]"},
        {id = "renewable", name = "Renouvelable"},
        {id = "stackable", name = "Empilable"},
        {id = "itemstring", name = "[[Itemstrings/fr|Itemstring]]"},
    },
}