chanmin0723's picture
Initial obcon SCADA deploy
e4bf523
Raw
History Blame Contribute Delete
820 Bytes
'use strict'
/**
* Copyright (c) 2017~2020, OBCon Inc.
* All rights reserved.
*/
/**
* @file
* @copyright 2017~2020, OBCon Inc.
* @author gye hyun james kim [pnuskgh@gmail.com]
*/
let Lang = utils.getClass('include', 'lang.js');
class GroupsLang extends Lang {
constructor() {
super();
this._model = modules.groups.model;
this.langs = this.setLang();
}
setLang() {
return {
ko_KR: { //--- 언어
name: this._model._title, //--- 모듈 이름
fields: {
},
msgs: { //--- Messages
}
}
};
}
}
module.exports = GroupsLang;