UNPKG

zerotwomd

Version:

Multi device wa bot created by Team Zero Two.

21 lines (16 loc) 550 B
const Config = require('./config'); const fs = require('fs'); const { log, pint } = require('./lib/langcolor'); if (fs.existsSync('./language/' + Config.LANG + '.json')) { //log(pint('Loading ' + Config.LANG + ' language...', '.')); var json = JSON.parse(fs.readFileSync('./language/' + Config.LANG + '.json')); } else { var json = JSON.parse(fs.readFileSync('./language/EN.json')); } function getString(file) { return json['STRINGS'][file]; } module.exports = { language: json, getString: getString }