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: Simplified Chinese.
|
|
// 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": "取消",
|
|
"common.close": "关闭",
|
|
"common.confirm": "确认",
|
|
"common.delete": "删除",
|
|
"common.edit": "编辑",
|
|
"common.empty": "暂无数据",
|
|
"common.loading": "加载中…",
|
|
"common.retry": "重试",
|
|
"common.save": "保存",
|
|
"common.status": "状态",
|
|
"common.unknown": "未知",
|
|
|
|
"error.auditFailed": "审计失败",
|
|
"error.deleteBlocked": "节点已从图中移除,但写回可能被拦截,请查看图谱状态",
|
|
"error.deleteFailed": "删除失败",
|
|
"error.nodeNotFound": "节点已不存在",
|
|
"error.saveBlocked": "内容已更新,但写回聊天元数据可能被拦截,请查看图谱状态",
|
|
"error.saveFailed": "保存失败",
|
|
"error.syncFailed": "同步失败",
|
|
|
|
"graph.scope.characterPov": "角色 POV · {name}",
|
|
"graph.scope.objective": "客观层",
|
|
"graph.scope.unknownCharacter": "未知角色",
|
|
"graph.scope.userPov": "用户 POV",
|
|
|
|
"i18n.locale.auto": "自动",
|
|
"i18n.locale.enUS": "English",
|
|
"i18n.locale.setting.help": "只影响 ST-BME 面板、提示和状态文案,不会翻译聊天内容、记忆节点或提示词。",
|
|
"i18n.locale.setting.label": "界面语言",
|
|
"i18n.locale.zhCN": "简体中文",
|
|
|
|
"notice.completed": "{stage}已完成",
|
|
"notice.failed": "{stage}失败",
|
|
"notice.generic": "ST-BME",
|
|
"notice.loading": "{stage}进行中…",
|
|
"notice.partial": "{stage}部分成功",
|
|
|
|
"panel.entry.floatingTooltip": "BME 记忆图谱",
|
|
"panel.entry.menuLabel": "记忆图谱",
|
|
"panel.entry.openFailed": "记忆图谱面板加载失败,请查看控制台报错",
|
|
"panel.title": "ST-BME 记忆图谱",
|
|
"panel.tab.actions": "操作",
|
|
"panel.tab.cognition": "角色认知",
|
|
"panel.tab.config": "设置",
|
|
"panel.tab.dashboard": "总览",
|
|
"panel.tab.extraction": "提取 Extraction",
|
|
"panel.tab.persistence": "持久化状态",
|
|
"panel.tab.pipeline": "管线总览",
|
|
"panel.tab.recall": "召回 Recall",
|
|
"panel.tab.settings": "配置",
|
|
"panel.tab.tasks": "任务",
|
|
"panel.tab.timeline": "任务流水",
|
|
"panel.tab.trace": "消息追踪",
|
|
"panel.tab.vector": "向量 Vector",
|
|
|
|
"persistence.loadState.error": "加载失败",
|
|
"persistence.loadState.loaded": "已加载",
|
|
"persistence.loadState.loading": "加载中",
|
|
"persistence.loadState.noChat": "当前尚未进入聊天",
|
|
"persistence.persistState.completed": "已完成",
|
|
"persistence.persistState.failed": "持久化失败",
|
|
"persistence.persistState.idle": "待命",
|
|
"persistence.persistState.pending": "等待正式持久化确认",
|
|
|
|
"recall.card.deleteConfirm": "确认删除这条持久召回注入?",
|
|
"recall.card.memoryCount": "记忆 {count}",
|
|
"recall.card.title": "相关记忆召回",
|
|
|
|
"stage.extraction": "提取",
|
|
"stage.history": "历史恢复",
|
|
"stage.recall": "召回",
|
|
"stage.vector": "向量",
|
|
|
|
"status.aborted": "已中止",
|
|
"status.failed": "失败",
|
|
"status.idle": "待命",
|
|
"status.loading": "加载中…",
|
|
"status.partial": "部分成功",
|
|
"status.ready": "准备就绪",
|
|
"status.running": "运行中",
|
|
"status.skipped": "已跳过",
|
|
"status.success": "成功",
|
|
"status.waiting": "等待中",
|
|
|
|
"status.initial.extraction.detail": "尚未执行提取",
|
|
"status.initial.recall.detail": "尚未执行召回",
|
|
"status.initial.runtime.detail": "准备就绪",
|
|
"status.initial.vector.detail": "尚未执行向量任务",
|
|
};
|