Files
bim_engine/src/locales/en-US.ts

52 lines
1.3 KiB
TypeScript
Raw Normal View History

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',
2025-12-22 15:39:58 +08:00
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: {
2025-12-16 11:57:44 +08:00
searchPlaceholder: 'Please enter content to search',
},
constructTree: {
title: 'Construct Tree',
2025-12-22 14:31:23 +08:00
},
tab: {
component: 'Component',
system: 'System',
space: 'Space',
2025-12-22 15:39:58 +08:00
},
panel: {
property: {
title: 'Component Details',
2025-12-22 15:39:58 +08:00
base: 'Basic Info',
material: 'Material',
advanced: 'Advanced',
tab: {
props: 'Properties',
material: 'Material'
}
2025-12-22 15:39:58 +08:00
}
}
};