2025-12-04 15:24:44 +08:00
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' ,
} ,
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>' ,
} ,
2025-12-09 18:34:43 +08:00
menu : {
2025-12-10 18:34:14 +08:00
info : 'Info' ,
home : 'Home' ,
} ,
tree : {
modelStruct : 'Model Structure' ,
floor1 : 'Level 1' ,
floor2 : 'Level 2' ,
wall : 'Walls' ,
column : 'Columns' ,
window : 'Windows' ,
door : 'Doors' ,
2025-12-09 18:34:43 +08:00
}
2025-12-04 15:24:44 +08:00
} ;