2025-10-14 23:56:54 +08:00
|
|
|
import type { Translations } from '@esengine/editor-core';
|
|
|
|
|
|
|
|
|
|
export const en: Translations = {
|
|
|
|
|
app: {
|
2025-11-27 20:42:46 +08:00
|
|
|
title: 'ESEngine Editor'
|
2025-10-14 23:56:54 +08:00
|
|
|
},
|
|
|
|
|
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',
|
2025-10-15 23:24:13 +08:00
|
|
|
projectOpened: 'Project Opened',
|
2025-10-16 17:10:22 +08:00
|
|
|
remoteConnected: 'Remote Game Connected',
|
|
|
|
|
profilerMode: 'Profiler Mode - Waiting for connection...'
|
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'
|
|
|
|
|
}
|
|
|
|
|
};
|