添加测试信息

This commit is contained in:
yuding
2025-12-16 11:57:44 +08:00
parent 2a2258cb9c
commit 9d1ebfd817
30 changed files with 6196 additions and 5211 deletions

View File

@@ -26,12 +26,9 @@ export const enUS: TranslationDictionary = {
home: 'Home',
},
tree: {
modelStruct: 'Model Structure',
floor1: 'Level 1',
floor2: 'Level 2',
wall: 'Walls',
column: 'Columns',
window: 'Windows',
door: 'Doors',
}
searchPlaceholder: 'Please enter content to search',
},
constructTree: {
title: 'Construct Tree',
}
};

View File

@@ -27,15 +27,12 @@ export interface TranslationDictionary {
info: string;
home: string;
};
tree: {
modelStruct: string;
floor1: string;
floor2: string;
wall: string;
column: string;
window: string;
door: string;
}
tree: {
searchPlaceholder: string;
};
constructTree: {
title: string;
}
}
/**

View File

@@ -1,37 +1,34 @@
import { TranslationDictionary } from './types';
import {TranslationDictionary} from './types';
export const zhCN: TranslationDictionary = {
common: {
title: 'BimEngine',
description: '这是一个使用 BIM-ENGINE。',
openTestDialog: '打开测试弹窗',
openInfoDialog: '打开信息弹窗 (封装版)',
},
toolbar: {
home: '首页',
info: '信息',
location: '定位',
setting: '设置',
walk: '漫游',
walkPerson: '人视',
walkBird: '鸟瞰',
walkMenu: '菜单',
},
dialog: {
testTitle: '测试弹窗',
testContent: '<div style="padding: 10px;">这是一个 <b>可拖拽</b> 且 <b>可缩放</b> 的弹窗。<br><br>你可以尝试拖动标题栏,或者拖动右下角改变大小。</div>',
},
menu: {
info: '信息',
home: '首页',
},
tree: {
modelStruct: '模型结构',
floor1: '一楼',
floor2: '二楼',
wall: '墙体',
column: '柱子',
window: '窗户',
door: '门',
}
common: {
title: 'BimEngine',
description: '这是一个使用 BIM-ENGINE。',
openTestDialog: '打开测试弹窗',
openInfoDialog: '打开信息弹窗 (封装版)',
},
toolbar: {
home: '首页',
info: '信息',
location: '定位',
setting: '设置',
walk: '漫游',
walkPerson: '人视',
walkBird: '鸟瞰',
walkMenu: '菜单',
},
dialog: {
testTitle: '测试弹窗',
testContent: '<div style="padding: 10px;">这是一个 <b>可拖拽</b> 且 <b>可缩放</b> 的弹窗。<br><br>你可以尝试拖动标题栏,或者拖动右下角改变大小。</div>',
},
menu: {
info: '信息',
home: '首页',
},
tree: {
searchPlaceholder: '请输入要搜索的内容',
},
constructTree: {
title: '目录树',
}
};