38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
|
|
|
|
var guildTipConfig = function() {
|
|
this.init = function() {
|
|
if (!this.data) {
|
|
this.data = {
|
|
1: {
|
|
title: cc.language.stringformat("kickoutguild"),
|
|
lb1: cc.language.stringformat("guildontrue"),
|
|
name: 'xxx',
|
|
lb2: cc.language.stringformat("kickoutguildma"),
|
|
},
|
|
|
|
2: {
|
|
title: cc.language.stringformat("leaveoutguild"),
|
|
lb1: cc.language.stringformat("leaveoutguildma"),
|
|
},
|
|
|
|
3: {
|
|
title: cc.language.stringformat("turncapter"),
|
|
lb1: cc.language.stringformat("turncapterma"),
|
|
name: 'xxx',
|
|
lb2: cc.language.stringformat("ma"),
|
|
},
|
|
|
|
4: {
|
|
title: cc.language.stringformat("clenup"),
|
|
lb1: cc.language.stringformat("clenupguildapply"),
|
|
},
|
|
}
|
|
|
|
}
|
|
return this.data
|
|
}
|
|
|
|
}
|
|
var ins = new guildTipConfig()
|
|
module.exports = ins; |