Jump to content

All translations

Enter a message name below to show all available translations.

Message

Found one translation.

NameCurrent message text
 h English (en)-- A nil value always returns nil:
yesno(nil)
</syntaxhighlight>
String values are converted to lower case before they are matched:
<syntaxhighlight lang="lua">
-- These always return true:
yesno('Yes')
yesno('YES')
yesno('yEs')
yesno('Y')
yesno('tRuE')