增加测量窗口
This commit is contained in:
@@ -1,52 +1,95 @@
|
||||
import { TranslationDictionary } from './types';
|
||||
import {TranslationDictionary} from './types';
|
||||
|
||||
export const enUS: TranslationDictionary = {
|
||||
common: {
|
||||
title: 'BimEngine',
|
||||
description: 'This is a BIM-ENGINE demo.',
|
||||
openTestDialog: 'Open Test Dialog',
|
||||
openInfoDialog: 'Open Info Dialog (Wrapped)',
|
||||
},
|
||||
toolbar: {
|
||||
home: 'Home',
|
||||
info: 'Info',
|
||||
location: 'Location',
|
||||
setting: 'Settings',
|
||||
walk: 'Walk',
|
||||
walkPerson: 'Person',
|
||||
walkBird: 'Bird Eye',
|
||||
walkMenu: 'Menu',
|
||||
tree: 'Tree',
|
||||
},
|
||||
dialog: {
|
||||
testTitle: 'Test Dialog',
|
||||
testContent: '<div style="padding: 10px;">This is a <b>draggable</b> and <b>resizable</b> dialog.<br><br>Try dragging the title bar or resizing from the bottom-right corner.</div>',
|
||||
},
|
||||
menu: {
|
||||
info: 'Info',
|
||||
home: 'Home',
|
||||
},
|
||||
tree: {
|
||||
searchPlaceholder: 'Please enter content to search',
|
||||
},
|
||||
common: {
|
||||
title: 'BimEngine',
|
||||
description: 'This is a BIM-ENGINE demo.',
|
||||
openTestDialog: 'Open Test Dialog',
|
||||
openInfoDialog: 'Open Info Dialog (Wrapped)',
|
||||
},
|
||||
toolbar: {
|
||||
home: 'Home',
|
||||
measure: 'Measure',
|
||||
info: 'Info',
|
||||
location: 'Location',
|
||||
setting: 'Settings',
|
||||
walk: 'Walk',
|
||||
walkPerson: 'Person',
|
||||
walkBird: 'Bird Eye',
|
||||
walkMenu: 'Menu',
|
||||
tree: 'Tree',
|
||||
},
|
||||
dialog: {
|
||||
testTitle: 'Test Dialog',
|
||||
testContent: '<div style="padding: 10px;">This is a <b>draggable</b> and <b>resizable</b> dialog.<br><br>Try dragging the title bar or resizing from the bottom-right corner.</div>',
|
||||
},
|
||||
menu: {
|
||||
info: 'Info',
|
||||
home: 'Home',
|
||||
},
|
||||
tree: {
|
||||
searchPlaceholder: 'Please enter content to search',
|
||||
},
|
||||
constructTree: {
|
||||
title: 'Construct Tree',
|
||||
},
|
||||
tab: {
|
||||
component: 'Component',
|
||||
system: 'System',
|
||||
space: 'Space',
|
||||
},
|
||||
panel: {
|
||||
property: {
|
||||
title: 'Component Details',
|
||||
base: 'Basic Info',
|
||||
material: 'Material',
|
||||
advanced: 'Advanced',
|
||||
tab: {
|
||||
props: 'Properties',
|
||||
material: 'Material'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
tab: {
|
||||
component: 'Component',
|
||||
system: 'System',
|
||||
space: 'Space',
|
||||
},
|
||||
panel: {
|
||||
property: {
|
||||
title: 'Component Details',
|
||||
base: 'Basic Info',
|
||||
material: 'Material',
|
||||
advanced: 'Advanced',
|
||||
tab: {
|
||||
props: 'Properties',
|
||||
material: 'Material'
|
||||
}
|
||||
}
|
||||
},
|
||||
measure: {
|
||||
btnName: 'Measure',
|
||||
dialogTitle: 'Measure',
|
||||
modes: {
|
||||
distance: 'Distance',
|
||||
minDistance: 'Min Distance',
|
||||
angle: 'Angle',
|
||||
elevation: 'Elevation',
|
||||
volume: 'Volume',
|
||||
laserDistance: 'Laser Distance',
|
||||
slope: 'Slope',
|
||||
spaceVolume: 'Space Volume',
|
||||
},
|
||||
actions: {
|
||||
expand: 'Expand',
|
||||
collapse: 'Collapse',
|
||||
clearAll: 'Clear All',
|
||||
settings: 'Settings',
|
||||
},
|
||||
labels: {
|
||||
currentMode: 'Mode:',
|
||||
x: 'X:',
|
||||
y: 'Y:',
|
||||
z: 'Z:',
|
||||
value: {
|
||||
distance: 'Distance:',
|
||||
minDistance: 'Min Distance:',
|
||||
angle: 'Angle:',
|
||||
elevation: 'Elevation:',
|
||||
volume: 'Volume:',
|
||||
laserDistance: 'Laser Distance:',
|
||||
slope: 'Slope:',
|
||||
spaceVolume: 'Space Volume:',
|
||||
}
|
||||
},
|
||||
units: {
|
||||
mm: 'mm',
|
||||
deg: '°',
|
||||
m3: 'm³',
|
||||
percent: '%',
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user