မော်ဂျူး:Pp-move-indef
ပုံပန်းသွင်ပြင်
Lua error in မော်ဂျူး:Documentation at line 144: message: type error in message cfg.container (string expected, got nil).
-- This module implements [[Template:Pp-move-indef]].
local p = {}
function p.main(title)
if type(title) == 'string' then
title = mw.title.new(title)
elseif type(title) ~= 'table' or not title.text or not title.getContent then
-- The title parameter is absent or not a title object. It could be a
-- frame object if we are being called from #invoke.
title = mw.title.getCurrentTitle()
end
local level = title
and title.protectionLevels
and title.protectionLevels.move
and title.protectionLevels.move[1]
local namespace = title and title.namespace
local category
if level == 'sysop' or level == 'templateeditor' then
if namespace == 2 or namespace == 3 then
category = 'ရွှေ့ပြောင်းခြင်းမှ ကာကွယ်ထားသော ဝီကီပီးဒီးယား အသုံးပြုသူနှင့် အသုံးပြုသူ ဆွေးနွေးချက် စာမျက်နှာများ'
elseif namespace == 4 or namepace == 12 then
category = 'ရွှေ့ပြောင်းခြင်းမှ ကာကွယ်ထားသော ဝီကီပီးဒီးယား ပရောဂျက် စာမျက်နှာများ'
elseif namespace == 100 then
category = 'Wikipedia move-protected portals'
elseif title.isTalkPage then
category = 'ရွှေ့ပြောင်းခြင်းမှ ကာကွယ်ထားသော ဝီကီပီးဒီးယား ဆွေးနွေးချက် စာမျက်နှာများ'
else
category = 'ရွှေ့ပြောင်းခြင်းမှ အကန့်အသတ်မရှိ ကာကွယ်ထားသော ဝီကီပီးဒီးယား စာမျက်နှာများ'
end
else
category = 'ကာကွယ်မှုတမ်းပလိတ် မှားယွင်းနေသော ဝီကီပီးဒီးယားစာမျက်နှာများ'
end
return string.format(
'[[%s:%s|%s]]',
mw.site.namespaces[14].name, -- "Category"
category,
title.text -- equivalent of {{PAGENAME}}
)
end
return p