Files
esengine/packages/editor-app/src/locales/en.ts

67 lines
1.7 KiB
TypeScript
Raw Normal View History

2025-10-14 23:56:54 +08:00
import type { Translations } from '@esengine/editor-core';
export const en: Translations = {
app: {
title: 'ECS Framework Editor'
},
header: {
toolbar: {
2025-10-15 00:23:19 +08:00
openProject: 'Open Project',
2025-10-14 23:56:54 +08:00
createEntity: 'Create Entity',
deleteEntity: 'Delete Entity'
},
status: {
initializing: 'Initializing...',
ready: 'Editor Ready',
2025-10-15 00:23:19 +08:00
failed: 'Initialization Failed',
projectOpened: 'Project Opened',
remoteConnected: 'Remote Game Connected'
2025-10-14 23:56:54 +08:00
}
},
hierarchy: {
title: 'Scene Hierarchy',
empty: 'No entities',
loading: 'Loading...'
},
inspector: {
title: 'Inspector',
empty: 'No entity selected',
entityInfo: {
title: 'Entity Info',
id: 'ID',
name: 'Name',
enabled: 'Enabled',
yes: 'Yes',
no: 'No'
},
components: {
title: 'Components',
empty: 'No components',
add: 'Add Component',
remove: 'Remove'
}
},
addComponent: {
title: 'Add Component',
search: 'Search components...',
empty: 'No available components',
cancel: 'Cancel',
add: 'Add Component'
},
viewport: {
title: 'Viewport',
placeholder: 'Scene viewport will appear here'
},
console: {
title: 'Console',
placeholder: 'Console output will appear here'
},
footer: {
plugins: 'Plugins',
entities: 'Entities',
core: 'Core',
active: 'Active',
inactive: 'Inactive'
}
};