Module:Yesno: Difference between revisions

Jump to navigation Jump to search
151 bytes removed ,  28 February 2018
+support for on/off
(صفحه‌ای تازه حاوی «-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return func...» ایجاد کرد)
 
(+support for on/off)
Line 6: Line 6:
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
-- following line.
-- following line.
val = type(val) == 'string' and mw.ustring.lower(val) or val
val = type(val) == 'string' and val:lower() or val
if val == nil then
if val == nil then
return nil
return nil
Line 14: Line 14:
or val == 'true'
or val == 'true'
or val == 't'
or val == 't'
or val == 'بله'
or val == 'on'
or val == 'آره'
or val == 'درست'
or val == 'صحیح'
or tonumber(val) == 1
or tonumber(val) == 1
then
then
Line 26: Line 23:
or val == 'false'
or val == 'false'
or val == 'f'
or val == 'f'
or val == 'خیر'
or val == 'off'
or val == 'نه'
or val == 'غلط'
or val == 'اشتباه'
or tonumber(val) == 0
or tonumber(val) == 0
then
then
Anonymous user

Navigation menu