UNPKG

easy-aos

Version:

帮助配置arm-gcc开发环境,简化命令行。

19 lines (15 loc) 304 B
import I18n from "i18n" I18n.configure({ directory: __dirname + "./../../locales", objectNotation: true }) I18n.setLocale("cn") const __ = function(text){ return I18n.__(`${this.app}.${text}`) } export default class i18n { constructor(app) { this.app = app this.__ = __ } }