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

פון המכלול
קפיצה לניווט קפיצה לחיפוש
אין תקציר עריכה
אין תקציר עריכה
 
שורה 18: שורה 18:
or val == 'on'
or val == 'on'
or val == 'פעיל'
or val == 'פעיל'
or val == 'מיט'
or tonumber(val) == 1
or tonumber(val) == 1
then
then
שורה 31: שורה 32:
or val == 'off'
or val == 'off'
or val == 'כבוי'
or val == 'כבוי'
or val == 'אן'
or tonumber(val) == 0
or tonumber(val) == 0
then
then

יעצטיגע רעוויזיע זינט 13:00, 28 מערץ 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 val == 'מיט'
		or tonumber(val) == 1
	then
		return true
	elseif val == false
		or val == 'no'
		or val == 'ניין'
        or val == 'נישט'
		or val == 'לא'
		or val == 'n'
		or val == 'false'
		or val == 'f'
		or val == 'off'
		or val == 'כבוי'
		or val == 'אן'
		or tonumber(val) == 0
	then
		return false
	else
		return default
	end
end