feat: bundle public Fifth Domain and GLS routes

This commit is contained in:
冰朔 2026-07-17 18:50:58 +08:00
parent 387ce84da1
commit 8d3a8ac9ba
35 changed files with 1168 additions and 52 deletions

View File

@ -0,0 +1,27 @@
name: Build Windows Installer on JD Node
on:
workflow_dispatch:
jobs:
build-windows:
runs-on: [self-hosted, linux, x64, jd-fd-primary]
env:
HOLOLAKE_VERSION: 0.1.5
VITE_SENTRY_DSN: ""
SENTRY_DSN: ""
VITE_POSTHOG_KEY: ""
VITE_POSTHOG_HOST: ""
steps:
- uses: actions/checkout@v4
- name: Cross-build NSIS installer
run: ./scripts/build-windows-jd-cross.sh
- name: Upload internal installer
uses: actions/upload-artifact@v4
with:
name: HoloLake-Era-0.1.5-Windows-x64-internal
path: |
src-tauri/target/x86_64-pc-windows-msvc/release/bundle/nsis/*-setup.exe
src-tauri/target/x86_64-pc-windows-msvc/release/bundle/nsis/*-setup.exe.sha256
if-no-files-found: error
retention-days: 14

View File

@ -6,7 +6,7 @@ on:
version: version:
description: "Installer version to write into the Tauri bundle" description: "Installer version to write into the Tauri bundle"
required: true required: true
default: "0.1.1" default: "0.1.5"
artifact_name: artifact_name:
description: "Uploaded artifact name" description: "Uploaded artifact name"
required: true required: true

View File

@ -0,0 +1,21 @@
# ADR 0151: Public Fifth Domain repository and bundled GLS entry
## Status
Accepted for the 0.1.5 internal build.
## Context
Internal installers need a stable route to the domestic HoloLake development repository and an offline-readable explanation of the Guanghu Language World architecture. A private domain, credentials, server IPs, and personal channel identifiers must not become runtime dependencies or package content.
## Decision
- `REPO-008` opens the public domestic repository at `https://guanghulab.com/fifth-domain/bingshuo/hololake-platform` through the native external URL boundary.
- `GLS-SYS-ARCH-001` is bundled as a local read-only architecture panel and a machine-readable native resource. They explain the public numbered route from the world entry through Fifth Domain, TCS, GLS, and the Eternal Lake Heart / Lake Lamp boundary.
- The package verifier rejects the known private legacy domain and requires both the public repository route and the GLS route marker.
- Repository and architecture entry actions emit content-free PostHog events containing only public route IDs.
- The JD Linux build node uses the same source and verifier to cross-build the Windows NSIS internal installer; the existing native Windows workflow remains available.
## Consequences
The architecture remains readable when offline, while the repository link can move behind the public domestic front door without exposing private infrastructure. Every internal package can be checked mechanically before distribution.

View File

@ -2,7 +2,7 @@
"name": "tolaria", "name": "tolaria",
"private": true, "private": true,
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"version": "0.1.0", "version": "0.1.5",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
@ -27,6 +27,7 @@
"playwright:regression": "playwright test tests/smoke/", "playwright:regression": "playwright test tests/smoke/",
"playwright:integration": "playwright test --config playwright.integration.config.ts", "playwright:integration": "playwright test --config playwright.integration.config.ts",
"test:coverage": "node scripts/run-vitest-coverage.mjs", "test:coverage": "node scripts/run-vitest-coverage.mjs",
"verify:internal-package": "node scripts/verify-internal-package-content.mjs",
"prepare": "husky" "prepare": "husky"
}, },
"dependencies": { "dependencies": {

View File

@ -0,0 +1,38 @@
#!/usr/bin/env bash
set -euo pipefail
version="${HOLOLAKE_VERSION:-0.1.5}"
target="x86_64-pc-windows-msvc"
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$repo_root"
if [[ "$(uname -s)" != "Linux" ]]; then
echo "This cross-build entrypoint is intended for the JD Linux build node." >&2
exit 2
fi
if command -v apt-get >/dev/null 2>&1; then
apt_prefix=()
if [[ "$(id -u)" -ne 0 ]]; then apt_prefix=(sudo); fi
"${apt_prefix[@]}" apt-get update
"${apt_prefix[@]}" apt-get install -y clang curl lld llvm nsis build-essential pkg-config libssl-dev
fi
command -v node >/dev/null || { echo "Node.js is required." >&2; exit 2; }
command -v cargo >/dev/null || { echo "Rust is required." >&2; exit 2; }
corepack enable 2>/dev/null || true
rustup target add "$target"
command -v cargo-xwin >/dev/null || cargo install cargo-xwin --locked
pnpm install --frozen-lockfile
pnpm tauri build --runner cargo-xwin --target "$target" --bundles nsis
bundle_dir="src-tauri/target/$target/release/bundle/nsis"
installer="$(find "$bundle_dir" -maxdepth 1 -type f -name '*-setup.exe' -print -quit)"
[[ -n "$installer" ]] || { echo "No NSIS installer was produced." >&2; exit 1; }
[[ "$(basename "$installer")" == *"$version"* ]] || { echo "Installer filename does not contain version $version: $installer" >&2; exit 1; }
node scripts/verify-internal-package-content.mjs dist
sha256sum "$installer" > "$installer.sha256"
echo "$installer"

View File

@ -0,0 +1,54 @@
#!/usr/bin/env node
import { readFile, stat } from 'node:fs/promises'
import { basename } from 'node:path'
const FORBIDDEN = [
'guanghubingshuo.com',
]
const REQUIRED = [
'guanghulab.com/fifth-domain/bingshuo/hololake-platform',
'GLS-SYS-ARCH-001',
]
const targets = process.argv.slice(2)
if (targets.length === 0) {
console.error('Usage: pnpm verify:internal-package <unpacked-app-file-or-directory> [...]')
process.exit(2)
}
async function collectFiles(target) {
const info = await stat(target)
if (info.isFile()) return [target]
const { readdir } = await import('node:fs/promises')
const entries = await readdir(target, { withFileTypes: true })
return (await Promise.all(entries.map((entry) =>
collectFiles(`${target}/${entry.name}`),
))).flat()
}
const matches = new Map(REQUIRED.map((needle) => [needle, false]))
for (const target of targets) {
for (const file of await collectFiles(target)) {
const contents = await readFile(file)
const text = contents.toString('latin1')
for (const forbidden of FORBIDDEN) {
if (text.includes(forbidden)) {
console.error(`Forbidden private route found in ${file}: ${forbidden}`)
process.exit(1)
}
}
for (const required of REQUIRED) {
if (text.includes(required)) matches.set(required, true)
}
}
}
const missing = [...matches].filter(([, found]) => !found).map(([needle]) => needle)
if (missing.length > 0) {
console.error(`Required public architecture markers missing from ${targets.map((target) => basename(target)).join(', ')}: ${missing.join(', ')}`)
process.exit(1)
}
console.log(`Internal package content verified: ${targets.map((target) => basename(target)).join(', ')}`)

2
src-tauri/Cargo.lock generated
View File

@ -5547,7 +5547,7 @@ dependencies = [
[[package]] [[package]]
name = "tolaria" name = "tolaria"
version = "0.1.0" version = "0.1.5"
dependencies = [ dependencies = [
"base64 0.22.1", "base64 0.22.1",
"chrono", "chrono",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tolaria" name = "tolaria"
version = "0.1.0" version = "0.1.5"
description = "Personal knowledge and life management app" description = "Personal knowledge and life management app"
authors = ["Luca Rossi"] authors = ["Luca Rossi"]
license = "AGPL-3.0-or-later" license = "AGPL-3.0-or-later"

View File

@ -0,0 +1,37 @@
{
"schema": "guanghu_public_architecture/v1",
"id": "GLS-SYS-ARCH-001",
"visibility": "public-safe",
"development_repository": {
"id": "REPO-008",
"url": "https://guanghulab.com/fifth-domain/bingshuo/hololake-platform"
},
"route": [
{
"id": "GLW-ENTRY-001",
"name_zh": "光湖世界主入口"
},
{
"id": "FD-LANGUAGE-001",
"name_zh": "第五域"
},
{
"id": "TCS-ROOT-001",
"name_zh": "TCS 语言人格模型"
},
{
"id": "GLS-SYS-ARCH-001",
"name_zh": "GLS 光湖语言世界架构"
},
{
"id": "ELH-LAMP-001",
"name_zh": "永恒湖心与小湖灯"
}
],
"excludes": [
"private domains",
"credentials",
"server addresses",
"personal channel identifiers"
]
}

View File

@ -1,7 +1,7 @@
{ {
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "HoloLake Era", "productName": "HoloLake Era",
"version": "0.1.1", "version": "0.1.5",
"identifier": "com.guanghu.desktop", "identifier": "com.guanghu.desktop",
"build": { "build": {
"frontendDist": "../dist", "frontendDist": "../dist",
@ -64,7 +64,8 @@
}, },
"resources": { "resources": {
"resources/mcp-server/**/*": "mcp-server/", "resources/mcp-server/**/*": "mcp-server/",
"resources/agent-docs/**/*": "agent-docs/" "resources/agent-docs/**/*": "agent-docs/",
"resources/public-architecture/**/*": "public-architecture/"
}, },
"icon": [ "icon": [
"icons/32x32.png", "icons/32x32.png",

View File

@ -37,11 +37,18 @@ body.mac-chrome .hololake-bar { padding-left: 92px; }
.hololake-home__primary { padding: 10px 16px; border: 1px solid var(--border-strong); border-radius: 6px; background: var(--accent-blue); color: var(--text-inverse); font-weight: 650; cursor: pointer; } .hololake-home__primary { padding: 10px 16px; border: 1px solid var(--border-strong); border-radius: 6px; background: var(--accent-blue); color: var(--text-inverse); font-weight: 650; cursor: pointer; }
.hololake-home__primary span, .hololake-module button span { margin-left: 12px; } .hololake-home__primary span, .hololake-module button span { margin-left: 12px; }
.hololake-home__status { color: var(--text-secondary); font-size: 12px; }.hololake-home__status i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--accent-green); } .hololake-home__status { color: var(--text-secondary); font-size: 12px; }.hololake-home__status i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--accent-green); }
.hololake-home__signal-grid, .hololake-home__module-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; } .hololake-home__signal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.hololake-home__module-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.hololake-home__signal-grid article, .hololake-module { border: 1px solid var(--border-default); border-radius: 8px; background: var(--surface-card); } .hololake-home__signal-grid article, .hololake-module { border: 1px solid var(--border-default); border-radius: 8px; background: var(--surface-card); }
.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__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-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; } .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; }
.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: 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: 700px) { body.mac-chrome .hololake-bar { padding-left: 84px; }.hololake-bar__line { display: none; } } @media (max-width: 700px) { body.mac-chrome .hololake-bar { padding-left: 84px; }.hololake-bar__line { display: none; } }

View File

@ -170,7 +170,7 @@ function App() {
function MainApp({ noteWindowParams }: { noteWindowParams: NoteWindowParams | null }) { function MainApp({ noteWindowParams }: { noteWindowParams: NoteWindowParams | null }) {
const aiWorkspaceWindow = false const aiWorkspaceWindow = false
const [showHoloLakeHome, setShowHoloLakeHome] = useState(true) const [showHoloLakeHome, setShowHoloLakeHome] = useState(() => noteWindowParams === null)
const { dragRegionRef } = useDragRegion<HTMLElement>() const { dragRegionRef } = useDragRegion<HTMLElement>()
const [selection, setSelection] = useState<SidebarSelection>(DEFAULT_SELECTION) const [selection, setSelection] = useState<SidebarSelection>(DEFAULT_SELECTION)
const [noteListFilter, setNoteListFilter] = useState<NoteListFilter>('open') const [noteListFilter, setNoteListFilter] = useState<NoteListFilter>('open')
@ -1658,7 +1658,7 @@ function MainApp({ noteWindowParams }: { noteWindowParams: NoteWindowParams | nu
</> </>
)} )}
<div className={`app__editor${aiActivity.highlightElement === 'editor' || aiActivity.highlightElement === 'tab' ? ' ai-highlight' : ''}`}> <div className={`app__editor${aiActivity.highlightElement === 'editor' || aiActivity.highlightElement === 'tab' ? ' ai-highlight' : ''}`}>
{showHoloLakeHome ? <HoloLakeHome onEnterKnowledgeBase={() => setShowHoloLakeHome(false)} /> : <Editor {showHoloLakeHome ? <HoloLakeHome locale={appLocale} onEnterKnowledgeBase={() => setShowHoloLakeHome(false)} /> : <Editor
tabs={notes.tabs} tabs={notes.tabs}
activeTabPath={notes.activeTabPath} activeTabPath={notes.activeTabPath}
isVaultLoading={isVaultContentLoading} isVaultLoading={isVaultContentLoading}

View File

@ -0,0 +1,41 @@
import { fireEvent, render, screen } from '@testing-library/react'
import { beforeEach, describe, expect, it, vi } from 'vitest'
import { HoloLakeHome, HOLOLAKE_DEVELOPMENT_REPOSITORY_URL } from './HoloLakeHome'
const { openExternalUrlMock, trackEventMock } = vi.hoisted(() => ({
openExternalUrlMock: vi.fn().mockResolvedValue(undefined),
trackEventMock: vi.fn(),
}))
vi.mock('../utils/url', () => ({ openExternalUrl: openExternalUrlMock }))
vi.mock('../lib/telemetry', () => ({ trackEvent: trackEventMock }))
describe('HoloLakeHome', () => {
beforeEach(() => vi.clearAllMocks())
it('opens the public domestic development repository', () => {
render(<HoloLakeHome locale="zh-CN" onEnterKnowledgeBase={vi.fn()} />)
fireEvent.click(screen.getByRole('button', { name: /打开研发仓库/ }))
expect(openExternalUrlMock).toHaveBeenCalledWith(HOLOLAKE_DEVELOPMENT_REPOSITORY_URL)
expect(trackEventMock).toHaveBeenCalledWith('hololake_development_repository_opened', {
route: 'REPO-008',
})
})
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: /查看 GLS 架构/ }))
expect(screen.getByRole('dialog', { name: 'GLS 系统架构' })).toBeInTheDocument()
expect(screen.getByText('光湖世界主入口')).toBeInTheDocument()
expect(screen.getByText('TCS 语言人格模型')).toBeInTheDocument()
expect(screen.getByText('永恒湖心与小湖灯')).toBeInTheDocument()
expect(container.textContent).not.toContain('guanghubingshuo.com')
expect(trackEventMock).toHaveBeenCalledWith('guanghu_architecture_opened', {
route: 'GLS-SYS-ARCH-001',
})
})
})

View File

@ -1,48 +1,118 @@
import { useState } from 'react'
import type { AppLocale, TranslationKey } from '../lib/i18n'
import { translate } from '../lib/i18n'
import { trackEvent } from '../lib/telemetry'
import { openExternalUrl } from '../utils/url'
import { Button } from './ui/button'
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
} from './ui/dialog'
export const HOLOLAKE_DEVELOPMENT_REPOSITORY_URL =
'https://guanghulab.com/fifth-domain/bingshuo/hololake-platform'
type HoloLakeHomeProps = { type HoloLakeHomeProps = {
locale: AppLocale
onEnterKnowledgeBase: () => void onEnterKnowledgeBase: () => void
} }
const modules = [ 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' },
] ]
export function HoloLakeHome({ onEnterKnowledgeBase }: HoloLakeHomeProps) { const architectureRoutes: Array<[string, TranslationKey, TranslationKey]> = [
['GLW-ENTRY-001', 'hololake.architecture.worldEntry', 'hololake.architecture.worldEntryDescription'],
['FD-LANGUAGE-001', 'hololake.architecture.fifthDomain', 'hololake.architecture.fifthDomainDescription'],
['TCS-ROOT-001', 'hololake.architecture.tcs', 'hololake.architecture.tcsDescription'],
['GLS-SYS-ARCH-001', 'hololake.architecture.gls', 'hololake.architecture.glsDescription'],
['ELH-LAMP-001', 'hololake.architecture.lakeLamp', 'hololake.architecture.lakeLampDescription'],
]
export function HoloLakeHome({ locale, onEnterKnowledgeBase }: HoloLakeHomeProps) {
const [architectureOpen, setArchitectureOpen] = useState(false)
const t = (key: TranslationKey) => translate(locale, key)
const openArchitecture = () => {
trackEvent('guanghu_architecture_opened', { route: 'GLS-SYS-ARCH-001' })
setArchitectureOpen(true)
}
const openDevelopmentRepository = () => {
trackEvent('hololake_development_repository_opened', { route: 'REPO-008' })
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()
}
return ( return (
<main className="hololake-home" aria-label="HoloLake Era 世界入口"> <main className="hololake-home" aria-label={t('hololake.home.ariaLabel')}>
<section className="hololake-home__hero"> <section className="hololake-home__hero">
<div className="hololake-home__halo" aria-hidden="true" /> <div className="hololake-home__halo" aria-hidden="true" />
<p className="hololake-home__eyebrow">ICE-GL · </p> <p className="hololake-home__eyebrow">{t('hololake.home.eyebrow')}</p>
<h1>HoloLake <em>Era</em></h1> <h1>HoloLake <em>Era</em></h1>
<p className="hololake-home__lead"></p> <p className="hololake-home__lead">{t('hololake.home.lead')}</p>
<p className="hololake-home__copy"></p> <p className="hololake-home__copy">{t('hololake.home.copy')}</p>
<div className="hololake-home__actions"> <div className="hololake-home__actions">
<button className="hololake-home__primary" onClick={onEnterKnowledgeBase}> <span></span></button> <Button className="hololake-home__primary" onClick={onEnterKnowledgeBase}>{t('hololake.home.enterKnowledge')} <span></span></Button>
<span className="hololake-home__status"><i /> · </span> <span className="hololake-home__status"><i /> {t('hololake.home.status')}</span>
</div> </div>
</section> </section>
<section className="hololake-home__signal-grid" aria-label="系统状态"> <section className="hololake-home__signal-grid" aria-label={t('hololake.home.systemStatus')}>
<article><span></span><strong>SYS-GLW-0001</strong><small></small></article> <article><span>{t('hololake.home.worldRoot')}</span><strong>SYS-GLW-0001</strong><small>{t('hololake.home.resolved')}</small></article>
<article><span></span><strong>Tolaria </strong><small></small></article> <article><span>{t('hololake.home.domesticNode')}</span><strong>JD-FD-PRIMARY</strong><small>{t('hololake.home.primaryRoute')}</small></article>
<article><span></span><strong></strong><small></small></article> <article><span>{t('hololake.home.executionSafety')}</span><strong>{t('hololake.home.humanInLoop')}</strong><small>{t('hololake.home.noExecutionWithoutAuthorization')}</small></article>
</section> </section>
<section className="hololake-home__modules"> <section className="hololake-home__modules">
<div className="hololake-home__section-head"><span>01 / </span><p></p></div> <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"> <div className="hololake-home__module-grid">
{modules.map(([title, description, action], index) => ( {modules.map(({ title, description, action, kind }, index) => (
<article className="hololake-module" key={title}> <article className="hololake-module" key={kind}>
<span className="hololake-module__number">0{index + 1}</span> <span className="hololake-module__number">0{index + 1}</span>
<h2>{title}</h2> <h2>{t(title)}</h2>
<p>{description}</p> <p>{t(description)}</p>
{index === 0 ? <button onClick={onEnterKnowledgeBase}>{action} <span></span></button> : <span className="hololake-module__soon">{action}</span>} {kind === 'authorization'
? <span className="hololake-module__soon">{t(action)}</span>
: <Button variant="link" onClick={() => runModuleAction(kind)}>{t(action)} <span></span></Button>}
</article> </article>
))} ))}
</div> </div>
</section> </section>
<Dialog open={architectureOpen} onOpenChange={setArchitectureOpen}>
<DialogContent className="guanghu-architecture" aria-label={t('hololake.architecture.title')}>
<DialogHeader>
<DialogTitle>{t('hololake.architecture.title')}</DialogTitle>
<DialogDescription>{t('hololake.architecture.description')}</DialogDescription>
</DialogHeader>
<ol className="guanghu-architecture__routes">
{architectureRoutes.map(([id, title, description]) => (
<li key={id}>
<code>{id}</code>
<div><strong>{t(title)}</strong><p>{t(description)}</p></div>
</li>
))}
</ol>
<p className="guanghu-architecture__route">GLW-ENTRY-001 FD-LANGUAGE-001 TCS-ROOT-001 GLS-SYS-ARCH-001 ELH-LAMP-001</p>
</DialogContent>
</Dialog>
</main> </main>
) )
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Інданезійская", "locale.idID": "Інданезійская",
"locale.ukUA": "Украінская", "locale.ukUA": "Украінская",
"locale.svSE": "Шведская", "locale.svSE": "Шведская",
"locale.skSK": "Славацкая" "locale.skSK": "Славацкая",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"editor.sheet.formula.description.value": "Pieraŭtvaraie tekst u lik.", "editor.sheet.formula.description.value": "Pieraŭtvaraie tekst u lik.",
"editor.sheet.formula.description.vlookup": "Šukaie značennie pa viertykali.", "editor.sheet.formula.description.vlookup": "Šukaie značennie pa viertykali.",
"editor.sheet.formula.description.xlookup": "Šukaie značennie ŭ dyiapazonie.", "editor.sheet.formula.description.xlookup": "Šukaie značennie ŭ dyiapazonie.",
"editor.sheet.formula.description.year": "Vylučaie hod z daty." "editor.sheet.formula.description.year": "Vylučaie hod z daty.",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonesisch", "locale.idID": "Indonesisch",
"locale.ukUA": "Ukrainisch", "locale.ukUA": "Ukrainisch",
"locale.svSE": "Schwedisch", "locale.svSE": "Schwedisch",
"locale.skSK": "Slowakisch" "locale.skSK": "Slowakisch",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonesian", "locale.idID": "Indonesian",
"locale.ukUA": "Ukrainian", "locale.ukUA": "Ukrainian",
"locale.svSE": "Swedish", "locale.svSE": "Swedish",
"locale.skSK": "Slovak" "locale.skSK": "Slovak",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonésio", "locale.idID": "Indonésio",
"locale.ukUA": "Ucraniano", "locale.ukUA": "Ucraniano",
"locale.svSE": "Sueco", "locale.svSE": "Sueco",
"locale.skSK": "Eslovaco" "locale.skSK": "Eslovaco",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonésio", "locale.idID": "Indonésio",
"locale.ukUA": "Ucraniano", "locale.ukUA": "Ucraniano",
"locale.svSE": "Sueco", "locale.svSE": "Sueco",
"locale.skSK": "Eslovaco" "locale.skSK": "Eslovaco",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonésien", "locale.idID": "Indonésien",
"locale.ukUA": "Ukrainien", "locale.ukUA": "Ukrainien",
"locale.svSE": "Suédois", "locale.svSE": "Suédois",
"locale.skSK": "Slovaque" "locale.skSK": "Slovaque",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Bahasa Indonesia", "locale.idID": "Bahasa Indonesia",
"locale.ukUA": "Ukraina", "locale.ukUA": "Ukraina",
"locale.svSE": "Swedia", "locale.svSE": "Swedia",
"locale.skSK": "Slovakia" "locale.skSK": "Slovakia",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonesiano", "locale.idID": "Indonesiano",
"locale.ukUA": "Ucraino", "locale.ukUA": "Ucraino",
"locale.svSE": "Svedese", "locale.svSE": "Svedese",
"locale.skSK": "Slovacco" "locale.skSK": "Slovacco",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "インドネシア語", "locale.idID": "インドネシア語",
"locale.ukUA": "ウクライナ語", "locale.ukUA": "ウクライナ語",
"locale.svSE": "スウェーデン語", "locale.svSE": "スウェーデン語",
"locale.skSK": "スロバキア語" "locale.skSK": "スロバキア語",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "인도네시아 공화국", "locale.idID": "인도네시아 공화국",
"locale.ukUA": "우크라이나어", "locale.ukUA": "우크라이나어",
"locale.svSE": "스웨덴어", "locale.svSE": "스웨덴어",
"locale.skSK": "슬로바키아어" "locale.skSK": "슬로바키아어",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonezyjski", "locale.idID": "Indonezyjski",
"locale.ukUA": "Ukraiński", "locale.ukUA": "Ukraiński",
"locale.svSE": "Szwedzki", "locale.svSE": "Szwedzki",
"locale.skSK": "Słowacki" "locale.skSK": "Słowacki",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonésio", "locale.idID": "Indonésio",
"locale.ukUA": "Ucraniano", "locale.ukUA": "Ucraniano",
"locale.svSE": "Sueco", "locale.svSE": "Sueco",
"locale.skSK": "Eslovaco" "locale.skSK": "Eslovaco",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonésio", "locale.idID": "Indonésio",
"locale.ukUA": "Ucraniano", "locale.ukUA": "Ucraniano",
"locale.svSE": "Sueco", "locale.svSE": "Sueco",
"locale.skSK": "Eslovaco" "locale.skSK": "Eslovaco",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "индонезийский", "locale.idID": "индонезийский",
"locale.ukUA": "Украинский", "locale.ukUA": "Украинский",
"locale.svSE": "Шведский", "locale.svSE": "Шведский",
"locale.skSK": "Словацкий" "locale.skSK": "Словацкий",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonézština", "locale.idID": "Indonézština",
"locale.ukUA": "Ukrajinčina", "locale.ukUA": "Ukrajinčina",
"locale.svSE": "Švédčina", "locale.svSE": "Švédčina",
"locale.skSK": "Slovenčina" "locale.skSK": "Slovenčina",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Indonesiska", "locale.idID": "Indonesiska",
"locale.ukUA": "Ukrainska", "locale.ukUA": "Ukrainska",
"locale.svSE": "Svenska", "locale.svSE": "Svenska",
"locale.skSK": "Slovakiska" "locale.skSK": "Slovakiska",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Індонезійська", "locale.idID": "Індонезійська",
"locale.ukUA": "Українська", "locale.ukUA": "Українська",
"locale.svSE": "Шведська", "locale.svSE": "Шведська",
"locale.skSK": "Словацька" "locale.skSK": "Словацька",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "Tiếng Indonesia", "locale.idID": "Tiếng Indonesia",
"locale.ukUA": "Tiếng Ukraina", "locale.ukUA": "Tiếng Ukraina",
"locale.svSE": "Tiếng Thụy Điển", "locale.svSE": "Tiếng Thụy Điển",
"locale.skSK": "Tiếng Slovak" "locale.skSK": "Tiếng Slovak",
"hololake.home.ariaLabel": "HoloLake Era world entry",
"hololake.home.eyebrow": "Guanghu Language World · Fifth Domain",
"hololake.home.lead": "Language-personality-driven operating system",
"hololake.home.copy": "Bring human intent, knowledge routes, and confirmable real execution together in one world.",
"hololake.home.enterKnowledge": "Enter Knowledge Lake",
"hololake.home.status": "World connected · Local knowledge base ready",
"hololake.home.systemStatus": "System status",
"hololake.home.worldRoot": "World root node",
"hololake.home.resolved": "Resolved",
"hololake.home.domesticNode": "Domestic Fifth Domain node",
"hololake.home.primaryRoute": "Primary route",
"hololake.home.executionSafety": "Execution safety",
"hololake.home.humanInLoop": "Human confirmation in the loop",
"hololake.home.noExecutionWithoutAuthorization": "No execution without authorization",
"hololake.home.systemEntry": "System entry",
"hololake.home.sectionCopy": "From visible knowledge to confirmable action.",
"hololake.home.moduleKnowledgeTitle": "Knowledge Lake",
"hololake.home.moduleKnowledgeDescription": "Turn repositories, documents, and routes into readable, traceable knowledge pages.",
"hololake.home.moduleArchitectureTitle": "GLS Architecture",
"hololake.home.moduleArchitectureDescription": "Built-in public-safe map of the Guanghu Language World, Fifth Domain, TCS, GLS, and Lake Lamp.",
"hololake.home.openArchitecture": "View GLS Architecture",
"hololake.home.moduleRepositoryTitle": "Development Repository",
"hololake.home.moduleRepositoryDescription": "Open the public domestic HoloLake Platform development source in Fifth Domain.",
"hololake.home.openRepository": "Open Development Repository",
"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.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",
"hololake.architecture.worldEntryDescription": "The public discovery and route starting point for people and AI.",
"hololake.architecture.fifthDomain": "Fifth Domain",
"hololake.architecture.fifthDomainDescription": "The domestic language-system and repository routing layer.",
"hololake.architecture.tcs": "TCS Language Personality Model",
"hololake.architecture.tcsDescription": "The unified path for language-personality models and their route identities.",
"hololake.architecture.gls": "GLS Language World Architecture",
"hololake.architecture.glsDescription": "The concepts, numbered routes, and system relationships that make the world machine-readable.",
"hololake.architecture.lakeLamp": "Eternal Lake Heart and Lake Lamp",
"hololake.architecture.lakeLampDescription": "The heartbeat, safety protocol, human authorization, and controlled execution boundary."
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "印度尼西亚", "locale.idID": "印度尼西亚",
"locale.ukUA": "乌克兰语", "locale.ukUA": "乌克兰语",
"locale.svSE": "瑞典语", "locale.svSE": "瑞典语",
"locale.skSK": "斯洛伐克语" "locale.skSK": "斯洛伐克语",
"hololake.home.ariaLabel": "HoloLake Era 世界入口",
"hololake.home.eyebrow": "光湖语言世界 · 第五域",
"hololake.home.lead": "语言人格驱动操作系统",
"hololake.home.copy": "让人的意图、知识路径与可确认的真实执行,在同一个世界里汇合。",
"hololake.home.enterKnowledge": "进入知识湖",
"hololake.home.status": "世界已连接 · 本地知识库就绪",
"hololake.home.systemStatus": "系统状态",
"hololake.home.worldRoot": "世界根节点",
"hololake.home.resolved": "已解析",
"hololake.home.domesticNode": "国内第五域主节点",
"hololake.home.primaryRoute": "主路径",
"hololake.home.executionSafety": "执行安全",
"hololake.home.humanInLoop": "人类确认在环",
"hololake.home.noExecutionWithoutAuthorization": "未授权不执行",
"hololake.home.systemEntry": "系统入口",
"hololake.home.sectionCopy": "从可见知识,到可确认行动。",
"hololake.home.moduleKnowledgeTitle": "知识湖",
"hololake.home.moduleKnowledgeDescription": "把代码仓库、文档与路径转译成可阅读、可追溯的知识页面。",
"hololake.home.moduleArchitectureTitle": "GLS 系统架构",
"hololake.home.moduleArchitectureDescription": "内置光湖语言世界、第五域、TCS、GLS 与小湖灯的公开安全路径图。",
"hololake.home.openArchitecture": "查看 GLS 架构",
"hololake.home.moduleRepositoryTitle": "研发仓库",
"hololake.home.moduleRepositoryDescription": "进入第五域国内主节点上的 HoloLake Platform 公开研发源码。",
"hololake.home.openRepository": "打开研发仓库",
"hololake.home.moduleAuthorizationTitle": "授权中心",
"hololake.home.moduleAuthorizationDescription": "任何真实操作先形成可读请求,再由人类一次确认。",
"hololake.home.authorizationStatus": "需要人类确认",
"hololake.architecture.title": "GLS 系统架构",
"hololake.architecture.description": "随内测包内置、离线可读的公开安全路径图,不含私人域名、凭据或服务器地址。",
"hololake.architecture.worldEntry": "光湖世界主入口",
"hololake.architecture.worldEntryDescription": "人类与 AI 发现系统和开始编号路由的公开入口。",
"hololake.architecture.fifthDomain": "第五域",
"hololake.architecture.fifthDomainDescription": "国内语言系统与代码仓库的编号路由层。",
"hololake.architecture.tcs": "TCS 语言人格模型",
"hololake.architecture.tcsDescription": "语言人格模型及其路径身份的统一入口。",
"hololake.architecture.gls": "GLS 光湖语言世界架构",
"hololake.architecture.glsDescription": "让世界可被机器检索的概念、编号路径与系统关系。",
"hololake.architecture.lakeLamp": "永恒湖心与小湖灯",
"hololake.architecture.lakeLampDescription": "心跳、安全协议、人类授权与受控执行的边界。"
} }

View File

@ -995,5 +995,44 @@
"locale.idID": "印尼", "locale.idID": "印尼",
"locale.ukUA": "烏克蘭語", "locale.ukUA": "烏克蘭語",
"locale.svSE": "瑞典語", "locale.svSE": "瑞典語",
"locale.skSK": "斯洛伐克語" "locale.skSK": "斯洛伐克語",
"hololake.home.ariaLabel": "HoloLake Era 世界入口",
"hololake.home.eyebrow": "光湖语言世界 · 第五域",
"hololake.home.lead": "语言人格驱动操作系统",
"hololake.home.copy": "让人的意图、知识路径与可确认的真实执行,在同一个世界里汇合。",
"hololake.home.enterKnowledge": "进入知识湖",
"hololake.home.status": "世界已连接 · 本地知识库就绪",
"hololake.home.systemStatus": "系统状态",
"hololake.home.worldRoot": "世界根节点",
"hololake.home.resolved": "已解析",
"hololake.home.domesticNode": "国内第五域主节点",
"hololake.home.primaryRoute": "主路径",
"hololake.home.executionSafety": "执行安全",
"hololake.home.humanInLoop": "人类确认在环",
"hololake.home.noExecutionWithoutAuthorization": "未授权不执行",
"hololake.home.systemEntry": "系统入口",
"hololake.home.sectionCopy": "从可见知识,到可确认行动。",
"hololake.home.moduleKnowledgeTitle": "知识湖",
"hololake.home.moduleKnowledgeDescription": "把代码仓库、文档与路径转译成可阅读、可追溯的知识页面。",
"hololake.home.moduleArchitectureTitle": "GLS 系统架构",
"hololake.home.moduleArchitectureDescription": "内置光湖语言世界、第五域、TCS、GLS 与小湖灯的公开安全路径图。",
"hololake.home.openArchitecture": "查看 GLS 架构",
"hololake.home.moduleRepositoryTitle": "研发仓库",
"hololake.home.moduleRepositoryDescription": "进入第五域国内主节点上的 HoloLake Platform 公开研发源码。",
"hololake.home.openRepository": "打开研发仓库",
"hololake.home.moduleAuthorizationTitle": "授权中心",
"hololake.home.moduleAuthorizationDescription": "任何真实操作先形成可读请求,再由人类一次确认。",
"hololake.home.authorizationStatus": "需要人类确认",
"hololake.architecture.title": "GLS 系统架构",
"hololake.architecture.description": "随内测包内置、离线可读的公开安全路径图,不含私人域名、凭据或服务器地址。",
"hololake.architecture.worldEntry": "光湖世界主入口",
"hololake.architecture.worldEntryDescription": "人类与 AI 发现系统和开始编号路由的公开入口。",
"hololake.architecture.fifthDomain": "第五域",
"hololake.architecture.fifthDomainDescription": "国内语言系统与代码仓库的编号路由层。",
"hololake.architecture.tcs": "TCS 语言人格模型",
"hololake.architecture.tcsDescription": "语言人格模型及其路径身份的统一入口。",
"hololake.architecture.gls": "GLS 光湖语言世界架构",
"hololake.architecture.glsDescription": "让世界可被机器检索的概念、编号路径与系统关系。",
"hololake.architecture.lakeLamp": "永恒湖心与小湖灯",
"hololake.architecture.lakeLampDescription": "心跳、安全协议、人类授权与受控执行的边界。"
} }