62 737
modifications
mAucun résumé des modifications |
mAucun résumé des modifications |
||
Ligne 13 : | Ligne 13 : | ||
namespace = mw.title.getCurrentTitle().namespace | namespace = mw.title.getCurrentTitle().namespace | ||
} | } | ||
local abb = require('Module:Abréviation') | |||
-- l'objet principal à retourner | -- l'objet principal à retourner | ||
Ligne 79 : | Ligne 81 : | ||
local subhead = nil | local subhead = nil | ||
if part.subhead then | if part.subhead then | ||
local subheadText = | local subheadText = abb.links({ | ||
getValue(part.subhead.games, part), | getValue(part.subhead.games, part), | ||
part.subhead.link, | part.subhead.link, | ||
Ligne 699 : | Ligne 701 : | ||
for i, j in pairs(moduledata.parts) do | for i, j in pairs(moduledata.parts) do | ||
infobox:node(p.buildblock(j)) | infobox:node(p.buildblock(j)) | ||
end | |||
local categories = moduledata.categories | |||
if categories then | |||
categories = abb.categories({ categories.games, categories.name }) | |||
else | |||
categories = '' | |||
end | end | ||
return tostring(infobox) | return tostring(infobox) .. categories | ||
end | end | ||
return p | return p |
modifications