Releases: pessoa736/loglua
Releases · pessoa736/loglua
v1.5 - Multi-language Support
What's New
🌍 Multi-language Help System
- Full help documentation in Portuguese, English, and Spanish
log.setLanguage('pt'|'en'|'es')to switch languageslog.getLanguage()to check current language
💡 Welcome Hint
- First
log.show()call displays a localized tip aboutlog.help()and language options
📚 Documentation
- New README.es.md (Spanish)
- Language switcher links in all READMEs (🇺🇸 | 🇧🇷 | 🇪🇸)
Installation
luarocks install logluaQuick Start
local log = require('loglua')
log.setLanguage('en') -- or 'pt', 'es'
log('Hello world')
log.show()
log.help()