初始化

This commit is contained in:
yuding
2025-12-24 19:02:34 +08:00
parent 4b5eb78bbb
commit 04a5e74284
51 changed files with 8576 additions and 5334 deletions

View File

@@ -10,6 +10,7 @@ export const enUS: TranslationDictionary = {
toolbar: {
home: 'Home',
measure: 'Measure',
zoomBox: 'Zoom Box',
info: 'Info',
location: 'Location',
setting: 'Settings',
@@ -18,6 +19,10 @@ export const enUS: TranslationDictionary = {
walkBird: 'Bird Eye',
walkMenu: 'Menu',
tree: 'Tree',
section: 'Section',
sectionPlane: 'Plane Section',
sectionAxis: 'Axis Section',
sectionBox: 'Section Box'
},
dialog: {
testTitle: 'Test Dialog',
@@ -102,5 +107,37 @@ export const enUS: TranslationDictionary = {
save: 'Save',
cancel: 'Cancel',
}
},
sectionPlane: {
dialogTitle: 'Plane Section',
actions: {
hide: 'Hide',
reverse: 'Reverse',
reset: 'Reset'
}
},
sectionAxis: {
dialogTitle: 'Axis Section',
actions: {
hide: 'Hide',
reverse: 'Reverse',
axisX: 'X',
axisY: 'Y',
axisZ: 'Z'
}
},
sectionBox: {
dialogTitle: 'Section Box',
actions: {
hide: 'Hide',
reverse: 'Reverse',
fitToModel: 'Fit',
reset: 'Reset'
},
axes: {
x: 'X',
y: 'Y',
z: 'Z'
}
}
};

View File

@@ -13,6 +13,7 @@ export interface TranslationDictionary {
toolbar: {
home: string;
measure: string;
zoomBox: string;
info: string;
location: string;
setting: string;
@@ -21,6 +22,10 @@ export interface TranslationDictionary {
walkPerson: string;
walkBird: string;
tree: string;
section: string;
sectionPlane: string;
sectionAxis: string;
sectionBox: string;
};
panel: {
property: {
@@ -125,7 +130,39 @@ export interface TranslationDictionary {
save: string;
cancel: string;
};
}
};
sectionPlane: {
dialogTitle: string;
actions: {
hide: string;
reverse: string;
reset: string;
};
};
sectionAxis: {
dialogTitle: string;
actions: {
hide: string;
reverse: string;
axisX: string;
axisY: string;
axisZ: string;
};
};
sectionBox: {
dialogTitle: string;
actions: {
hide: string;
reverse: string;
fitToModel: string;
reset: string;
};
axes: {
x: string;
y: string;
z: string;
};
};
}
/**

View File

@@ -10,6 +10,7 @@ export const zhCN: TranslationDictionary = {
toolbar: {
home: '首页',
measure: '测量',
zoomBox: '选框放大',
info: '信息',
location: '定位',
setting: '设置',
@@ -17,7 +18,11 @@ export const zhCN: TranslationDictionary = {
walkMenu: '漫游菜单',
walkPerson: '第一人称',
walkBird: '第三人称',
tree: '模型树'
tree: '模型树',
section: '剖切',
sectionPlane: '拾取面剖切',
sectionAxis: '轴向剖切',
sectionBox: '剖切盒'
},
dialog: {
testTitle: '测试弹窗',
@@ -102,5 +107,37 @@ export const zhCN: TranslationDictionary = {
save: '保存设置',
cancel: '取消',
}
},
sectionPlane: {
dialogTitle: '拾取面剖切',
actions: {
hide: '隐藏',
reverse: '反向',
reset: '重置'
}
},
sectionAxis: {
dialogTitle: '轴向剖切',
actions: {
hide: '隐藏',
reverse: '反向',
axisX: 'X',
axisY: 'Y',
axisZ: 'Z'
}
},
sectionBox: {
dialogTitle: '剖切盒',
actions: {
hide: '隐藏',
reverse: '反向',
fitToModel: '适应',
reset: '重置'
},
axes: {
x: 'X',
y: 'Y',
z: 'Z'
}
}
};