add i18n system and improved plugin API with state management

This commit is contained in:
synt-xerror
2026-04-21 11:18:19 -03:00
parent 18821dd951
commit f683496318
23 changed files with 836 additions and 179 deletions

View File

@@ -1,5 +1,5 @@
import { BOT_PREFIX } from "../config.js";
export function botMsg(texto) {
return `${BOT_PREFIX}\n${texto}`;
export function botMsg(text) {
return `${BOT_PREFIX}\n${text}`;
}