2025-12-22 18:48:38 +08:00
import { TranslationDictionary } from './types' ;
2025-12-04 15:24:44 +08:00
export const enUS : TranslationDictionary = {
2025-12-22 18:48:38 +08:00
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' ,
} ,
2025-12-16 11:57:44 +08:00
constructTree : {
title : 'Construct Tree' ,
2025-12-22 14:31:23 +08:00
} ,
2025-12-22 18:48:38 +08:00
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' ,
2025-12-23 11:31:16 +08:00
cm : 'cm' ,
m : 'm' ,
km : 'km' ,
2025-12-22 18:48:38 +08:00
deg : '°' ,
m3 : 'm³' ,
percent : '%' ,
2025-12-23 11:31:16 +08:00
} ,
settings : {
title : 'Settings' ,
unit : 'Unit:' ,
precision : 'Precision:' ,
hint : 'Distance, min distance and elevation use this unit by default; angle and volume use their own units.' ,
save : 'Save' ,
cancel : 'Cancel' ,
2025-12-22 18:48:38 +08:00
}
}
} ;