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 Index = Utils.Translate(Index)
local Index = Utils.Translate("Index")
local Items = Utils.Translate(Items)
local Items = Utils.Translate("Items")
local WikiText = WikiText .. '[['.. Index .. '/' .. Items .. '|' .. Items .. ']]<br>'
local WikiText = WikiText .. '[['.. Index .. '/' .. Items .. '|' .. Items .. ']]<br>'

Revision as of 12:50, 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