אונטערשייד צווישן ווערסיעס פון "יחידה:Yesno"

פון המכלול
קפיצה לניווט קפיצה לחיפוש
ק (1 רעוויזיע אימפארטירט: אימפארטירט פון די ענגלישע וויקיפעדיע, זע ביישטייערער ליסטע)
ק (הגהה)
שורה 6: שורה 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 val:lower() or val
val = type(val) == 'string' and mw.ustring.lower(val) or val
if val == nil then
if val == nil then
return nil
return nil
elseif val == true  
elseif val == true  
or val == 'yes'
or val == 'yes'
or val == 'יא'
or val == 'כן'
or val == 'כן'
or val == 'y'
or val == 'y'
שורה 22: שורה 23:
elseif val == false
elseif val == false
or val == 'no'
or val == 'no'
or val == 'ניין'
or val == 'לא'
or val == 'לא'
or val == 'n'
or val == 'n'

רעוויזיע פון 19:00, 22 יאנואר 2023

מען קען שאפן דאקומענטאציע פאר דעם מאדול ביי יחידה:Yesno/דאק

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

return function (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' and mw.ustring.lower(val) or val
	if val == nil then
		return nil
	elseif val == true 
		or val == 'yes'
		or val == 'יא'
		or val == 'כן'
		or val == 'y'
		or val == 'true'
		or val == 't'
		or val == 'on'
		or val == 'פעיל'
		or tonumber(val) == 1
	then
		return true
	elseif val == false
		or val == 'no'
		or val == 'ניין'
		or val == 'לא'
		or val == 'n'
		or val == 'false'
		or val == 'f'
		or val == 'off'
		or val == 'כבוי'
		or tonumber(val) == 0
	then
		return false
	else
		return default
	end
end