مۆدیوول:Pp-move-indef
ڕواڵەت
بەڵگەدارکردنی مۆدیوول[دروست بکە]
لەوانەیە بتەوێ پەڕەیەکی بەڵگەدارکردن بۆ ئەم مۆدیوولی سکریبونتۆیە دروست بکەی. دەستکاریکەران دەتوانن ئەم مۆدیوولە لە پەڕەکانی خۆڵەپەتانێ (دروست بکە | ئاوێنە) و ئەزموون (دروست بکە) تاقی بکەنەوە. تکایە پۆلەکان بە ژێرپەڕەی /doc زیاد بکە. ژێرپەڕەکانی ئەم مۆدیوول. |
-- 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 = 'دەروازە پارێزراوەکانی ویکیپیدیا لە گواستنەوە'
elseif title.isTalkPage then
category = 'پەڕە پارێزراوەکانی وتووێژ لە گواستنەوە'
else
category = 'ئەو پەڕانەی ویکیپیدیا کە بە بەردەوامی لە گواستنەوە پارێزراون'
end
else
category = 'Wikipedia pages with incorrect protection templates'
end
return string.format(
'[[%s:%s|%s]]',
mw.site.namespaces[14].name, -- "Category"
category,
title.text -- equivalent of {{PAGENAME}}
)
end
return p