Diferencia entre revisiones de «Módulo:Yesno»

48 bytes añadidos ,  24 dic 2023
m
1 revisión importada
m (1 revisión importada)
m (1 revisión importada)
 
(No se muestran 3 ediciones intermedias de 2 usuarios)
Línea 1: Línea 1:
-- Function allowing for consistent treatment of boolean-like wikitext input.
-- Función que proporciona un tratamiento consistente de entrada de wikitexto similar al booleano.
-- It works similarly to the template {{yesno}}.


return function (val, default)
return function (val, default)
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
-- 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
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
-- following line.
-- following line.
Línea 12: Línea 11:
or val == 'yes'
or val == 'yes'
or val == 'y'
or val == 'y'
or val == 'sí'
or val == 'si'
or val == 's'
or val == 'true'
or val == 'true'
or val == 'verdad'
or val == 't'
or val == 't'
or val == 'on'
or tonumber(val) == 1
or tonumber(val) == 1
then
then
Línea 22: Línea 24:
or val == 'n'
or val == 'n'
or val == 'false'
or val == 'false'
or val == 'falso'
or val == 'f'
or val == 'f'
or val == 'off'
or val == 'off'