mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-07 19:07:30 +08:00
修复Excel设置的多语言配置获取不到对应语言数据问题
This commit is contained in:
@@ -42,8 +42,14 @@ export class LanguageData {
|
||||
* 3、config/game/Language配置表使用oops-plugin-excel-to-json插件生成,点击项目根目录下载update-oops-plugin-framework.bat或update-oops-plugin-framework.sh脚本下载插件
|
||||
*/
|
||||
public static getLangByID(labId: string): string {
|
||||
let content: string = null!;
|
||||
for (const [key, value] of this.language) {
|
||||
const content = value[labId];
|
||||
if (key == LanguageDataType.Excel) {
|
||||
content = value[labId][this.current];
|
||||
}
|
||||
else {
|
||||
content = value[labId];
|
||||
}
|
||||
if (content) return content;
|
||||
}
|
||||
return labId;
|
||||
|
||||
Reference in New Issue
Block a user