Module:DataDiagnostic: Difference between revisions
From Eco - English Wiki
| [checked revision] | [checked revision] |
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
function p.SubIndexPagesList() | function p.SubIndexPagesList() | ||
local WikiText ='' | local WikiText ='' | ||
local WikiText = WikiText .. '[[Index/Items|Items]]<br>' | local Index = Utils.Translate(Index) | ||
local Items = Utils.Translate(Items) | |||
local WikiText = WikiText .. '[['.. Index .. '/' .. Items .. '|' .. Items .. ']]<br>' | |||
return WikiText | return WikiText | ||
Revision as of 12:47, 9 February 2026
Documentation for this module may be created at Module:DataDiagnostic/doc
local p = {}
local Utils = require('Module:Utils')
local Lang = Utils.getLanguageName()
function p.SubIndexPagesList()
local WikiText =''
local Index = Utils.Translate(Index)
local Items = Utils.Translate(Items)
local WikiText = WikiText .. '[['.. Index .. '/' .. Items .. '|' .. Items .. ']]<br>'
return WikiText
end
return p