mirror of
https://github.com/Youzini-afk/ST-Bionic-Memory-Ecology.git
synced 2026-06-14 02:40:45 +08:00
96 lines
3.6 KiB
JavaScript
96 lines
3.6 KiB
JavaScript
// ST-BME UI-only i18n catalog: English.
|
|
// Keep this catalog for frontend chrome/status text only. Do not use it for
|
|
// prompt construction, graph node content, persisted memories, or LLM schemas.
|
|
|
|
export default {
|
|
"common.appName": "ST-BME",
|
|
"common.cancel": "Cancel",
|
|
"common.close": "Close",
|
|
"common.confirm": "Confirm",
|
|
"common.delete": "Delete",
|
|
"common.edit": "Edit",
|
|
"common.empty": "No data",
|
|
"common.loading": "Loading…",
|
|
"common.retry": "Retry",
|
|
"common.save": "Save",
|
|
"common.status": "Status",
|
|
"common.unknown": "Unknown",
|
|
|
|
"error.auditFailed": "Audit failed",
|
|
"error.deleteBlocked": "The node was removed from the graph, but write-back may be blocked. Check graph state.",
|
|
"error.deleteFailed": "Delete failed",
|
|
"error.nodeNotFound": "Node no longer exists",
|
|
"error.saveBlocked": "Content updated, but write-back to chat metadata may be blocked. Check graph state.",
|
|
"error.saveFailed": "Save failed",
|
|
"error.syncFailed": "Sync failed",
|
|
|
|
"graph.scope.characterPov": "Character POV · {name}",
|
|
"graph.scope.objective": "Objective Layer",
|
|
"graph.scope.unknownCharacter": "Unknown character",
|
|
"graph.scope.userPov": "User POV",
|
|
|
|
"i18n.locale.auto": "Auto",
|
|
"i18n.locale.enUS": "English",
|
|
"i18n.locale.setting.help": "Only affects ST-BME panel text, notices, and status messages. It does not translate chat content, memory nodes, or prompts.",
|
|
"i18n.locale.setting.label": "Interface Language",
|
|
"i18n.locale.zhCN": "Simplified Chinese",
|
|
|
|
"notice.completed": "{stage} completed",
|
|
"notice.failed": "{stage} failed",
|
|
"notice.generic": "ST-BME",
|
|
"notice.loading": "{stage} in progress…",
|
|
"notice.partial": "{stage} partially succeeded",
|
|
|
|
"panel.entry.floatingTooltip": "BME Memory Graph",
|
|
"panel.entry.menuLabel": "Memory Graph",
|
|
"panel.entry.openFailed": "Memory Graph panel failed to load. Check the console for details.",
|
|
"panel.title": "ST-BME Memory Graph",
|
|
"panel.tab.actions": "Actions",
|
|
"panel.tab.cognition": "Cognition",
|
|
"panel.tab.config": "Settings",
|
|
"panel.tab.dashboard": "Overview",
|
|
"panel.tab.extraction": "Extraction",
|
|
"panel.tab.persistence": "Persistence State",
|
|
"panel.tab.pipeline": "Pipeline Overview",
|
|
"panel.tab.recall": "Recall",
|
|
"panel.tab.settings": "Settings",
|
|
"panel.tab.tasks": "Tasks",
|
|
"panel.tab.timeline": "Task Timeline",
|
|
"panel.tab.trace": "Message Trace",
|
|
"panel.tab.vector": "Vector",
|
|
|
|
"persistence.loadState.error": "Load failed",
|
|
"persistence.loadState.loaded": "Loaded",
|
|
"persistence.loadState.loading": "Loading",
|
|
"persistence.loadState.noChat": "No chat is currently open",
|
|
"persistence.persistState.completed": "Completed",
|
|
"persistence.persistState.failed": "Persistence failed",
|
|
"persistence.persistState.idle": "Idle",
|
|
"persistence.persistState.pending": "Awaiting persistence confirmation",
|
|
|
|
"recall.card.deleteConfirm": "Delete this persisted recall injection?",
|
|
"recall.card.memoryCount": "{count} memories",
|
|
"recall.card.title": "Relevant Memory Recall",
|
|
|
|
"stage.extraction": "Extraction",
|
|
"stage.history": "History Recovery",
|
|
"stage.recall": "Recall",
|
|
"stage.vector": "Vector",
|
|
|
|
"status.aborted": "Aborted",
|
|
"status.failed": "Failed",
|
|
"status.idle": "Idle",
|
|
"status.loading": "Loading…",
|
|
"status.partial": "Partially succeeded",
|
|
"status.ready": "Ready",
|
|
"status.running": "Running",
|
|
"status.skipped": "Skipped",
|
|
"status.success": "Succeeded",
|
|
"status.waiting": "Waiting",
|
|
|
|
"status.initial.extraction.detail": "Extraction has not run yet",
|
|
"status.initial.recall.detail": "Recall has not run yet",
|
|
"status.initial.runtime.detail": "Ready",
|
|
"status.initial.vector.detail": "Vector tasks have not run yet",
|
|
};
|