@@ -462,7 +453,6 @@ export function HoloLakeHome({
{t('hololake.channel.heartbeatDescription')}
- navigate('education-work-lake')} />
@@ -502,7 +492,6 @@ export function HoloLakeHome({
-
>}
{fifthDomainOpen && <>
diff --git a/product-source/hololake-platform/src/hooks/useAiAgentsStatus.test.ts b/product-source/hololake-platform/src/hooks/useAiAgentsStatus.test.ts
index c5a1aca57..0407d1264 100644
--- a/product-source/hololake-platform/src/hooks/useAiAgentsStatus.test.ts
+++ b/product-source/hololake-platform/src/hooks/useAiAgentsStatus.test.ts
@@ -57,6 +57,11 @@ describe('useAiAgentsStatus', () => {
expect(result.current.claude_code).toEqual({ status: 'installed', version: '1.0.20' })
expect(result.current.codex).toEqual({ status: 'missing', version: null })
expect(result.current.copilot).toEqual({ status: 'installed', version: '1.0.58' })
+ expect(result.current.opencode).toEqual({ status: 'installed', version: '0.3.1' })
+ expect(result.current.pi).toEqual({ status: 'installed', version: '0.70.2' })
+ expect(result.current.antigravity).toEqual({ status: 'installed', version: 'Antigravity CLI 1.0.0' })
+ expect(result.current.kiro).toEqual({ status: 'installed', version: '0.4.0' })
+ expect(result.current.hermes).toEqual({ status: 'installed', version: 'Hermes Agent 0.16.0' })
})
})
diff --git a/product-source/hololake-platform/src/hooks/useCommandRegistry.test.ts b/product-source/hololake-platform/src/hooks/useCommandRegistry.test.ts
index d25959ead..cfd1aacdf 100644
--- a/product-source/hololake-platform/src/hooks/useCommandRegistry.test.ts
+++ b/product-source/hololake-platform/src/hooks/useCommandRegistry.test.ts
@@ -1085,9 +1085,9 @@ describe('reload-vault command', () => {
expect(cmd).toBeDefined()
expect(cmd!.label).toBe('Switch AI Agent to Codex')
expect(findCommand(result.current, 'switch-ai-agent-copilot')).toBeDefined()
- expect(findCommand(result.current, 'switch-ai-agent-opencode')).toBeUndefined()
- expect(findCommand(result.current, 'switch-ai-agent-pi')).toBeUndefined()
- expect(findCommand(result.current, 'switch-ai-agent-antigravity')).toBeUndefined()
+ expect(findCommand(result.current, 'switch-ai-agent-opencode')).toBeDefined()
+ expect(findCommand(result.current, 'switch-ai-agent-pi')).toBeDefined()
+ expect(findCommand(result.current, 'switch-ai-agent-antigravity')).toBeDefined()
cmd!.execute()
expect(onSetDefaultAiAgent).toHaveBeenCalledWith('codex')
diff --git a/product-source/hololake-platform/src/hooks/useStartupScreenState.test.ts b/product-source/hololake-platform/src/hooks/useStartupScreenState.test.ts
deleted file mode 100644
index 1f8c027e5..000000000
--- a/product-source/hololake-platform/src/hooks/useStartupScreenState.test.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-import { renderHook } from '@testing-library/react'
-import { describe, expect, it } from 'vitest'
-import { useStartupScreenState } from './useStartupScreenState'
-
-describe('useStartupScreenState', () => {
- it('does not let local vault onboarding replace the HoloLake world entry', () => {
- const { result } = renderHook(() => useStartupScreenState({
- aiAgentsPromptVisible: false,
- isNoteWindow: false,
- onboardingState: { status: 'welcome' },
- runtimeMissingVaultPath: '/blocked/config/path',
- selectedVaultPath: null,
- settingsLoaded: true,
- showMcpSetupDialog: false,
- telemetryConsent: null,
- vaultIsLoading: false,
- vaultSwitcher: {
- allVaults: [],
- loaded: true,
- vaultPath: '',
- },
- worldEntryVisible: true,
- }))
-
- expect(result.current.shouldShowStartupScreen).toBe(false)
- })
-})
diff --git a/product-source/hololake-platform/src/hooks/useStartupScreenState.ts b/product-source/hololake-platform/src/hooks/useStartupScreenState.ts
index 3558c5b57..2fe7b58c3 100644
--- a/product-source/hololake-platform/src/hooks/useStartupScreenState.ts
+++ b/product-source/hololake-platform/src/hooks/useStartupScreenState.ts
@@ -22,7 +22,6 @@ interface UseStartupScreenStateArgs {
telemetryConsent: boolean | null
vaultIsLoading: boolean
vaultSwitcher: StartupVaultSwitcherState
- worldEntryVisible?: boolean
}
interface StartupScreenState {
@@ -123,7 +122,6 @@ export function useStartupScreenState({
telemetryConsent,
vaultIsLoading,
vaultSwitcher,
- worldEntryVisible = false,
}: UseStartupScreenStateArgs): StartupScreenState {
const shouldResumeFreshStartOnboarding = useMemo(
() => shouldResumeFreshStart(onboardingState, selectedVaultPath, vaultSwitcher),
@@ -131,7 +129,7 @@ export function useStartupScreenState({
)
const isStartupLoading = !isNoteWindow && onboardingState.status === 'loading'
- const shouldShowStartupScreen = !worldEntryVisible && shouldShowStartupScreenForState({
+ const shouldShowStartupScreen = shouldShowStartupScreenForState({
aiAgentsPromptVisible,
isNoteWindow,
isStartupLoading,
diff --git a/product-source/hololake-platform/src/lib/aiAgents.test.ts b/product-source/hololake-platform/src/lib/aiAgents.test.ts
index f7f2183cb..dc4444430 100644
--- a/product-source/hololake-platform/src/lib/aiAgents.test.ts
+++ b/product-source/hololake-platform/src/lib/aiAgents.test.ts
@@ -11,12 +11,12 @@ describe('aiAgents helpers', () => {
expect(normalizeStoredAiAgent('claude_code')).toBe('claude_code')
expect(normalizeStoredAiAgent('codex')).toBe('codex')
expect(normalizeStoredAiAgent('copilot')).toBe('copilot')
- expect(normalizeStoredAiAgent('opencode')).toBeNull()
- expect(normalizeStoredAiAgent('pi')).toBeNull()
- expect(normalizeStoredAiAgent('antigravity')).toBeNull()
- expect(normalizeStoredAiAgent('gemini')).toBeNull()
- expect(normalizeStoredAiAgent('kiro')).toBeNull()
- expect(normalizeStoredAiAgent('hermes')).toBeNull()
+ expect(normalizeStoredAiAgent('opencode')).toBe('opencode')
+ expect(normalizeStoredAiAgent('pi')).toBe('pi')
+ expect(normalizeStoredAiAgent('antigravity')).toBe('antigravity')
+ expect(normalizeStoredAiAgent('gemini')).toBe('antigravity')
+ expect(normalizeStoredAiAgent('kiro')).toBe('kiro')
+ expect(normalizeStoredAiAgent('hermes')).toBe('hermes')
expect(normalizeStoredAiAgent('cursor')).toBeNull()
})
@@ -40,25 +40,29 @@ describe('aiAgents helpers', () => {
expect(statuses.claude_code).toEqual({ status: 'installed', version: '1.0.20' })
expect(statuses.codex).toEqual({ status: 'missing', version: null })
expect(statuses.copilot).toEqual({ status: 'installed', version: '1.0.58' })
- expect(statuses.opencode).toBeUndefined()
- expect(statuses.pi).toBeUndefined()
- expect(statuses.antigravity).toBeUndefined()
- expect(statuses.kiro).toBeUndefined()
- expect(statuses.hermes).toBeUndefined()
+ expect(statuses.opencode).toEqual({ status: 'installed', version: '0.3.1' })
+ expect(statuses.pi).toEqual({ status: 'installed', version: '0.70.2' })
+ expect(statuses.antigravity).toEqual({ status: 'installed', version: 'Antigravity CLI 1.0.0' })
+ expect(statuses.kiro).toEqual({ status: 'installed', version: '0.12.0' })
+ expect(statuses.hermes).toEqual({ status: 'installed', version: 'Hermes Agent 0.16.0' })
})
- it('does not expose legacy Gemini status payloads', () => {
+ it('normalizes legacy Gemini status payloads to Antigravity', () => {
const statuses = normalizeAiAgentsStatus({
gemini: { installed: true, version: '0.5.1' },
})
- expect(statuses.antigravity).toBeUndefined()
+ expect(statuses.antigravity).toEqual({ status: 'installed', version: '0.5.1' })
})
it('cycles through the supported agents', () => {
expect(getNextAiAgentId('claude_code')).toBe('codex')
expect(getNextAiAgentId('codex')).toBe('copilot')
- expect(getNextAiAgentId('copilot')).toBe('claude_code')
- expect(getNextAiAgentId('opencode')).toBe('claude_code')
+ expect(getNextAiAgentId('copilot')).toBe('opencode')
+ expect(getNextAiAgentId('opencode')).toBe('pi')
+ expect(getNextAiAgentId('pi')).toBe('antigravity')
+ expect(getNextAiAgentId('antigravity')).toBe('kiro')
+ expect(getNextAiAgentId('kiro')).toBe('hermes')
+ expect(getNextAiAgentId('hermes')).toBe('claude_code')
})
})
diff --git a/product-source/hololake-platform/src/lib/aiAgents.ts b/product-source/hololake-platform/src/lib/aiAgents.ts
index 273e40f87..4f2ff70e0 100644
--- a/product-source/hololake-platform/src/lib/aiAgents.ts
+++ b/product-source/hololake-platform/src/lib/aiAgents.ts
@@ -40,40 +40,37 @@ export const AI_AGENT_DEFINITIONS: readonly AiAgentDefinition[] = [
shortLabel: 'Copilot',
installUrl: 'https://docs.github.com/en/copilot/how-tos/copilot-cli/set-up-copilot-cli/install-copilot-cli',
},
-] as const
-
-const LEGACY_AI_AGENT_DEFINITIONS: Partial> = {
- opencode: {
+ {
id: 'opencode',
label: 'OpenCode',
shortLabel: 'OpenCode',
installUrl: 'https://opencode.ai/docs/',
},
- pi: {
+ {
id: 'pi',
label: 'Pi',
shortLabel: 'Pi',
installUrl: 'https://pi.dev',
},
- antigravity: {
+ {
id: 'antigravity',
- label: 'Antigravity',
+ label: 'Antigravity CLI',
shortLabel: 'Antigravity',
installUrl: 'https://antigravity.google/docs/cli/install',
},
- kiro: {
+ {
id: 'kiro',
label: 'Kiro',
shortLabel: 'Kiro',
installUrl: 'https://kiro.dev/docs/cli',
},
- hermes: {
+ {
id: 'hermes',
label: 'Hermes Agent',
shortLabel: 'Hermes',
installUrl: 'https://hermes-agent.nousresearch.com/docs/getting-started/quickstart',
},
-}
+] as const
export function createAiAgentAvailability(status: AiAgentStatus = 'checking', version: string | null = null): AiAgentAvailability {
return { status, version }
@@ -97,6 +94,7 @@ export function createMissingAiAgentsStatus(): AiAgentsStatus {
}
export function normalizeStoredAiAgent(value: string | null | undefined): AiAgentId | null {
+ if (value === 'gemini') return 'antigravity'
if (AI_AGENT_DEFINITIONS.some((definition) => definition.id === value)) return value as AiAgentId
return null
}
@@ -106,9 +104,7 @@ export function resolveDefaultAiAgent(value: string | null | undefined): AiAgent
}
export function getAiAgentDefinition(agent: AiAgentId): AiAgentDefinition {
- return AI_AGENT_DEFINITIONS.find((definition) => definition.id === agent)
- ?? LEGACY_AI_AGENT_DEFINITIONS[agent]
- ?? AI_AGENT_DEFINITIONS[0]
+ return AI_AGENT_DEFINITIONS.find((definition) => definition.id === agent) ?? AI_AGENT_DEFINITIONS[0]
}
function normalizeAvailability(agent: { installed?: boolean | null; version?: string | null } | null | undefined): AiAgentAvailability {
@@ -120,7 +116,7 @@ function normalizeAvailability(agent: { installed?: boolean | null; version?: st
}
function payloadForAgent(payload: AiAgentsStatusPayload | null | undefined, agent: AiAgentId) {
- return payload?.[agent]
+ return agent === 'antigravity' ? payload?.antigravity ?? payload?.gemini : payload?.[agent]
}
export function normalizeAiAgentsStatus(payload: AiAgentsStatusPayload | null | undefined): AiAgentsStatus {
diff --git a/product-source/hololake-platform/src/lib/aiTargets.test.ts b/product-source/hololake-platform/src/lib/aiTargets.test.ts
index 8d804f783..73453a12e 100644
--- a/product-source/hololake-platform/src/lib/aiTargets.test.ts
+++ b/product-source/hololake-platform/src/lib/aiTargets.test.ts
@@ -59,7 +59,7 @@ describe('ai target provider contract', () => {
})
})
- it('falls back safely when the default target contains a hidden legacy agent', () => {
+ it('accepts legacy agent ids saved in the default target field', () => {
const target = resolveAiTarget({
default_ai_agent: 'claude_code',
default_ai_target: 'kiro',
@@ -67,12 +67,12 @@ describe('ai target provider contract', () => {
expect(target).toMatchObject({
kind: 'agent',
- agent: 'claude_code',
- id: 'agent:claude_code',
+ agent: 'kiro',
+ id: 'agent:kiro',
})
})
- it('falls back safely when the saved legacy default agent is no longer selectable', () => {
+ it('uses the legacy default agent when a saved agent target is stale', () => {
const target = resolveAiTarget({
default_ai_agent: 'kiro',
default_ai_target: 'agent:claude_code',
@@ -80,8 +80,8 @@ describe('ai target provider contract', () => {
expect(target).toMatchObject({
kind: 'agent',
- agent: 'claude_code',
- id: 'agent:claude_code',
+ agent: 'kiro',
+ id: 'agent:kiro',
})
})
diff --git a/product-source/hololake-platform/src/lib/educationWorkLake.test.ts b/product-source/hololake-platform/src/lib/educationWorkLake.test.ts
deleted file mode 100644
index 9166c3002..000000000
--- a/product-source/hololake-platform/src/lib/educationWorkLake.test.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-import { describe, expect, it } from 'vitest'
-import {
- educationMetricsFromSheet,
- isEducationWorkLakePath,
- routeEducationInstruction,
-} from './educationWorkLake'
-
-describe('routeEducationInstruction', () => {
- it.each([
- ['整理一下这个表格里面的数据', 'sheet'],
- ['对比一下并做一个对比图', 'chart'],
- ['把结果做成仪表盘', 'dashboard'],
- ['起草一份教研文档', 'document'],
- ['找一下课程知识库', 'knowledge'],
- ] as const)('routes %s to %s', (instruction, expectedSurface) => {
- expect(routeEducationInstruction(instruction).surface).toBe(expectedSurface)
- })
-
- it('returns a stable safe fallback without claiming execution', () => {
- expect(routeEducationInstruction('帮我看看')).toMatchObject({
- surface: 'knowledge',
- capabilityId: 'HL-MOD-KNOWLEDGE-001',
- reason: 'safe-fallback',
- })
- })
-
- it('prioritizes dashboards over their underlying chart keyword', () => {
- expect(routeEducationInstruction('把对比图放进仪表盘')).toMatchObject({
- surface: 'dashboard',
- capabilityId: 'HL-MOD-DASHBOARD-001',
- })
- })
-
- it('projects numeric spreadsheet rows into chart metrics', () => {
- expect(educationMetricsFromSheet('---\n_display: sheet\n---\n班级,平均分\n一班,86\n二班,91\n备注,待补')).toEqual([
- { label: '一班', value: 86 },
- { label: '二班', value: 91 },
- ])
- })
-
- it('recognizes the server-hosted education entry without matching similar words', () => {
- expect(isEducationWorkLakePath('/jd/education/')).toBe(true)
- expect(isEducationWorkLakePath('/jd/education/assets/app.js')).toBe(true)
- expect(isEducationWorkLakePath('/jd/educational/')).toBe(false)
- })
-})
diff --git a/product-source/hololake-platform/src/lib/educationWorkLake.ts b/product-source/hololake-platform/src/lib/educationWorkLake.ts
deleted file mode 100644
index 2782e2c98..000000000
--- a/product-source/hololake-platform/src/lib/educationWorkLake.ts
+++ /dev/null
@@ -1,92 +0,0 @@
-export const EDUCATION_SURFACES = [
- 'document',
- 'sheet',
- 'chart',
- 'dashboard',
- 'knowledge',
-] as const
-
-export type EducationSurface = typeof EDUCATION_SURFACES[number]
-
-export type EducationInstructionRoute = {
- capabilityId: string
- reason: 'keyword-match' | 'safe-fallback'
- surface: EducationSurface
-}
-
-export type EducationMetric = {
- label: string
- value: number
-}
-
-const ROUTES: ReadonlyArray<{
- capabilityId: string
- keywords: readonly string[]
- surface: EducationSurface
-}> = [
- {
- capabilityId: 'HL-MOD-DASHBOARD-001',
- keywords: ['仪表盘', '看板', 'dashboard'],
- surface: 'dashboard',
- },
- {
- capabilityId: 'HL-MOD-CHART-001',
- keywords: ['对比图', '图表', '柱状图', '折线图', 'chart'],
- surface: 'chart',
- },
- {
- capabilityId: 'HL-MOD-SHEET-001',
- keywords: ['表格', '数据', '计算', '统计', 'sheet', 'spreadsheet'],
- surface: 'sheet',
- },
- {
- capabilityId: 'HL-MOD-DOC-001',
- keywords: ['文档', '教案', '报告', '总结', '起草', 'document'],
- surface: 'document',
- },
- {
- capabilityId: 'HL-MOD-KNOWLEDGE-001',
- keywords: ['知识库', '课程', '资料', '搜索', '找', 'knowledge'],
- surface: 'knowledge',
- },
-]
-
-export function routeEducationInstruction(instruction: string): EducationInstructionRoute {
- const normalizedInstruction = instruction.trim().toLocaleLowerCase()
- const route = ROUTES.find((candidate) =>
- candidate.keywords.some((keyword) => normalizedInstruction.includes(keyword)))
-
- if (route) {
- return {
- capabilityId: route.capabilityId,
- reason: 'keyword-match',
- surface: route.surface,
- }
- }
-
- return {
- capabilityId: 'HL-MOD-KNOWLEDGE-001',
- reason: 'safe-fallback',
- surface: 'knowledge',
- }
-}
-
-export function educationMetricsFromSheet(content: string): EducationMetric[] {
- const body = content.includes('---')
- ? content.split('---').slice(2).join('---')
- : content
-
- return body
- .trim()
- .split(/\r?\n/)
- .slice(1)
- .map((row) => {
- const [label = '', value = ''] = row.split(',')
- return { label: label.trim(), value: Number(value.trim()) }
- })
- .filter((metric) => metric.label.length > 0 && Number.isFinite(metric.value))
-}
-
-export function isEducationWorkLakePath(pathname: string): boolean {
- return pathname.split('/').filter(Boolean).includes('education')
-}
diff --git a/product-source/hololake-platform/src/lib/guanghuLivingSystem.ts b/product-source/hololake-platform/src/lib/guanghuLivingSystem.ts
index 78c8caf48..d08d59068 100644
--- a/product-source/hololake-platform/src/lib/guanghuLivingSystem.ts
+++ b/product-source/hololake-platform/src/lib/guanghuLivingSystem.ts
@@ -9,7 +9,6 @@ export const GUANGHU_CHANNEL_ROUTES = [
'eternal-lake-heart',
'light-lake',
'heartbeat-core',
- 'education-work-lake',
'love-core',
'servers',
] as const
diff --git a/product-source/hololake-platform/src/lib/locales/be-BY.json b/product-source/hololake-platform/src/lib/locales/be-BY.json
index 2c1f6734b..9d58eb70f 100644
--- a/product-source/hololake-platform/src/lib/locales/be-BY.json
+++ b/product-source/hololake-platform/src/lib/locales/be-BY.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/be-Latn.json b/product-source/hololake-platform/src/lib/locales/be-Latn.json
index 279685e80..710487faa 100644
--- a/product-source/hololake-platform/src/lib/locales/be-Latn.json
+++ b/product-source/hololake-platform/src/lib/locales/be-Latn.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/de-DE.json b/product-source/hololake-platform/src/lib/locales/de-DE.json
index b1389370f..c8bc01ccd 100644
--- a/product-source/hololake-platform/src/lib/locales/de-DE.json
+++ b/product-source/hololake-platform/src/lib/locales/de-DE.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/en.json b/product-source/hololake-platform/src/lib/locales/en.json
index e81a05aff..5289e18de 100644
--- a/product-source/hololake-platform/src/lib/locales/en.json
+++ b/product-source/hololake-platform/src/lib/locales/en.json
@@ -1000,20 +1000,6 @@
"locale.ukUA": "Ukrainian",
"locale.svSE": "Swedish",
"locale.skSK": "Slovak",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
diff --git a/product-source/hololake-platform/src/lib/locales/es-419.json b/product-source/hololake-platform/src/lib/locales/es-419.json
index f8a875986..4bd663fa1 100644
--- a/product-source/hololake-platform/src/lib/locales/es-419.json
+++ b/product-source/hololake-platform/src/lib/locales/es-419.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/es-ES.json b/product-source/hololake-platform/src/lib/locales/es-ES.json
index dd8827a95..37aee57e2 100644
--- a/product-source/hololake-platform/src/lib/locales/es-ES.json
+++ b/product-source/hololake-platform/src/lib/locales/es-ES.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/fr-FR.json b/product-source/hololake-platform/src/lib/locales/fr-FR.json
index 4d5ccdd78..c5eee5b44 100644
--- a/product-source/hololake-platform/src/lib/locales/fr-FR.json
+++ b/product-source/hololake-platform/src/lib/locales/fr-FR.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/id-ID.json b/product-source/hololake-platform/src/lib/locales/id-ID.json
index 0d79117e9..626bfa83d 100644
--- a/product-source/hololake-platform/src/lib/locales/id-ID.json
+++ b/product-source/hololake-platform/src/lib/locales/id-ID.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/it-IT.json b/product-source/hololake-platform/src/lib/locales/it-IT.json
index 827020573..03778eb77 100644
--- a/product-source/hololake-platform/src/lib/locales/it-IT.json
+++ b/product-source/hololake-platform/src/lib/locales/it-IT.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/ja-JP.json b/product-source/hololake-platform/src/lib/locales/ja-JP.json
index 3f6100b49..0051b43d6 100644
--- a/product-source/hololake-platform/src/lib/locales/ja-JP.json
+++ b/product-source/hololake-platform/src/lib/locales/ja-JP.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/ko-KR.json b/product-source/hololake-platform/src/lib/locales/ko-KR.json
index e9767b58e..a37e8750f 100644
--- a/product-source/hololake-platform/src/lib/locales/ko-KR.json
+++ b/product-source/hololake-platform/src/lib/locales/ko-KR.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/pl-PL.json b/product-source/hololake-platform/src/lib/locales/pl-PL.json
index 1fae53aa8..5cf8e1809 100644
--- a/product-source/hololake-platform/src/lib/locales/pl-PL.json
+++ b/product-source/hololake-platform/src/lib/locales/pl-PL.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/pt-BR.json b/product-source/hololake-platform/src/lib/locales/pt-BR.json
index bf9234fde..3d16c56ac 100644
--- a/product-source/hololake-platform/src/lib/locales/pt-BR.json
+++ b/product-source/hololake-platform/src/lib/locales/pt-BR.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/pt-PT.json b/product-source/hololake-platform/src/lib/locales/pt-PT.json
index 46c9504f1..415925214 100644
--- a/product-source/hololake-platform/src/lib/locales/pt-PT.json
+++ b/product-source/hololake-platform/src/lib/locales/pt-PT.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/ru-RU.json b/product-source/hololake-platform/src/lib/locales/ru-RU.json
index 2827e588d..b54a4c953 100644
--- a/product-source/hololake-platform/src/lib/locales/ru-RU.json
+++ b/product-source/hololake-platform/src/lib/locales/ru-RU.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/sk-SK.json b/product-source/hololake-platform/src/lib/locales/sk-SK.json
index 32ae7a000..eb106a9bb 100644
--- a/product-source/hololake-platform/src/lib/locales/sk-SK.json
+++ b/product-source/hololake-platform/src/lib/locales/sk-SK.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/sv-SE.json b/product-source/hololake-platform/src/lib/locales/sv-SE.json
index ebd84fee7..d6393c95f 100644
--- a/product-source/hololake-platform/src/lib/locales/sv-SE.json
+++ b/product-source/hololake-platform/src/lib/locales/sv-SE.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/uk-UA.json b/product-source/hololake-platform/src/lib/locales/uk-UA.json
index ca9141d75..6d3cb164f 100644
--- a/product-source/hololake-platform/src/lib/locales/uk-UA.json
+++ b/product-source/hololake-platform/src/lib/locales/uk-UA.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/vi.json b/product-source/hololake-platform/src/lib/locales/vi.json
index aac9bd025..a8c7b5ac9 100644
--- a/product-source/hololake-platform/src/lib/locales/vi.json
+++ b/product-source/hololake-platform/src/lib/locales/vi.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}
diff --git a/product-source/hololake-platform/src/lib/locales/zh-CN.json b/product-source/hololake-platform/src/lib/locales/zh-CN.json
index f9735c5b2..b398aea61 100644
--- a/product-source/hololake-platform/src/lib/locales/zh-CN.json
+++ b/product-source/hololake-platform/src/lib/locales/zh-CN.json
@@ -1000,20 +1000,6 @@
"locale.ukUA": "乌克兰语",
"locale.svSE": "瑞典语",
"locale.skSK": "斯洛伐克语",
- "education.title": "教育工作湖",
- "education.description": "人格体通过语言指令调出并编辑文档、表格、对比图、仪表盘与知识,所有呈现在用户设备完成。",
- "education.hostingState": "临时隔离承载",
- "education.instructionLabel": "告诉人格体你要处理什么",
- "education.instructionPlaceholder": "例如:整理这个表格,并生成一个对比仪表盘",
- "education.runInstruction": "运行指令",
- "education.openedInsideApp": "已在应用内打开",
- "education.surfaceNavigation": "教育工作区界面",
- "education.document": "文档",
- "education.sheet": "表格",
- "education.chart": "对比图",
- "education.dashboard": "仪表盘",
- "education.knowledge": "知识",
- "education.documentLabel": "教研文档内容",
"hololake.home.ariaLabel": "HoloLake Era 世界入口",
"hololake.home.eyebrow": "光湖语言世界 · 第五域",
"hololake.home.lead": "语言人格驱动操作系统",
diff --git a/product-source/hololake-platform/src/lib/locales/zh-TW.json b/product-source/hololake-platform/src/lib/locales/zh-TW.json
index 093e9be45..fb0195d6a 100644
--- a/product-source/hololake-platform/src/lib/locales/zh-TW.json
+++ b/product-source/hololake-platform/src/lib/locales/zh-TW.json
@@ -1121,19 +1121,5 @@
"hololake.login.errorTitle": "The world entrance did not open",
"hololake.login.retry": "Try again",
"hololake.login.privacy": "HoloLake never receives or stores your mailbox address. The Fifth Domain controller resolves the bound Guanghu number.",
- "hololake.login.nodeReady": "Fifth Domain world entrance ready",
- "education.title": "Education Work Lake",
- "education.description": "A client-rendered workspace where the persona can open and edit documents, spreadsheets, charts, dashboards, and knowledge through language instructions.",
- "education.hostingState": "Temporary isolated hosting",
- "education.instructionLabel": "Tell the persona what you want to work on",
- "education.instructionPlaceholder": "For example: organize this spreadsheet and create a comparison dashboard",
- "education.runInstruction": "Run instruction",
- "education.openedInsideApp": "Opened inside the app",
- "education.surfaceNavigation": "Education workspace surfaces",
- "education.document": "Document",
- "education.sheet": "Spreadsheet",
- "education.chart": "Chart",
- "education.dashboard": "Dashboard",
- "education.knowledge": "Knowledge",
- "education.documentLabel": "Education document content"
+ "hololake.login.nodeReady": "Fifth Domain world entrance ready"
}