Skip to content

Releases: pessoa736/loglua

v1.5 - Multi-language Support

26 Nov 13:41

Choose a tag to compare

What's New

🌍 Multi-language Help System

  • Full help documentation in Portuguese, English, and Spanish
  • log.setLanguage('pt'|'en'|'es') to switch languages
  • log.getLanguage() to check current language

💡 Welcome Hint

  • First log.show() call displays a localized tip about log.help() and language options

📚 Documentation

  • New README.es.md (Spanish)
  • Language switcher links in all READMEs (🇺🇸 | 🇧🇷 | 🇪🇸)

Installation

luarocks install loglua

Quick Start

local log = require('loglua')
log.setLanguage('en')  -- or 'pt', 'es'
log('Hello world')
log.show()
log.help()