Module:අභිධානය
Appearance
- පහත දැක්වෙන උපදෙස්, Module:අභිධානය/documentation හි පිහිටා ඇත. Module:අභිධානය/documentation]]. [සංස්කරණය] Categories were auto-generated by Module:documentation. [edit]
- ප්රයෝජනවත් සබැඳි: උප පිටු ලැයිස්තුව • සබැඳි • transclusions • testcases • sandbox
title සමඟ ගනුදෙනු කිරීම සඳහා ලියන ලදී.
local namespace = mw.title.getCurrentTitle().nsText
local p = {} -- p stands for package
function p.getCurrentTitle()
return ""
end
function p.getNsText()
local fullpagename = mw.title.getCurrentTitle().fullText
local title = mw.title.getCurrentTitle();
local namespace = title.nsText
local nsCheck = "උපග්රන්ථය:"
local nsReturn = "උපග්රන්ථය"
if (namespace == '' ) then
if fullpagename:sub(1, 31) == nsCheck then
return nsReturn
else
return namespace
end
else
return namespace
end
end
return p