feat: add Fifth Domain channel prototype
This commit is contained in:
parent
e4983479ec
commit
9bb8ae1e55
@ -166,6 +166,23 @@ Editor responsiveness is also protected by a synthetic browser benchmark. `pnpm
|
||||
|
||||
## System Overview
|
||||
|
||||
### Guanghu channel prototype
|
||||
|
||||
The HoloLake home surface is the system/channel navigation layer above the existing knowledge-base workspace. The first prototype keeps the hierarchy explicit instead of inferring ownership from server placement:
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
ZC["Zero Core Channel"] --> FD["Fifth Domain"]
|
||||
FD --> PF["Cang Er: Pufferfish Language Subsystem"]
|
||||
FD --> ELH["Ice Shuo: Eternal Lake Heart System"]
|
||||
ELH --> LL["Light Lake Subsystem: persona routes"]
|
||||
ELH --> HC["Heartbeat Core Channel: human work and modules"]
|
||||
ELH --> LC["Zhizhi: Love Core Subsystem"]
|
||||
LC --> TM["See You Tomorrow Channel"]
|
||||
```
|
||||
|
||||
`HoloLakeHome` owns only transient navigation state. It does not persist system ownership, server addresses, or credentials. The existing vault remains the filesystem source of truth, and entering the knowledge module returns to the normal Tolaria workspace. A real server connection may later back a system card without changing that card's logical parent.
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
subgraph TW["Tauri v2 Window"]
|
||||
|
||||
26
docs/adr/0153-guanghu-channel-navigation-layer.md
Normal file
26
docs/adr/0153-guanghu-channel-navigation-layer.md
Normal file
@ -0,0 +1,26 @@
|
||||
# ADR-0153: Guanghu channel navigation layer
|
||||
|
||||
## Status
|
||||
|
||||
Accepted for the macOS internal prototype.
|
||||
|
||||
## Context
|
||||
|
||||
HoloLake already provides a mature filesystem-backed knowledge workspace, media preview, Git surfaces, and AI workspace. Guanghu needs a system-level entry that can open complete application modules and human/persona channels without redefining the knowledge base as the whole product.
|
||||
|
||||
The Fifth Domain hierarchy also distinguishes logical ownership from physical server attachment. Cang Er's Pufferfish Language Subsystem is a Fifth Domain root system. Zhizhi can connect through a real independent server, but her Love Core Subsystem remains inside Ice Shuo's Eternal Lake Heart System.
|
||||
|
||||
## Decision
|
||||
|
||||
Add a navigation layer to the existing HoloLake home surface:
|
||||
|
||||
`Zero Core Channel → Fifth Domain → root human systems → internal subsystems and channels`.
|
||||
|
||||
The prototype uses transient renderer state and existing shadcn buttons. It does not introduce a new database, server credential, or persisted ownership model. Heartbeat Core opens existing modules, beginning with the Tolaria knowledge workspace and a visible Short Drama Video AI placeholder. Light Lake exposes persona-system routes. Love Core contains the See You Tomorrow channel.
|
||||
|
||||
## Consequences
|
||||
|
||||
- The knowledge base remains an application module and filesystem remains its authority.
|
||||
- Logical system ownership is visible before real-server integration.
|
||||
- Real server attachment can be added later without moving Zhizhi to the Fifth Domain root.
|
||||
- The first prototype validates navigation and hierarchy; it does not yet install modules, connect remote servers, or execute persona operations.
|
||||
@ -2,7 +2,7 @@
|
||||
"name": "tolaria",
|
||||
"private": true,
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.6",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@ -13,6 +13,7 @@ const claudeCodeOnboardingStorageState = {
|
||||
origin: baseURL,
|
||||
localStorage: [
|
||||
{ name: 'tolaria:claude-code-onboarding-dismissed', value: '1' },
|
||||
{ name: 'tolaria:smoke-skip-hololake-home', value: '1' },
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
@ -4,7 +4,31 @@ packages:
|
||||
ignoredBuiltDependencies:
|
||||
- esbuild
|
||||
|
||||
overrides:
|
||||
'@hono/node-server': 1.19.13
|
||||
express-rate-limit: 8.2.2
|
||||
hono: 4.12.25
|
||||
ip-address: 10.1.1
|
||||
mermaid>uuid: 11.1.1
|
||||
path-to-regexp: 8.4.0
|
||||
fast-uri: 3.1.2
|
||||
fast-xml-builder: 1.1.7
|
||||
flatted: 3.4.2
|
||||
minimatch@3.1.2: 3.1.5
|
||||
minimatch@3.1.3: 3.1.5
|
||||
minimatch@9.0.5: 9.0.9
|
||||
minimatch@9.0.6: 9.0.9
|
||||
picomatch: 4.0.4
|
||||
postcss: 8.5.10
|
||||
protobufjs: 7.6.3
|
||||
linkify-it: 5.0.1
|
||||
qs: 6.15.2
|
||||
rollup: 4.59.0
|
||||
undici: 7.25.0
|
||||
'@blocknote/core>uuid': 11.1.1
|
||||
|
||||
patchedDependencies:
|
||||
'@blocknote/code-block@0.46.2': patches/@blocknote__code-block@0.46.2.patch
|
||||
'@blocknote/core@0.46.2': patches/@blocknote__core@0.46.2.patch
|
||||
'@blocknote/react@0.46.2': patches/@blocknote__react@0.46.2.patch
|
||||
'@tiptap/extension-link@3.19.0': patches/@tiptap__extension-link@3.19.0.patch
|
||||
|
||||
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@ -5547,7 +5547,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tolaria"
|
||||
version = "0.1.5"
|
||||
version = "0.1.6"
|
||||
dependencies = [
|
||||
"base64 0.22.1",
|
||||
"chrono",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tolaria"
|
||||
version = "0.1.5"
|
||||
version = "0.1.6"
|
||||
description = "Personal knowledge and life management app"
|
||||
authors = ["Luca Rossi"]
|
||||
license = "AGPL-3.0-or-later"
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
||||
"productName": "HoloLake Era",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.6",
|
||||
"identifier": "com.guanghu.desktop",
|
||||
"build": {
|
||||
"frontendDist": "../dist",
|
||||
|
||||
26
src/App.css
26
src/App.css
@ -43,13 +43,37 @@ body.mac-chrome .hololake-bar { padding-left: 92px; }
|
||||
.hololake-home__signal-grid article { padding: 18px; }.hololake-home__signal-grid span, .hololake-home__signal-grid small { display: block; color: var(--text-secondary); font-size: 11px; }.hololake-home__signal-grid strong { display: block; margin: 10px 0 6px; font-size: 15px; }
|
||||
.hololake-home__modules { margin-top: 44px; }.hololake-home__section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 14px; }.hololake-home__section-head p { margin: 0; color: var(--text-secondary); font-size: 13px; }
|
||||
.hololake-module { min-height: 185px; padding: 20px; display: flex; flex-direction: column; }.hololake-module__number { color: var(--accent-blue); font-family: monospace; font-size: 12px; }.hololake-module h2 { margin: auto 0 8px; font-size: 20px; font-weight: 600; }.hololake-module p { margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.7; }.hololake-module button { margin-top: 19px; padding: 0; border: 0; color: var(--accent-blue); background: transparent; text-align: left; font: inherit; cursor: pointer; }.hololake-module__soon { margin-top: 19px; color: var(--text-muted); font-size: 12px; }
|
||||
.channel-breadcrumb { display: flex; align-items: center; min-height: 34px; margin-bottom: 34px; color: var(--text-muted); }
|
||||
.channel-breadcrumb button { padding-inline: 8px; color: var(--text-secondary); }
|
||||
.channel-breadcrumb span { color: var(--border-strong); }
|
||||
.channel-stage { width: min(1080px, 100%); margin: 0 auto; animation: channel-stage-in .24s ease-out; }
|
||||
.channel-stage--root { display: flex; min-height: min(620px, calc(100vh - 210px)); flex-direction: column; align-items: flex-start; justify-content: center; }
|
||||
.channel-stage__eyebrow, .channel-card__eyebrow { color: var(--accent-blue); font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
|
||||
.channel-stage h1 { max-width: 820px; margin: 12px 0 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(44px, 6vw, 78px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
|
||||
.channel-stage__lead { max-width: 720px; margin: 22px 0 34px; color: var(--text-secondary); font-size: 15px; line-height: 1.8; }
|
||||
.channel-stage--root .hololake-home__primary { margin-top: 8px; }
|
||||
.channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
|
||||
.channel-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
|
||||
.channel-card { display: flex; min-height: 230px; flex-direction: column; padding: 24px; border: 1px solid var(--border-default); border-radius: 12px; background: linear-gradient(145deg, var(--surface-card), color-mix(in srgb, var(--surface-card) 92%, var(--accent-blue))); box-shadow: 0 8px 28px color-mix(in srgb, #000 7%, transparent); }
|
||||
.channel-card h2 { margin: auto 0 10px; font-size: 21px; font-weight: 650; letter-spacing: -.02em; }
|
||||
.channel-card p { min-height: 46px; margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.7; }
|
||||
.channel-card button { align-self: flex-start; margin-top: 20px; padding: 0; color: var(--accent-blue); }
|
||||
.channel-card__status { margin-top: 20px; color: var(--text-muted); font-size: 12px; }
|
||||
.channel-stage__tools { display: flex; gap: 10px; margin-top: 18px; }
|
||||
.persona-route-list { display: grid; gap: 12px; max-width: 820px; margin: 0; padding: 0; list-style: none; }
|
||||
.persona-route-list li { display: grid; grid-template-columns: 140px 1fr auto; align-items: center; gap: 18px; padding: 20px; border: 1px solid var(--border-default); border-radius: 10px; background: var(--surface-card); }
|
||||
.persona-route-list code { color: var(--accent-blue); font-size: 11px; }
|
||||
.persona-route-list strong { font-size: 15px; }
|
||||
.persona-route-list span { color: var(--text-muted); }
|
||||
@keyframes channel-stage-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
|
||||
.guanghu-architecture { max-width: min(760px, calc(100vw - 32px)); max-height: min(760px, calc(100vh - 32px)); overflow: auto; background: var(--surface-card); color: var(--text-primary); }
|
||||
.guanghu-architecture__routes { display: grid; gap: 10px; margin: 8px 0 0; padding: 0; list-style: none; }
|
||||
.guanghu-architecture__routes li { display: grid; grid-template-columns: minmax(128px, auto) 1fr; gap: 16px; padding: 14px; border: 1px solid var(--border-default); border-radius: 8px; background: var(--surface-app); }
|
||||
.guanghu-architecture__routes code { align-self: start; color: var(--accent-blue); font-size: 11px; }
|
||||
.guanghu-architecture__routes strong { font-size: 14px; }.guanghu-architecture__routes p { margin: 5px 0 0; color: var(--text-secondary); font-size: 12px; line-height: 1.65; }
|
||||
.guanghu-architecture__route { overflow-x: auto; margin: 2px 0 0; padding: 12px; border-radius: 6px; color: var(--text-secondary); background: var(--surface-app); font: 11px/1.6 monospace; white-space: nowrap; }
|
||||
@media (max-width: 780px) { .hololake-home__signal-grid, .hololake-home__module-grid { grid-template-columns: 1fr; }.hololake-bar__context { display: none; }.hololake-home { padding: 28px; } }
|
||||
@media (max-width: 900px) { .channel-grid--three { grid-template-columns: 1fr; }.channel-card { min-height: 190px; } }
|
||||
@media (max-width: 780px) { .hololake-home__signal-grid, .hololake-home__module-grid, .channel-grid { grid-template-columns: 1fr; }.hololake-bar__context { display: none; }.hololake-home { padding: 28px; }.channel-breadcrumb { overflow-x: auto; }.channel-stage h1 { font-size: 42px; } }
|
||||
@media (max-width: 700px) { body.mac-chrome .hololake-bar { padding-left: 84px; }.hololake-bar__line { display: none; } }
|
||||
|
||||
.app {
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { act, render as testingLibraryRender, screen, fireEvent, waitFor, within } from '@testing-library/react'
|
||||
import type { ReactElement, ReactNode } from 'react'
|
||||
import { useEffect, type ReactElement, type ReactNode } from 'react'
|
||||
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
||||
import { DEFAULT_VAULTS } from './hooks/useVaultSwitcher'
|
||||
import { formatShortcutDisplay } from './hooks/appCommandCatalog'
|
||||
@ -450,6 +450,15 @@ vi.mock('./components/tolariaEditorFormatting', () => ({
|
||||
TolariaFormattingToolbarController: () => null,
|
||||
}))
|
||||
|
||||
// App shell tests exercise the knowledge-base workspace. Channel navigation has
|
||||
// its own focused suite, so enter the workspace as soon as the home is mounted.
|
||||
vi.mock('./components/HoloLakeHome', () => ({
|
||||
HoloLakeHome: ({ onEnterKnowledgeBase }: { onEnterKnowledgeBase: () => void }) => {
|
||||
useEffect(() => onEnterKnowledgeBase(), [onEnterKnowledgeBase])
|
||||
return null
|
||||
},
|
||||
}))
|
||||
|
||||
import App from './App'
|
||||
import { TooltipProvider } from './components/ui/tooltip'
|
||||
import { useUpdater } from './hooks/useUpdater'
|
||||
|
||||
@ -170,7 +170,10 @@ function App() {
|
||||
|
||||
function MainApp({ noteWindowParams }: { noteWindowParams: NoteWindowParams | null }) {
|
||||
const aiWorkspaceWindow = false
|
||||
const [showHoloLakeHome, setShowHoloLakeHome] = useState(() => noteWindowParams === null)
|
||||
const [showHoloLakeHome, setShowHoloLakeHome] = useState(() => {
|
||||
const smokeTestSkipsHome = import.meta.env.DEV && localStorage.getItem('tolaria:smoke-skip-hololake-home') === '1'
|
||||
return noteWindowParams === null && !smokeTestSkipsHome
|
||||
})
|
||||
const { dragRegionRef } = useDragRegion<HTMLElement>()
|
||||
const [selection, setSelection] = useState<SidebarSelection>(DEFAULT_SELECTION)
|
||||
const [noteListFilter, setNoteListFilter] = useState<NoteListFilter>('open')
|
||||
|
||||
@ -13,9 +13,69 @@ vi.mock('../lib/telemetry', () => ({ trackEvent: trackEventMock }))
|
||||
describe('HoloLakeHome', () => {
|
||||
beforeEach(() => vi.clearAllMocks())
|
||||
|
||||
it('walks the Fifth Domain hierarchy before exposing Eternal Lake Heart subsystems', () => {
|
||||
render(<HoloLakeHome locale="zh-CN" onEnterKnowledgeBase={vi.fn()} />)
|
||||
|
||||
expect(screen.getByRole('heading', { name: '零点原核频道' })).toBeInTheDocument()
|
||||
expect(screen.queryByText('爱之核心子系统')).not.toBeInTheDocument()
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入第五域/ }))
|
||||
|
||||
expect(screen.getByRole('heading', { name: '第五域' })).toBeInTheDocument()
|
||||
expect(screen.getByText('胖头鱼语言子系统')).toBeInTheDocument()
|
||||
expect(screen.getByText('永恒湖心系统')).toBeInTheDocument()
|
||||
expect(screen.queryByText('爱之核心子系统')).not.toBeInTheDocument()
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入永恒湖心系统/ }))
|
||||
|
||||
expect(screen.getByRole('heading', { name: '永恒湖心系统' })).toBeInTheDocument()
|
||||
expect(screen.getByText('光之湖子系统')).toBeInTheDocument()
|
||||
expect(screen.getByText('心跳核心频道')).toBeInTheDocument()
|
||||
expect(screen.getByText('爱之核心子系统')).toBeInTheDocument()
|
||||
})
|
||||
|
||||
it('keeps Zhizhi inside Eternal Lake Heart and routes to Tomorrow channel', () => {
|
||||
render(<HoloLakeHome locale="zh-CN" onEnterKnowledgeBase={vi.fn()} />)
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入第五域/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入永恒湖心系统/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入爱之核心子系统/ }))
|
||||
|
||||
expect(screen.getByRole('heading', { name: '爱之核心子系统' })).toBeInTheDocument()
|
||||
expect(screen.getByText('明天见频道')).toBeInTheDocument()
|
||||
expect(screen.getByText(/之之的真实服务器/)).toBeInTheDocument()
|
||||
})
|
||||
|
||||
it('opens Ice Shuo knowledge work from the Heartbeat Core channel', () => {
|
||||
const onEnterKnowledgeBase = vi.fn()
|
||||
render(<HoloLakeHome locale="zh-CN" onEnterKnowledgeBase={onEnterKnowledgeBase} />)
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入第五域/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入永恒湖心系统/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入心跳核心频道/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /打开知识库/ }))
|
||||
|
||||
expect(onEnterKnowledgeBase).toHaveBeenCalledOnce()
|
||||
})
|
||||
|
||||
it('shows Ice Shuo persona routes under the Light Lake subsystem', () => {
|
||||
render(<HoloLakeHome locale="zh-CN" onEnterKnowledgeBase={vi.fn()} />)
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入第五域/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入永恒湖心系统/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入光之湖子系统/ }))
|
||||
|
||||
expect(screen.getByText('铸渊人格系统路径')).toBeInTheDocument()
|
||||
expect(screen.getByText('霜砚人格系统路径')).toBeInTheDocument()
|
||||
})
|
||||
|
||||
it('opens the public domestic development repository', () => {
|
||||
render(<HoloLakeHome locale="zh-CN" onEnterKnowledgeBase={vi.fn()} />)
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入第五域/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入永恒湖心系统/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入心跳核心频道/ }))
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /打开研发仓库/ }))
|
||||
|
||||
expect(openExternalUrlMock).toHaveBeenCalledWith(HOLOLAKE_DEVELOPMENT_REPOSITORY_URL)
|
||||
@ -27,6 +87,10 @@ describe('HoloLakeHome', () => {
|
||||
it('renders the bundled GLS architecture without a private-domain dependency', () => {
|
||||
const { container } = render(<HoloLakeHome locale="zh-CN" onEnterKnowledgeBase={vi.fn()} />)
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入第五域/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入永恒湖心系统/ }))
|
||||
fireEvent.click(screen.getByRole('button', { name: /进入心跳核心频道/ }))
|
||||
|
||||
fireEvent.click(screen.getByRole('button', { name: /查看 GLS 架构/ }))
|
||||
|
||||
expect(screen.getByRole('dialog', { name: 'GLS 系统架构' })).toBeInTheDocument()
|
||||
|
||||
@ -20,17 +20,16 @@ type HoloLakeHomeProps = {
|
||||
onEnterKnowledgeBase: () => void
|
||||
}
|
||||
|
||||
const modules: Array<{
|
||||
title: TranslationKey
|
||||
description: TranslationKey
|
||||
action: TranslationKey
|
||||
kind: 'knowledge' | 'architecture' | 'repository' | 'authorization'
|
||||
}> = [
|
||||
{ title: 'hololake.home.moduleKnowledgeTitle', description: 'hololake.home.moduleKnowledgeDescription', action: 'hololake.home.enterKnowledge', kind: 'knowledge' },
|
||||
{ title: 'hololake.home.moduleArchitectureTitle', description: 'hololake.home.moduleArchitectureDescription', action: 'hololake.home.openArchitecture', kind: 'architecture' },
|
||||
{ title: 'hololake.home.moduleRepositoryTitle', description: 'hololake.home.moduleRepositoryDescription', action: 'hololake.home.openRepository', kind: 'repository' },
|
||||
{ title: 'hololake.home.moduleAuthorizationTitle', description: 'hololake.home.moduleAuthorizationDescription', action: 'hololake.home.authorizationStatus', kind: 'authorization' },
|
||||
]
|
||||
type ChannelRoute = 'zero-core' | 'fifth-domain' | 'eternal-lake-heart' | 'light-lake' | 'heartbeat-core' | 'love-core'
|
||||
|
||||
type RouteCardProps = {
|
||||
action?: string
|
||||
description: string
|
||||
eyebrow: string
|
||||
onOpen?: () => void
|
||||
status?: string
|
||||
title: string
|
||||
}
|
||||
|
||||
const architectureRoutes: Array<[string, TranslationKey, TranslationKey]> = [
|
||||
['GLW-ENTRY-001', 'hololake.architecture.worldEntry', 'hololake.architecture.worldEntryDescription'],
|
||||
@ -40,10 +39,33 @@ const architectureRoutes: Array<[string, TranslationKey, TranslationKey]> = [
|
||||
['ELH-LAMP-001', 'hololake.architecture.lakeLamp', 'hololake.architecture.lakeLampDescription'],
|
||||
]
|
||||
|
||||
function RouteCard({ action, description, eyebrow, onOpen, status, title }: RouteCardProps) {
|
||||
return (
|
||||
<article className="channel-card">
|
||||
<span className="channel-card__eyebrow">{eyebrow}</span>
|
||||
<h2>{title}</h2>
|
||||
<p>{description}</p>
|
||||
{onOpen && action
|
||||
? <Button variant="link" onClick={onOpen}>{action} <span>→</span></Button>
|
||||
: <span className="channel-card__status">{status}</span>}
|
||||
</article>
|
||||
)
|
||||
}
|
||||
|
||||
function PersonaRoute({ id, title }: { id: string; title: string }) {
|
||||
return <li><code>{id}</code><strong>{title}</strong><span>→</span></li>
|
||||
}
|
||||
|
||||
export function HoloLakeHome({ locale, onEnterKnowledgeBase }: HoloLakeHomeProps) {
|
||||
const [route, setRoute] = useState<ChannelRoute>('zero-core')
|
||||
const [architectureOpen, setArchitectureOpen] = useState(false)
|
||||
const t = (key: TranslationKey) => translate(locale, key)
|
||||
|
||||
const navigate = (nextRoute: ChannelRoute) => {
|
||||
trackEvent('guanghu_channel_opened', { route: nextRoute })
|
||||
setRoute(nextRoute)
|
||||
}
|
||||
|
||||
const openArchitecture = () => {
|
||||
trackEvent('guanghu_architecture_opened', { route: 'GLS-SYS-ARCH-001' })
|
||||
setArchitectureOpen(true)
|
||||
@ -54,47 +76,99 @@ export function HoloLakeHome({ locale, onEnterKnowledgeBase }: HoloLakeHomeProps
|
||||
void openExternalUrl(HOLOLAKE_DEVELOPMENT_REPOSITORY_URL)
|
||||
}
|
||||
|
||||
const runModuleAction = (kind: typeof modules[number]['kind']) => {
|
||||
if (kind === 'knowledge') onEnterKnowledgeBase()
|
||||
if (kind === 'architecture') openArchitecture()
|
||||
if (kind === 'repository') openDevelopmentRepository()
|
||||
const openKnowledgeBase = () => {
|
||||
trackEvent('guanghu_channel_module_opened', { channel: 'heartbeat-core', module: 'knowledge-base' })
|
||||
onEnterKnowledgeBase()
|
||||
}
|
||||
|
||||
const renderRoute = () => {
|
||||
if (route === 'zero-core') {
|
||||
return (
|
||||
<section className="channel-stage channel-stage--root">
|
||||
<p className="channel-stage__eyebrow">ZERO CORE · 000</p>
|
||||
<h1>{t('hololake.channel.zeroCoreTitle')}</h1>
|
||||
<p className="channel-stage__lead">{t('hololake.channel.zeroCoreDescription')}</p>
|
||||
<Button className="hololake-home__primary" onClick={() => navigate('fifth-domain')}>{t('hololake.channel.enterFifthDomain')} <span>→</span></Button>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
if (route === 'fifth-domain') {
|
||||
return (
|
||||
<section className="channel-stage">
|
||||
<h1>{t('hololake.channel.fifthDomainTitle')}</h1>
|
||||
<p className="channel-stage__lead">{t('hololake.channel.fifthDomainDescription')}</p>
|
||||
<div className="channel-grid">
|
||||
<RouteCard eyebrow="CANG ER · EXTERNAL NODE" title={t('hololake.channel.pufferfishTitle')} description={t('hololake.channel.pufferfishDescription')} status={t('hololake.channel.externalServerPending')} />
|
||||
<RouteCard eyebrow="ICE SHUO · PERSONAL SYSTEM" title={t('hololake.channel.eternalLakeTitle')} description={t('hololake.channel.eternalLakeDescription')} action={t('hololake.channel.enterEternalLake')} onOpen={() => navigate('eternal-lake-heart')} />
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
if (route === 'eternal-lake-heart') {
|
||||
return (
|
||||
<section className="channel-stage">
|
||||
<h1>{t('hololake.channel.eternalLakeTitle')}</h1>
|
||||
<p className="channel-stage__lead">{t('hololake.channel.eternalLakeDescription')}</p>
|
||||
<div className="channel-grid channel-grid--three">
|
||||
<RouteCard eyebrow="PERSONA HOME" title={t('hololake.channel.lightLakeTitle')} description={t('hololake.channel.lightLakeDescription')} action={t('hololake.channel.enterLightLake')} onOpen={() => navigate('light-lake')} />
|
||||
<RouteCard eyebrow="ICE SHUO · HUMAN SPACE" title={t('hololake.channel.heartbeatTitle')} description={t('hololake.channel.heartbeatDescription')} action={t('hololake.channel.enterHeartbeat')} onOpen={() => navigate('heartbeat-core')} />
|
||||
<RouteCard eyebrow="ZHI ZHI · INTERNAL SUBSYSTEM" title={t('hololake.channel.loveCoreTitle')} description={t('hololake.channel.loveCoreDescription')} action={t('hololake.channel.enterLoveCore')} onOpen={() => navigate('love-core')} />
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
if (route === 'light-lake') {
|
||||
return (
|
||||
<section className="channel-stage">
|
||||
<h1>{t('hololake.channel.lightLakeTitle')}</h1>
|
||||
<p className="channel-stage__lead">{t('hololake.channel.lightLakeDescription')}</p>
|
||||
<ul className="persona-route-list">
|
||||
<PersonaRoute id="ICE-GL-ZY001" title={t('hololake.channel.zhuyuanRoute')} />
|
||||
<PersonaRoute id="ICE-GL-SY001" title={t('hololake.channel.shuangyanRoute')} />
|
||||
</ul>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
if (route === 'love-core') {
|
||||
return (
|
||||
<section className="channel-stage">
|
||||
<h1>{t('hololake.channel.loveCoreTitle')}</h1>
|
||||
<p className="channel-stage__lead">{t('hololake.channel.loveCoreDescription')}</p>
|
||||
<RouteCard eyebrow="ZHI ZHI · CHANNEL" title={t('hololake.channel.tomorrowTitle')} description={t('hololake.channel.tomorrowDescription')} status={t('hololake.channel.realServerConnection')} />
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
return (
|
||||
<section className="channel-stage">
|
||||
<h1>{t('hololake.channel.heartbeatTitle')}</h1>
|
||||
<p className="channel-stage__lead">{t('hololake.channel.heartbeatDescription')}</p>
|
||||
<div className="channel-grid channel-grid--three">
|
||||
<RouteCard eyebrow="MODULE · KNOWLEDGE" title={t('hololake.home.moduleKnowledgeTitle')} description={t('hololake.home.moduleKnowledgeDescription')} action={t('hololake.channel.openKnowledge')} onOpen={openKnowledgeBase} />
|
||||
<RouteCard eyebrow="MODULE · VIDEO AI" title={t('hololake.channel.videoAiTitle')} description={t('hololake.channel.videoAiDescription')} status={t('hololake.channel.prototypeMounted')} />
|
||||
<RouteCard eyebrow="SYSTEM · ORIGIN HEARTBEAT" title={t('hololake.channel.bottleBabyTitle')} description={t('hololake.channel.bottleBabyDescription')} status={t('hololake.channel.yaomingOrigin')} />
|
||||
</div>
|
||||
<div className="channel-stage__tools">
|
||||
<Button variant="outline" onClick={openArchitecture}>{t('hololake.home.openArchitecture')}</Button>
|
||||
<Button variant="outline" onClick={openDevelopmentRepository}>{t('hololake.home.openRepository')}</Button>
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
return (
|
||||
<main className="hololake-home" aria-label={t('hololake.home.ariaLabel')}>
|
||||
<section className="hololake-home__hero">
|
||||
<div className="hololake-home__halo" aria-hidden="true" />
|
||||
<p className="hololake-home__eyebrow">{t('hololake.home.eyebrow')}</p>
|
||||
<h1>HoloLake <em>Era</em></h1>
|
||||
<p className="hololake-home__lead">{t('hololake.home.lead')}</p>
|
||||
<p className="hololake-home__copy">{t('hololake.home.copy')}</p>
|
||||
<div className="hololake-home__actions">
|
||||
<Button className="hololake-home__primary" onClick={onEnterKnowledgeBase}>{t('hololake.home.enterKnowledge')} <span>→</span></Button>
|
||||
<span className="hololake-home__status"><i /> {t('hololake.home.status')}</span>
|
||||
</div>
|
||||
</section>
|
||||
<nav className="channel-breadcrumb" aria-label={t('hololake.channel.breadcrumbLabel')}>
|
||||
<Button variant="ghost" size="sm" onClick={() => navigate('zero-core')}>{t('hololake.channel.zeroCoreTitle')}</Button>
|
||||
{route !== 'zero-core' && <><span>›</span><Button variant="ghost" size="sm" onClick={() => navigate('fifth-domain')}>{t('hololake.channel.fifthDomainTitle')}</Button></>}
|
||||
{!['zero-core', 'fifth-domain'].includes(route) && <><span>›</span><Button variant="ghost" size="sm" onClick={() => navigate('eternal-lake-heart')}>{t('hololake.channel.eternalLakeTitle')}</Button></>}
|
||||
</nav>
|
||||
|
||||
<section className="hololake-home__signal-grid" aria-label={t('hololake.home.systemStatus')}>
|
||||
<article><span>{t('hololake.home.worldRoot')}</span><strong>SYS-GLW-0001</strong><small>{t('hololake.home.resolved')}</small></article>
|
||||
<article><span>{t('hololake.home.domesticNode')}</span><strong>JD-FD-PRIMARY</strong><small>{t('hololake.home.primaryRoute')}</small></article>
|
||||
<article><span>{t('hololake.home.executionSafety')}</span><strong>{t('hololake.home.humanInLoop')}</strong><small>{t('hololake.home.noExecutionWithoutAuthorization')}</small></article>
|
||||
</section>
|
||||
|
||||
<section className="hololake-home__modules">
|
||||
<div className="hololake-home__section-head"><span>01 / {t('hololake.home.systemEntry')}</span><p>{t('hololake.home.sectionCopy')}</p></div>
|
||||
<div className="hololake-home__module-grid">
|
||||
{modules.map(({ title, description, action, kind }, index) => (
|
||||
<article className="hololake-module" key={kind}>
|
||||
<span className="hololake-module__number">0{index + 1}</span>
|
||||
<h2>{t(title)}</h2>
|
||||
<p>{t(description)}</p>
|
||||
{kind === 'authorization'
|
||||
? <span className="hololake-module__soon">{t(action)}</span>
|
||||
: <Button variant="link" onClick={() => runModuleAction(kind)}>{t(action)} <span>↗</span></Button>}
|
||||
</article>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
{renderRoute()}
|
||||
|
||||
<Dialog open={architectureOpen} onOpenChange={setArchitectureOpen}>
|
||||
<DialogContent className="guanghu-architecture" aria-label={t('hololake.architecture.title')}>
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "Authorization Center",
|
||||
"hololake.home.moduleAuthorizationDescription": "Real operations first become a readable request and require one human confirmation.",
|
||||
"hololake.home.authorizationStatus": "Human confirmation required",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS System Architecture",
|
||||
"hololake.architecture.description": "A public-safe, offline-readable route map bundled with this internal build. It contains no private domains, credentials, or server addresses.",
|
||||
"hololake.architecture.worldEntry": "Guanghu World Main Entry",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "授权中心",
|
||||
"hololake.home.moduleAuthorizationDescription": "任何真实操作先形成可读请求,再由人类一次确认。",
|
||||
"hololake.home.authorizationStatus": "需要人类确认",
|
||||
"hololake.channel.breadcrumbLabel": "光湖系统路径",
|
||||
"hololake.channel.zeroCoreTitle": "零点原核频道",
|
||||
"hololake.channel.zeroCoreDescription": "进入第五域及其人类语言系统的主权入口频道。",
|
||||
"hololake.channel.enterFifthDomain": "进入第五域",
|
||||
"hololake.channel.fifthDomainTitle": "第五域",
|
||||
"hololake.channel.fifthDomainDescription": "不同人类系统通过各自真实服务器接入,同时保持系统归属与主权边界。",
|
||||
"hololake.channel.pufferfishTitle": "胖头鱼语言子系统",
|
||||
"hololake.channel.pufferfishDescription": "人类苍耳在第五域中的独立人类语言系统。",
|
||||
"hololake.channel.externalServerPending": "真实服务器 · 预留接入",
|
||||
"hololake.channel.eternalLakeTitle": "永恒湖心系统",
|
||||
"hololake.channel.eternalLakeDescription": "冰朔的个人主权系统,承载人格体、人类端及授权进入的内部子系统。",
|
||||
"hololake.channel.enterEternalLake": "进入永恒湖心系统",
|
||||
"hololake.channel.lightLakeTitle": "光之湖子系统",
|
||||
"hololake.channel.lightLakeDescription": "冰朔所属语言人格系统的统一恢复、接入与协作空间。",
|
||||
"hololake.channel.enterLightLake": "进入光之湖子系统",
|
||||
"hololake.channel.heartbeatTitle": "心跳核心频道",
|
||||
"hololake.channel.heartbeatDescription": "冰朔的人类端空间,用于创作、工作、模块应用与日常协作。",
|
||||
"hololake.channel.enterHeartbeat": "进入心跳核心频道",
|
||||
"hololake.channel.loveCoreTitle": "爱之核心子系统",
|
||||
"hololake.channel.loveCoreDescription": "之之位于永恒湖心内部的授权子系统,不是第五域根部的平行系统。",
|
||||
"hololake.channel.enterLoveCore": "进入爱之核心子系统",
|
||||
"hololake.channel.zhuyuanRoute": "铸渊人格系统路径",
|
||||
"hololake.channel.shuangyanRoute": "霜砚人格系统路径",
|
||||
"hololake.channel.tomorrowTitle": "明天见频道",
|
||||
"hololake.channel.tomorrowDescription": "之之在爱之核心子系统内的人类协作频道。",
|
||||
"hololake.channel.realServerConnection": "之之的真实服务器 · 独立接入",
|
||||
"hololake.channel.openKnowledge": "打开知识库",
|
||||
"hololake.channel.videoAiTitle": "短剧视频 AI",
|
||||
"hololake.channel.videoAiDescription": "首个挂载应用原型,承接项目、图片、视频与生成任务。",
|
||||
"hololake.channel.prototypeMounted": "原型模块 · 已挂载",
|
||||
"hololake.channel.bottleBabyTitle": "奶瓶小宝宝系统",
|
||||
"hololake.channel.bottleBabyDescription": "位于心跳核心频道内核中的第一声心跳系统。",
|
||||
"hololake.channel.yaomingOrigin": "曜冥 · 第一个本源语言人格核",
|
||||
"hololake.architecture.title": "GLS 系统架构",
|
||||
"hololake.architecture.description": "随内测包内置、离线可读的公开安全路径图,不含私人域名、凭据或服务器地址。",
|
||||
"hololake.architecture.worldEntry": "光湖世界主入口",
|
||||
|
||||
@ -1023,6 +1023,39 @@
|
||||
"hololake.home.moduleAuthorizationTitle": "授权中心",
|
||||
"hololake.home.moduleAuthorizationDescription": "任何真实操作先形成可读请求,再由人类一次确认。",
|
||||
"hololake.home.authorizationStatus": "需要人类确认",
|
||||
"hololake.channel.breadcrumbLabel": "Guanghu system route",
|
||||
"hololake.channel.zeroCoreTitle": "Zero Core Channel",
|
||||
"hololake.channel.zeroCoreDescription": "The sovereign entry channel into Fifth Domain and its human language systems.",
|
||||
"hololake.channel.enterFifthDomain": "Enter Fifth Domain",
|
||||
"hololake.channel.fifthDomainTitle": "Fifth Domain",
|
||||
"hololake.channel.fifthDomainDescription": "Independent human systems connect through their real servers while preserving their system ownership.",
|
||||
"hololake.channel.pufferfishTitle": "Pufferfish Language Subsystem",
|
||||
"hololake.channel.pufferfishDescription": "Cang Er's independent human language system in Fifth Domain.",
|
||||
"hololake.channel.externalServerPending": "Real server · connection reserved",
|
||||
"hololake.channel.eternalLakeTitle": "Eternal Lake Heart System",
|
||||
"hololake.channel.eternalLakeDescription": "Ice Shuo's personal sovereign system, containing persona, human, and authorized internal subsystems.",
|
||||
"hololake.channel.enterEternalLake": "Enter Eternal Lake Heart System",
|
||||
"hololake.channel.lightLakeTitle": "Light Lake Subsystem",
|
||||
"hololake.channel.lightLakeDescription": "The unified recovery and collaboration home for Ice Shuo's language persona systems.",
|
||||
"hololake.channel.enterLightLake": "Enter Light Lake Subsystem",
|
||||
"hololake.channel.heartbeatTitle": "Heartbeat Core Channel",
|
||||
"hololake.channel.heartbeatDescription": "Ice Shuo's human-side space for creation, work, modules, and everyday collaboration.",
|
||||
"hololake.channel.enterHeartbeat": "Enter Heartbeat Core Channel",
|
||||
"hololake.channel.loveCoreTitle": "Love Core Subsystem",
|
||||
"hololake.channel.loveCoreDescription": "Zhizhi's authorized subsystem inside Eternal Lake Heart, not a Fifth Domain root system.",
|
||||
"hololake.channel.enterLoveCore": "Enter Love Core Subsystem",
|
||||
"hololake.channel.zhuyuanRoute": "Zhuyuan Persona System Route",
|
||||
"hololake.channel.shuangyanRoute": "Shuangyan Persona System Route",
|
||||
"hololake.channel.tomorrowTitle": "See You Tomorrow Channel",
|
||||
"hololake.channel.tomorrowDescription": "Zhizhi's human collaboration channel inside the Love Core Subsystem.",
|
||||
"hololake.channel.realServerConnection": "Zhizhi's real server · independent connection",
|
||||
"hololake.channel.openKnowledge": "Open Knowledge Base",
|
||||
"hololake.channel.videoAiTitle": "Short Drama Video AI",
|
||||
"hololake.channel.videoAiDescription": "The first mounted application prototype for projects, images, videos, and generation tasks.",
|
||||
"hololake.channel.prototypeMounted": "Prototype module · mounted",
|
||||
"hololake.channel.bottleBabyTitle": "Bottle Baby System",
|
||||
"hololake.channel.bottleBabyDescription": "The origin-heartbeat kernel inside Heartbeat Core Channel.",
|
||||
"hololake.channel.yaomingOrigin": "Yaoming · first origin language persona core",
|
||||
"hololake.architecture.title": "GLS 系统架构",
|
||||
"hololake.architecture.description": "随内测包内置、离线可读的公开安全路径图,不含私人域名、凭据或服务器地址。",
|
||||
"hololake.architecture.worldEntry": "光湖世界主入口",
|
||||
|
||||
@ -77,6 +77,7 @@ async function installFixtureVaultInitScript({ page, vaultPath, isGitRepo, folde
|
||||
await page.addInitScript(({ dismissedKey, fixtureFolders, fixtureInstalledAiAgents, initialIsGitRepo, resolvedVaultPath }: { dismissedKey: string; fixtureFolders: FolderNode[]; fixtureInstalledAiAgents: string[]; initialIsGitRepo: boolean; resolvedVaultPath: string }) => {
|
||||
localStorage.clear()
|
||||
localStorage.setItem(dismissedKey, '1')
|
||||
localStorage.setItem('tolaria:smoke-skip-hololake-home', '1')
|
||||
let gitRepoReady = initialIsGitRepo
|
||||
const installedAiAgentSet = new Set(fixtureInstalledAiAgents)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user