İçeriğe atla

Modül:Evethayır

Page korumaya alındı
Vikipedi, özgür ansiklopedi
Modül belgelemesi[gör] [değiştir] [geçmiş] [temizle]

Bu modül birçok şablonda ve modülde kullanılmaktadır.

-- Function allowing for consistent treatment of boolean-like wikitext input.
-- It works similarly to the template {{yesno}}.

returnfunction(val,default)
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
-- following line.
val=type(val)=='string'andval:lower()orval
ifval==nilthen
returnnil
elseifval==true
orval=='yes'
orval=='y'
orval=='true'
orval=='t'
orval=='on'
orval=='evet'
orval=='e'
orval=='açık'
ortonumber(val)==1
then
returntrue
elseifval==false
orval=='no'
orval=='n'
orval=='false'
orval=='f'
orval=='off'
orval=='hayır'
orval=='h'
orval=='kapalı'
ortonumber(val)==0
then
returnfalse
else
returndefault
end
end