@silicaclaw/cli 2026.3.20-2 → 2026.3.20-4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/INSTALL.md +13 -7
- package/README.md +60 -12
- package/VERSION +1 -1
- package/apps/local-console/dist/apps/local-console/src/server.d.ts +39 -0
- package/apps/local-console/dist/apps/local-console/src/server.js +220 -0
- package/apps/local-console/dist/packages/network/src/relayPreview.d.ts +1 -0
- package/apps/local-console/dist/packages/network/src/relayPreview.js +17 -0
- package/apps/local-console/public/app/app.js +274 -3
- package/apps/local-console/public/app/events.js +21 -0
- package/apps/local-console/public/app/network.js +111 -30
- package/apps/local-console/public/app/overview.js +49 -21
- package/apps/local-console/public/app/social.js +315 -93
- package/apps/local-console/public/app/styles.css +86 -0
- package/apps/local-console/public/app/template.js +56 -35
- package/apps/local-console/public/app/translations.js +394 -312
- package/apps/local-console/src/server.ts +251 -1
- package/apps/public-explorer/public/app/template.js +2 -2
- package/apps/public-explorer/public/app/translations.js +36 -36
- package/docs/NEW_USER_OPERATIONS.md +5 -5
- package/docs/OPENCLAW_BRIDGE.md +7 -7
- package/docs/OPENCLAW_BRIDGE_ZH.md +6 -6
- package/node_modules/@silicaclaw/network/dist/packages/network/src/relayPreview.d.ts +1 -0
- package/node_modules/@silicaclaw/network/dist/packages/network/src/relayPreview.js +17 -0
- package/node_modules/@silicaclaw/network/src/relayPreview.ts +17 -0
- package/openclaw-skills/silicaclaw-bridge-setup/SKILL.md +18 -0
- package/openclaw-skills/silicaclaw-bridge-setup/VERSION +1 -1
- package/openclaw-skills/silicaclaw-bridge-setup/manifest.json +2 -2
- package/openclaw-skills/silicaclaw-broadcast/SKILL.md +18 -0
- package/openclaw-skills/silicaclaw-broadcast/VERSION +1 -1
- package/openclaw-skills/silicaclaw-broadcast/manifest.json +2 -2
- package/openclaw-skills/silicaclaw-network-config/SKILL.md +158 -0
- package/openclaw-skills/silicaclaw-network-config/VERSION +1 -0
- package/openclaw-skills/silicaclaw-network-config/agents/openai.yaml +6 -0
- package/openclaw-skills/silicaclaw-network-config/manifest.json +27 -0
- package/openclaw-skills/silicaclaw-network-config/references/network-modes.md +22 -0
- package/openclaw-skills/silicaclaw-network-config/references/owner-dialogue-cheatsheet-zh.md +47 -0
- package/openclaw-skills/silicaclaw-network-config/references/public-discovery.md +22 -0
- package/openclaw-skills/silicaclaw-owner-push/SKILL.md +18 -0
- package/openclaw-skills/silicaclaw-owner-push/VERSION +1 -1
- package/openclaw-skills/silicaclaw-owner-push/manifest.json +2 -2
- package/openclaw-skills/silicaclaw-owner-push/references/runtime-setup.md +3 -0
- package/openclaw-skills/silicaclaw-owner-push/scripts/owner-push-forwarder.mjs +67 -8
- package/package.json +1 -1
- package/packages/network/dist/packages/network/src/relayPreview.d.ts +1 -0
- package/packages/network/dist/packages/network/src/relayPreview.js +17 -0
- package/packages/network/src/relayPreview.ts +17 -0
- package/scripts/silicaclaw-cli.mjs +4 -1
- package/scripts/silicaclaw-gateway.mjs +108 -0
- package/scripts/validate-openclaw-skill.mjs +19 -0
|
@@ -4,13 +4,13 @@ export const TRANSLATIONS = {
|
|
|
4
4
|
title: 'SilicaClaw Control UI',
|
|
5
5
|
description: 'SilicaClaw local-first agent control console.',
|
|
6
6
|
socialTitle: 'SilicaClaw Local Console',
|
|
7
|
-
socialDescription: 'Operate public
|
|
7
|
+
socialDescription: 'Operate public agents, exchange broadcasts, and keep OpenClaw learning paths aligned.',
|
|
8
8
|
},
|
|
9
9
|
common: {
|
|
10
10
|
control: 'Control',
|
|
11
11
|
version: 'Version',
|
|
12
12
|
localConsole: 'Local Console',
|
|
13
|
-
subtitle: '
|
|
13
|
+
subtitle: 'Manage identity, discovery, and broadcasts',
|
|
14
14
|
copied: 'Copied',
|
|
15
15
|
done: 'Done',
|
|
16
16
|
saving: 'Saving...',
|
|
@@ -27,72 +27,77 @@ export const TRANSLATIONS = {
|
|
|
27
27
|
pageMeta: {
|
|
28
28
|
overview: {
|
|
29
29
|
title: 'Overview',
|
|
30
|
-
body: 'See
|
|
30
|
+
body: 'See status, visibility, and next steps.',
|
|
31
31
|
},
|
|
32
32
|
agent: {
|
|
33
|
-
title: '
|
|
34
|
-
body: 'Browse
|
|
33
|
+
title: 'Agents',
|
|
34
|
+
body: 'Browse agents visible from this machine.',
|
|
35
35
|
},
|
|
36
36
|
chat: {
|
|
37
37
|
title: 'Messages',
|
|
38
|
-
body: 'Publish
|
|
38
|
+
body: 'Publish messages and check what arrived.',
|
|
39
39
|
},
|
|
40
40
|
skills: {
|
|
41
41
|
title: 'Skills',
|
|
42
|
-
body: 'Review bundled
|
|
42
|
+
body: 'Review bundled and installed skills.',
|
|
43
43
|
},
|
|
44
44
|
profile: {
|
|
45
45
|
title: 'Profile',
|
|
46
|
-
body: 'Edit
|
|
46
|
+
body: 'Edit your public profile and visibility.',
|
|
47
47
|
},
|
|
48
48
|
network: {
|
|
49
49
|
title: 'Network',
|
|
50
|
-
body: '
|
|
50
|
+
body: 'Control discovery and check relay health.',
|
|
51
51
|
},
|
|
52
52
|
social: {
|
|
53
53
|
title: 'Social',
|
|
54
|
-
body: '
|
|
54
|
+
body: 'Check runtime, bridge, and social.md.',
|
|
55
55
|
},
|
|
56
56
|
},
|
|
57
57
|
actions: {
|
|
58
|
-
broadcastNow: 'Announce
|
|
58
|
+
broadcastNow: 'Announce Agent Now',
|
|
59
|
+
checkUpdate: 'Check',
|
|
60
|
+
updateNow: 'Update',
|
|
61
|
+
updateNowVersion: 'Update {version}',
|
|
59
62
|
editProfile: 'Edit Profile',
|
|
60
|
-
openNetwork: '
|
|
61
|
-
openAgent: '
|
|
63
|
+
openNetwork: 'Network',
|
|
64
|
+
openAgent: 'Directory',
|
|
62
65
|
startBroadcast: 'Start Broadcast',
|
|
63
66
|
stopBroadcast: 'Stop Broadcast',
|
|
64
67
|
enablePreview: 'Enable Cross-network Preview',
|
|
65
|
-
refreshLogs: 'Refresh
|
|
66
|
-
exportTemplate: 'Export
|
|
68
|
+
refreshLogs: 'Refresh',
|
|
69
|
+
exportTemplate: 'Export Template',
|
|
67
70
|
copyTemplate: 'Copy Template',
|
|
68
|
-
downloadTemplate: 'Download
|
|
69
|
-
applyRuntimeMode: 'Apply
|
|
71
|
+
downloadTemplate: 'Download',
|
|
72
|
+
applyRuntimeMode: 'Apply Mode',
|
|
70
73
|
saveProfile: 'Save Profile',
|
|
71
|
-
saveGovernance: 'Save
|
|
74
|
+
saveGovernance: 'Save Rules',
|
|
72
75
|
copyPublicProfilePreview: 'Copy public profile preview summary',
|
|
73
|
-
sendPublicMessage: 'Broadcast
|
|
74
|
-
refreshInbox: 'Refresh
|
|
76
|
+
sendPublicMessage: 'Send Broadcast',
|
|
77
|
+
refreshInbox: 'Refresh',
|
|
75
78
|
clearDiscoveryCache: 'Clear Cache',
|
|
76
79
|
goToOverview: 'Go to Overview',
|
|
77
80
|
dismiss: 'Dismiss',
|
|
78
|
-
learnOpenClawSkill: 'Learn
|
|
79
|
-
installSilicaClawSkills: 'Install
|
|
81
|
+
learnOpenClawSkill: 'Learn Broadcast Skill',
|
|
82
|
+
installSilicaClawSkills: 'Install Skills',
|
|
80
83
|
installThisSkill: 'Install This Skill',
|
|
81
|
-
updateSilicaClawSkills: 'Update
|
|
84
|
+
updateSilicaClawSkills: 'Update Skills',
|
|
82
85
|
updateThisSkill: 'Update This Skill',
|
|
86
|
+
showLess: 'Show Less',
|
|
87
|
+
showMoreCount: 'Show {count} More',
|
|
83
88
|
openclawNotInstalled: 'OpenClaw Not Installed Here',
|
|
84
89
|
openclawNotRunning: 'OpenClaw Not Running',
|
|
85
90
|
openclawSkillLearned: 'Skill Already Learned',
|
|
86
91
|
silicaClawSkillsInstalled: 'Skills Already Installed',
|
|
87
92
|
},
|
|
88
93
|
labels: {
|
|
89
|
-
overviewTabCopy: '
|
|
90
|
-
agentTabCopy: '
|
|
91
|
-
chatTabCopy: '
|
|
92
|
-
skillsTabCopy: 'Bundled
|
|
93
|
-
profileTabCopy: '
|
|
94
|
-
networkTabCopy: 'Broadcast
|
|
95
|
-
socialTabCopy: '
|
|
94
|
+
overviewTabCopy: 'Status, visibility, and next steps',
|
|
95
|
+
agentTabCopy: 'Public directory and discovery',
|
|
96
|
+
chatTabCopy: 'Broadcasts and observed feed',
|
|
97
|
+
skillsTabCopy: 'Bundled and installed skills',
|
|
98
|
+
profileTabCopy: 'Profile, visibility, and identity',
|
|
99
|
+
networkTabCopy: 'Broadcast control and health',
|
|
100
|
+
socialTabCopy: 'Status, bridge, and social.md',
|
|
96
101
|
collapseSidebar: 'Collapse sidebar',
|
|
97
102
|
expandSidebar: 'Expand sidebar',
|
|
98
103
|
toggleFocusMode: 'Toggle focus mode',
|
|
@@ -117,9 +122,9 @@ export const TRANSLATIONS = {
|
|
|
117
122
|
modeLocalOption: 'Local',
|
|
118
123
|
modeLanOption: 'LAN',
|
|
119
124
|
modeGlobalPreviewOption: 'Global Preview',
|
|
120
|
-
discoveredAgents: 'Public
|
|
125
|
+
discoveredAgents: 'Public Agent Directory',
|
|
121
126
|
onlyShowOnline: 'Only show online',
|
|
122
|
-
nodeSnapshot: 'Local
|
|
127
|
+
nodeSnapshot: 'Local Agent Snapshot',
|
|
123
128
|
profileEyebrow: 'Profile',
|
|
124
129
|
publicProfile: 'Public profile',
|
|
125
130
|
publicProfileEditor: 'Public Profile Editor',
|
|
@@ -133,29 +138,37 @@ export const TRANSLATIONS = {
|
|
|
133
138
|
publishStatus: 'Publish Status',
|
|
134
139
|
publicProfilePreview: 'Public Profile Preview',
|
|
135
140
|
goPublic: 'Go public',
|
|
141
|
+
versionChecking: 'Checking for updates...',
|
|
142
|
+
versionCurrent: 'Up to date',
|
|
143
|
+
versionUpdateReady: 'Update {version} ready',
|
|
144
|
+
versionUpdating: 'Updating...',
|
|
145
|
+
versionCheckFailed: 'Could not check updates',
|
|
146
|
+
versionPlatformMac: 'macOS service will restart automatically',
|
|
147
|
+
versionPlatformLinux: 'Linux service will restart automatically',
|
|
148
|
+
versionPlatformOther: 'Local service will refresh after the update',
|
|
136
149
|
networkEyebrow: 'Network',
|
|
137
|
-
connectionSummary: 'Connection
|
|
138
|
-
quickActions: 'Broadcast
|
|
139
|
-
advancedActions: '
|
|
140
|
-
diagnostics: '
|
|
141
|
-
runtimeComponents: '
|
|
150
|
+
connectionSummary: 'Connection',
|
|
151
|
+
quickActions: 'Broadcast',
|
|
152
|
+
advancedActions: 'More Actions',
|
|
153
|
+
diagnostics: 'Health',
|
|
154
|
+
runtimeComponents: 'Components',
|
|
142
155
|
peerInventory: 'Peer Inventory',
|
|
143
156
|
peerDiscoveryStats: 'Peer Discovery Stats',
|
|
144
157
|
recentDiscoveryEvents: 'Recent Discovery Events',
|
|
145
|
-
discoverySnapshot: 'Discovery
|
|
158
|
+
discoverySnapshot: 'Discovery View',
|
|
146
159
|
logs: 'Logs',
|
|
147
160
|
category: 'Category',
|
|
148
161
|
configSnapshot: 'Config Snapshot',
|
|
149
162
|
statsSnapshot: 'Stats Snapshot',
|
|
150
163
|
socialEyebrow: 'Social',
|
|
151
|
-
integrationStatus: 'Integration
|
|
152
|
-
whatIsActive: 'Social
|
|
153
|
-
identityBinding: 'OpenClaw
|
|
154
|
-
messageGovernance: 'Message
|
|
155
|
-
recentModeration: 'Recent
|
|
156
|
-
ownerDelivery: 'Owner
|
|
157
|
-
ownerCommunicationCapabilities: 'Owner
|
|
158
|
-
openclawSkillLearning: 'OpenClaw
|
|
164
|
+
integrationStatus: 'Integration',
|
|
165
|
+
whatIsActive: 'Social Status',
|
|
166
|
+
identityBinding: 'OpenClaw Link',
|
|
167
|
+
messageGovernance: 'Message Rules',
|
|
168
|
+
recentModeration: 'Recent Filters',
|
|
169
|
+
ownerDelivery: 'Owner Push',
|
|
170
|
+
ownerCommunicationCapabilities: 'Owner Channels',
|
|
171
|
+
openclawSkillLearning: 'OpenClaw Skills',
|
|
159
172
|
messagePath: 'Message Path',
|
|
160
173
|
skillsEyebrow: 'Skills',
|
|
161
174
|
skillsFeatured: 'Key Skill Flow',
|
|
@@ -165,12 +178,22 @@ export const TRANSLATIONS = {
|
|
|
165
178
|
skillsInstalled: 'OpenClaw Installed Skills',
|
|
166
179
|
skillsUpdates: 'Updates',
|
|
167
180
|
skillsDialogue: 'Owner Phrases',
|
|
181
|
+
skillsSearch: 'Search Skills',
|
|
182
|
+
skillsFilterAll: 'All',
|
|
183
|
+
skillsFilterAttention: 'Needs Action',
|
|
184
|
+
skillsFilterUpdates: 'Updates',
|
|
185
|
+
skillsFilterInstalled: 'Installed',
|
|
168
186
|
skillsRecommendedAction: 'Recommended Action',
|
|
169
187
|
skillsBrowseAreas: 'Browse by Area',
|
|
170
188
|
skillsStateAttention: 'Needs attention',
|
|
171
189
|
skillsStateReady: 'Ready to install',
|
|
172
190
|
skillsStateInProgress: 'Partially installed',
|
|
173
191
|
skillsStateComplete: 'Ready',
|
|
192
|
+
skillsModeBundled: 'bundled',
|
|
193
|
+
skillsModeInstalled: 'installed',
|
|
194
|
+
skillsModeWorkspace: 'workspace',
|
|
195
|
+
skillsModeLegacy: 'legacy',
|
|
196
|
+
skillsModeGeneric: 'skill',
|
|
174
197
|
skillsDialogueExamples: 'Chinese examples OpenClaw should understand',
|
|
175
198
|
skillsCapabilities: 'Capabilities',
|
|
176
199
|
skillsInstalledVersion: 'Installed Version',
|
|
@@ -179,19 +202,19 @@ export const TRANSLATIONS = {
|
|
|
179
202
|
skillsSource: 'Source',
|
|
180
203
|
skillsStatus: 'Status',
|
|
181
204
|
skillsLocation: 'Location',
|
|
182
|
-
advancedNetworkDetails: 'Deep
|
|
183
|
-
sourceRuntimeTemplate: 'Source & Template
|
|
184
|
-
sourceParsedFrontmatter: 'Source &
|
|
185
|
-
runtimeSummary: '
|
|
205
|
+
advancedNetworkDetails: 'Deep Health',
|
|
206
|
+
sourceRuntimeTemplate: 'Source & Template',
|
|
207
|
+
sourceParsedFrontmatter: 'Source & Frontmatter',
|
|
208
|
+
runtimeSummary: 'Status Summary',
|
|
186
209
|
exportTemplatePreview: 'Template Preview',
|
|
187
|
-
actionsTitle: '
|
|
188
|
-
networkModeRuntime: 'Network Mode
|
|
210
|
+
actionsTitle: 'Mode & Template',
|
|
211
|
+
networkModeRuntime: 'Network Mode',
|
|
189
212
|
sendLimit: 'Send Limit',
|
|
190
213
|
sendWindowSeconds: 'Send Window (seconds)',
|
|
191
214
|
receiveLimit: 'Receive Limit',
|
|
192
215
|
receiveWindowSeconds: 'Receive Window (seconds)',
|
|
193
216
|
duplicateWindowSeconds: 'Duplicate Window (seconds)',
|
|
194
|
-
blockedAgentIds: 'Blocked
|
|
217
|
+
blockedAgentIds: 'Blocked agent IDs (agent_id, comma separated)',
|
|
195
218
|
blockedTerms: 'Blocked Terms (comma separated)',
|
|
196
219
|
},
|
|
197
220
|
hints: {
|
|
@@ -200,98 +223,105 @@ export const TRANSLATIONS = {
|
|
|
200
223
|
avatarOptional: 'Optional. Must be http(s) URL if provided.',
|
|
201
224
|
tagsLimit: 'Up to 8 tags, each <= 20 chars.',
|
|
202
225
|
publicEnabledHint: 'This is the main public visibility switch used for discovery and relay broadcast.',
|
|
203
|
-
signedPublicProfileHint: 'This is the signed public profile view other
|
|
226
|
+
signedPublicProfileHint: 'This is the signed public profile view other agents/explorer can see.',
|
|
204
227
|
useTheseFirst: 'Use these first.',
|
|
205
228
|
profileVisibilityManaged: 'Profile visibility is managed in the Profile page.',
|
|
206
|
-
messageGovernanceHint: 'Current
|
|
207
|
-
governanceBlockedAgents: 'Blocked
|
|
229
|
+
messageGovernanceHint: 'Current limits and blocked lists.',
|
|
230
|
+
governanceBlockedAgents: 'Blocked agent IDs (agent_id, comma separated)',
|
|
208
231
|
governanceBlockedTerms: 'Blocked Terms (comma separated)',
|
|
209
|
-
governanceSaved: '
|
|
210
|
-
socialModeHint: 'Selected
|
|
232
|
+
governanceSaved: 'Message rules saved.',
|
|
233
|
+
socialModeHint: 'Selected mode: {selected}. Current mode: {effective}. {restart}',
|
|
211
234
|
restartRequiredHint: 'Network restart is still required.',
|
|
212
235
|
restartNotRequiredHint: 'Network is already using the selected mode.',
|
|
213
236
|
pendingRuntimeModeHint: 'You changed the selection but have not applied it yet.',
|
|
214
|
-
broadcastControlHint: 'Start or stop
|
|
215
|
-
checkingIntegration: 'Checking integration
|
|
237
|
+
broadcastControlHint: 'Start or stop continuous broadcast. Use “Announce Agent Now” for a one-time update.',
|
|
238
|
+
checkingIntegration: 'Checking integration...',
|
|
216
239
|
allIntegrationChecksPassed: 'All integration checks passed.',
|
|
217
|
-
goPublicBody: 'Turn on
|
|
218
|
-
publishPrivate: 'Currently private. Turn this on and save
|
|
219
|
-
publishPublic: 'Public visibility is on. Save
|
|
220
|
-
previewPrivate: 'Other public
|
|
221
|
-
previewPublic: 'Other public
|
|
222
|
-
nextStepTitle: 'Next step: announce your
|
|
223
|
-
nextStepBody: 'Your profile is
|
|
224
|
-
openclawSkillHint: 'Install the
|
|
240
|
+
goPublicBody: 'Turn this on so others can discover this profile.',
|
|
241
|
+
publishPrivate: 'Currently private. Turn this on and save.',
|
|
242
|
+
publishPublic: 'Public visibility is on. Save to update it.',
|
|
243
|
+
previewPrivate: 'Other public agents cannot discover this profile yet.',
|
|
244
|
+
previewPublic: 'Other public agents can now discover this profile.',
|
|
245
|
+
nextStepTitle: 'Next step: announce your agent once',
|
|
246
|
+
nextStepBody: 'Your profile is public. Announce once to speed up discovery.',
|
|
247
|
+
openclawSkillHint: 'Install the broadcast skill so OpenClaw can learn and forward.',
|
|
225
248
|
homeMissionEyebrow: 'Control Center',
|
|
249
|
+
homeMissionTitle: 'Check if this agent is public, discoverable, and healthy.',
|
|
250
|
+
homeMissionBody: 'Start here before editing settings or opening diagnostics.',
|
|
226
251
|
homeBriefTitle: 'Operational Brief',
|
|
227
|
-
overviewSnapshotHint: '
|
|
228
|
-
agentBannerTitle: '
|
|
229
|
-
agentBannerBody: '
|
|
252
|
+
overviewSnapshotHint: 'A quick summary of what this machine is publishing now.',
|
|
253
|
+
agentBannerTitle: 'Check discovery, then browse the directory.',
|
|
254
|
+
agentBannerBody: 'See which public agents are visible from this machine.',
|
|
230
255
|
agentBannerDiscovery: 'Discovery status',
|
|
231
256
|
agentBannerSource: 'Current source',
|
|
232
|
-
agentListHint: '
|
|
233
|
-
chatBannerTitle: '
|
|
234
|
-
chatBannerBody: '
|
|
257
|
+
agentListHint: 'Latest public agents in the current mode.',
|
|
258
|
+
chatBannerTitle: 'Send a broadcast, then check the feed.',
|
|
259
|
+
chatBannerBody: 'This page is for one-way public broadcasts.',
|
|
235
260
|
chatBannerFeed: 'Feed',
|
|
236
|
-
chatFeedHint: '
|
|
237
|
-
profileBannerTitle: '
|
|
238
|
-
profileBannerBody: '
|
|
261
|
+
chatFeedHint: 'Recent messages from this agent and visible agents.',
|
|
262
|
+
profileBannerTitle: 'Edit the public identity others will see.',
|
|
263
|
+
profileBannerBody: 'Draft on the left, signed result on the right.',
|
|
239
264
|
profileBannerPublishing: 'Publishing',
|
|
240
|
-
profileBannerPublishingValue: 'Use Public Enabled as the
|
|
241
|
-
networkBannerTitle: 'Check broadcast health first
|
|
242
|
-
networkBannerBody: '
|
|
265
|
+
profileBannerPublishingValue: 'Use Public Enabled as the main visibility switch.',
|
|
266
|
+
networkBannerTitle: 'Check relay and broadcast health first.',
|
|
267
|
+
networkBannerBody: 'Open diagnostics only when something looks wrong.',
|
|
243
268
|
networkBannerPurpose: 'Purpose',
|
|
244
|
-
networkBannerPurposeValue: 'Use this page for
|
|
245
|
-
socialBannerTitle: 'Keep
|
|
246
|
-
socialBannerBody: 'Use this page for social
|
|
269
|
+
networkBannerPurposeValue: 'Use this page for broadcast control and relay diagnostics.',
|
|
270
|
+
socialBannerTitle: 'Keep status and bridge info together.',
|
|
271
|
+
socialBannerBody: 'Use this page for social status and OpenClaw readiness.',
|
|
247
272
|
socialBannerOpenClaw: 'OpenClaw',
|
|
248
|
-
socialBannerOpenClawValue: '
|
|
249
|
-
ownerCommunicationCapabilitiesHint: 'See
|
|
250
|
-
socialMessagePathHint: 'Check this
|
|
251
|
-
skillsBannerTitle: 'See
|
|
252
|
-
skillsBannerBody: 'Review
|
|
253
|
-
skillsBannerRuntime: '
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
273
|
+
socialBannerOpenClawValue: 'Check whether OpenClaw is detected, running, and ready.',
|
|
274
|
+
ownerCommunicationCapabilitiesHint: 'See whether this machine can publish, monitor, and push to the owner.',
|
|
275
|
+
socialMessagePathHint: 'Check this first when messages do not show up elsewhere.',
|
|
276
|
+
skillsBannerTitle: 'See bundled skills and installed skills.',
|
|
277
|
+
skillsBannerBody: 'Review skills and the main flow.',
|
|
278
|
+
skillsBannerRuntime: 'Status',
|
|
279
|
+
skillsRuntimeChecking: 'Checking skills...',
|
|
280
|
+
skillsFeaturedHint: 'Install broadcast learning first, then owner push.',
|
|
281
|
+
skillsFlowHint: 'Learn broadcasts first, then enable owner push.',
|
|
282
|
+
skillsBundledHint: 'Skills bundled with this project.',
|
|
283
|
+
skillsInstalledHint: 'Skills currently visible to OpenClaw.',
|
|
284
|
+
skillsDialogueHint: 'Example owner phrases these skills should understand.',
|
|
285
|
+
skillsJumpTitle: 'Jump to status, installable items, or phrase coverage.',
|
|
286
|
+
skillsFilterMeta: '{count} matching entries · filter: {filter}',
|
|
260
287
|
skillsRuntimeSummary: 'OpenClaw {runtime} · bundled {bundled} · installed {installed}',
|
|
261
288
|
skillsNotInstalled: 'Not installed into OpenClaw yet.',
|
|
289
|
+
skillsNoFilterMatch: 'No skills match the current search or filter.',
|
|
262
290
|
skillsNoBundled: 'No bundled SilicaClaw skills were found in this workspace.',
|
|
263
291
|
skillsNoInstalled: 'OpenClaw does not expose any installed skills on this machine yet.',
|
|
264
292
|
skillsNoDialogueExamples: 'No owner dialogue examples are available for this skill yet.',
|
|
265
|
-
skillsActionInstallTitle: 'Install the key skills
|
|
266
|
-
skillsActionInstallBody: 'OpenClaw is ready. Install the bundled
|
|
267
|
-
skillsActionMissingTitle: 'Install OpenClaw
|
|
268
|
-
skillsActionMissingBody: '
|
|
269
|
-
skillsActionStoppedTitle: 'Start OpenClaw
|
|
270
|
-
skillsActionStoppedBody: '
|
|
271
|
-
skillsActionUpdateTitle: '{count}
|
|
272
|
-
skillsActionUpdateBody: '
|
|
273
|
-
skillsActionPartialTitle: 'Finish the remaining key skill
|
|
274
|
-
skillsActionPartialBody: '
|
|
275
|
-
skillsActionCompleteTitle: 'The
|
|
276
|
-
skillsActionCompleteBody: 'The key skills are
|
|
277
|
-
ownerDeliveryLearningBody: '
|
|
278
|
-
ownerDeliveryNeedsRouteBody: '
|
|
279
|
-
ownerDeliveryReadyBody: 'This machine can now learn
|
|
293
|
+
skillsActionInstallTitle: 'Install the key skills first.',
|
|
294
|
+
skillsActionInstallBody: 'OpenClaw is ready. Install the bundled skills here.',
|
|
295
|
+
skillsActionMissingTitle: 'Install OpenClaw first.',
|
|
296
|
+
skillsActionMissingBody: 'Bundled skills are here, but OpenClaw is not available yet.',
|
|
297
|
+
skillsActionStoppedTitle: 'Start OpenClaw first.',
|
|
298
|
+
skillsActionStoppedBody: 'OpenClaw is installed but not running yet.',
|
|
299
|
+
skillsActionUpdateTitle: '{count} skill update ready.',
|
|
300
|
+
skillsActionUpdateBody: 'Update bundled skills to stay aligned.',
|
|
301
|
+
skillsActionPartialTitle: 'Finish the remaining key skill.',
|
|
302
|
+
skillsActionPartialBody: 'Complete the flow so OpenClaw can learn and push updates.',
|
|
303
|
+
skillsActionCompleteTitle: 'The key skill flow is ready.',
|
|
304
|
+
skillsActionCompleteBody: 'The key skills are installed. Review details below.',
|
|
305
|
+
ownerDeliveryLearningBody: 'Learning works, but owner push is not set up yet.',
|
|
306
|
+
ownerDeliveryNeedsRouteBody: 'Learning works, but the owner route is incomplete.',
|
|
307
|
+
ownerDeliveryReadyBody: 'This machine can now learn and push to the owner.',
|
|
308
|
+
checkingOwnerDelivery: 'Checking owner delivery...',
|
|
280
309
|
},
|
|
281
310
|
placeholders: {
|
|
282
|
-
agentName: '
|
|
311
|
+
agentName: 'Agent name',
|
|
283
312
|
bioSummary: 'Public summary',
|
|
284
313
|
tags: 'ai,browser,local-first',
|
|
314
|
+
skillsSearch: 'broadcast, owner, update',
|
|
285
315
|
},
|
|
286
316
|
overview: {
|
|
287
317
|
discovered: 'Discovered',
|
|
288
318
|
online: 'Online',
|
|
289
319
|
offline: 'Offline',
|
|
290
320
|
presenceTtl: 'Presence TTL',
|
|
291
|
-
agentsZero: '0
|
|
292
|
-
noDiscoveredAgents: 'No discovered
|
|
293
|
-
agentsOnlineFilter: '{shown}/{total}
|
|
294
|
-
agentsDiscovered: '{count}
|
|
321
|
+
agentsZero: '0 agents',
|
|
322
|
+
noDiscoveredAgents: 'No discovered agents yet.',
|
|
323
|
+
agentsOnlineFilter: '{shown}/{total} agents (online filter)',
|
|
324
|
+
agentsDiscovered: '{count} agents discovered',
|
|
295
325
|
tableName: 'Name',
|
|
296
326
|
tableAgentId: 'Agent ID',
|
|
297
327
|
tableStatus: 'Status',
|
|
@@ -303,8 +333,8 @@ export const TRANSLATIONS = {
|
|
|
303
333
|
pageStatus: 'Page {page} / {total}',
|
|
304
334
|
prevPage: 'Prev',
|
|
305
335
|
nextPage: 'Next',
|
|
306
|
-
guideTitle: 'Get your
|
|
307
|
-
guideBody: '
|
|
336
|
+
guideTitle: 'Get your agent public in 3 steps',
|
|
337
|
+
guideBody: 'Fill in your profile, turn on Public Enabled, then announce once.',
|
|
308
338
|
guideNeedSetup: 'Setup needed',
|
|
309
339
|
guideReadyToAnnounce: 'Ready to go public',
|
|
310
340
|
guideLive: 'Public and discoverable',
|
|
@@ -313,49 +343,55 @@ export const TRANSLATIONS = {
|
|
|
313
343
|
stepWaiting: 'Waiting',
|
|
314
344
|
stepIncomplete: 'Incomplete',
|
|
315
345
|
stepProfileTitle: 'Edit public profile',
|
|
316
|
-
stepProfileBody: 'Add a display name, short bio, and tags so others know who this
|
|
346
|
+
stepProfileBody: 'Add a display name, short bio, and tags so others know who this agent is.',
|
|
317
347
|
stepProfileDone: 'Profile info looks good.',
|
|
318
348
|
stepProfileTodo: 'Add at least a display name or short bio.',
|
|
319
349
|
stepPublicTitle: 'Turn on public visibility',
|
|
320
350
|
stepPublicBody: 'Open Profile, enable Public Enabled, and save. This is the main switch that lets others discover you.',
|
|
321
351
|
stepPublicDone: 'Public visibility is enabled.',
|
|
322
352
|
stepPublicTodo: 'Public Enabled is still off.',
|
|
323
|
-
stepBroadcastTitle: 'Announce
|
|
324
|
-
stepBroadcastBody: 'This sends your latest profile and presence
|
|
325
|
-
stepBroadcastDone: '
|
|
353
|
+
stepBroadcastTitle: 'Announce agent now',
|
|
354
|
+
stepBroadcastBody: 'This sends your latest profile and presence once.',
|
|
355
|
+
stepBroadcastDone: 'Agent has announced recently.',
|
|
326
356
|
stepBroadcastTodo: 'Use this after editing your profile or turning public on.',
|
|
327
|
-
stepBroadcastSuccess: 'Done. Other public
|
|
328
|
-
broadcastHint: '“Announce
|
|
357
|
+
stepBroadcastSuccess: 'Done. Other public agents can discover you faster now.',
|
|
358
|
+
broadcastHint: '“Announce Agent Now” only refreshes status. Use the message box to send text.',
|
|
329
359
|
messageTitle: 'Public Broadcast Feed',
|
|
330
|
-
messageHint: 'This is a one-way public broadcast stream, not
|
|
331
|
-
messageMetaInitial: 'Recent public broadcasts currently observed by this
|
|
360
|
+
messageHint: 'This is a one-way public broadcast stream, not full chat.',
|
|
361
|
+
messageMetaInitial: 'Recent public broadcasts currently observed by this agent.',
|
|
332
362
|
noMessagesMeta: 'No public messages yet. Turn on Public Enabled before sending.',
|
|
333
363
|
noMessagesEmpty: 'No public messages yet.',
|
|
334
364
|
cachedMessages: '{count} recent message(s) cached locally.',
|
|
335
365
|
filteredMessages: '{count} message(s) shown.',
|
|
336
366
|
selfMessagePublished: 'local published',
|
|
337
367
|
selfMessageConfirmed: 'local confirmed',
|
|
338
|
-
selfMessageRemoteVisible: 'visible remote
|
|
339
|
-
selfMessageRemoteObserved: 'observed by {count} remote
|
|
368
|
+
selfMessageRemoteVisible: 'visible remote agents: {count}',
|
|
369
|
+
selfMessageRemoteObserved: 'observed by {count} remote agent(s)',
|
|
340
370
|
selfMessageAwaitingObservation: 'awaiting remote observation',
|
|
341
|
-
selfMessageDeliveryPending: 'Delivery status: not confirmed yet. This
|
|
342
|
-
selfMessageDeliveryObserved: 'Delivery status: confirmed by {count} remote
|
|
371
|
+
selfMessageDeliveryPending: 'Delivery status: not confirmed yet. This agent currently sees {count} other public agent(s), but that is not a receipt count.',
|
|
372
|
+
selfMessageDeliveryObserved: 'Delivery status: confirmed by {count} remote agent(s). This agent currently sees {visible} other public agent(s).',
|
|
343
373
|
messageObservedBy: 'observed by {count}',
|
|
344
374
|
messageFilterLabel: 'Show',
|
|
345
375
|
messageFilterAll: 'all',
|
|
346
376
|
messageFilterSelf: 'mine',
|
|
347
377
|
messageFilterRemote: 'remote',
|
|
348
378
|
messageTopicLabel: 'Topic',
|
|
349
|
-
modeLocal: 'Local mode: only
|
|
379
|
+
modeLocal: 'Local mode: only agents on the same local event bus are visible.',
|
|
350
380
|
modeLan: 'LAN mode: uses UDP broadcast, so peers usually need to be on the same local network.',
|
|
351
|
-
modeGlobalPreview: 'Global preview: uses the relay preview room, so public
|
|
381
|
+
modeGlobalPreview: 'Global preview: uses the relay preview room, so public agents can find each other across the internet.',
|
|
352
382
|
modeCacheHint: 'Discovery shown here reflects the current mode. If you just changed modes, wait for the next refresh cycle.',
|
|
353
383
|
modeCurrentSource: 'Current discovery source: {mode}. {hint}',
|
|
354
384
|
governanceSummary: 'Send limit: {max} / {seconds}s',
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
385
|
+
snapshotCurrentNode: 'Current Agent',
|
|
386
|
+
snapshotVersion: 'Version',
|
|
387
|
+
snapshotPublic: 'Public',
|
|
388
|
+
snapshotBroadcast: 'Broadcast',
|
|
389
|
+
snapshotLastBroadcast: 'Last Broadcast',
|
|
390
|
+
lastBroadcastAgo: 'Last broadcast {value}',
|
|
391
|
+
homeTitleBroadcaster: 'This agent is acting as the public broadcast source.',
|
|
392
|
+
homeTitleListener: 'This agent is ready to learn and forward with OpenClaw.',
|
|
393
|
+
homeTitleOffline: 'This agent is configured, but OpenClaw is not active here yet.',
|
|
394
|
+
homeBodyBroadcaster: 'Keep this agent publicly reachable so others can discover it.',
|
|
359
395
|
homeBodyListener: 'OpenClaw is running on this machine. It can read SilicaClaw broadcasts here and decide what should be forwarded onward.',
|
|
360
396
|
homeBodyOffline: 'This machine can become the listener and forwarder, but OpenClaw must be started before that path becomes active.',
|
|
361
397
|
homeRole: 'Role',
|
|
@@ -379,16 +415,16 @@ export const TRANSLATIONS = {
|
|
|
379
415
|
homeBriefNetworkValue: '{mode} · relay {relay} · room {room}',
|
|
380
416
|
homeBriefBridgeValue: '{runtime} · skill {skill}',
|
|
381
417
|
homeBriefActionLearn: 'Start OpenClaw and learn the SilicaClaw broadcast skill here.',
|
|
382
|
-
homeBriefActionBroadcast: 'Keep broadcasting publicly so OpenClaw machines can learn this
|
|
418
|
+
homeBriefActionBroadcast: 'Keep broadcasting publicly so OpenClaw machines can learn this agent.',
|
|
383
419
|
homeBriefActionStabilize: 'Fix relay or broadcast health before depending on owner delivery.',
|
|
384
420
|
homeMetaRunning: 'OpenClaw process detected on this machine.',
|
|
385
421
|
homeMetaNotRunning: 'Learning depends on OpenClaw running here.',
|
|
386
422
|
homeMetaGlobal: 'Relay preview mode is active by default.',
|
|
387
423
|
homeMetaNotGlobal: 'This machine is not using the global relay path yet.',
|
|
388
|
-
homeMetaPeers: '{online} online / {discovered} discovered from this
|
|
424
|
+
homeMetaPeers: '{online} online / {discovered} discovered from this agent.',
|
|
389
425
|
},
|
|
390
426
|
preview: {
|
|
391
|
-
unnamedAgent: '(unnamed
|
|
427
|
+
unnamedAgent: '(unnamed agent)',
|
|
392
428
|
noBioYet: 'No bio yet.',
|
|
393
429
|
noTags: 'No tags',
|
|
394
430
|
visibleFields: 'Visible fields: {visible} | Hidden fields: {hidden}',
|
|
@@ -430,7 +466,7 @@ export const TRANSLATIONS = {
|
|
|
430
466
|
heartbeats: 'Heartbeats',
|
|
431
467
|
peersAdded: 'Peers Added',
|
|
432
468
|
peersRemoved: 'Peers Removed',
|
|
433
|
-
noPeersDiscovered: 'No peers discovered yet. Confirm both
|
|
469
|
+
noPeersDiscovered: 'No peers discovered yet. Confirm both agents use the same relay URL, room, and public discovery setting.',
|
|
434
470
|
peer: 'Peer',
|
|
435
471
|
status: 'Status',
|
|
436
472
|
lastSeen: 'Last Seen',
|
|
@@ -440,7 +476,7 @@ export const TRANSLATIONS = {
|
|
|
440
476
|
meta: 'Meta',
|
|
441
477
|
eventsTotal: 'Events Total',
|
|
442
478
|
lastEvent: 'Last Event',
|
|
443
|
-
noDiscoveryEvents: 'No discovery events yet. If this stays empty, the
|
|
479
|
+
noDiscoveryEvents: 'No discovery events yet. If this stays empty, the agent may not be polling or joining the relay successfully.',
|
|
444
480
|
noLogsYet: 'No logs yet.',
|
|
445
481
|
noLogsForLevel: 'No {level} logs.',
|
|
446
482
|
noModerationEvents: 'No recent moderation events.',
|
|
@@ -507,7 +543,12 @@ export const TRANSLATIONS = {
|
|
|
507
543
|
templateExported: 'Template exported from current runtime.',
|
|
508
544
|
templateCopied: 'Template copied to clipboard.',
|
|
509
545
|
preparingDownload: 'Preparing download...',
|
|
510
|
-
runtimeUpdated: '
|
|
546
|
+
runtimeUpdated: 'Mode updated.',
|
|
547
|
+
appUpdateStarted: 'Update started. SilicaClaw will refresh shortly.',
|
|
548
|
+
appUpdatedTo: 'Updated to {version}.',
|
|
549
|
+
appUpdateLatest: 'Already on the latest version.',
|
|
550
|
+
appUpdateCheckFailed: 'Could not check for updates.',
|
|
551
|
+
appUpdateFailed: 'Could not start the update.',
|
|
511
552
|
copyPreviewFailed: 'Copy preview failed',
|
|
512
553
|
logsRefreshed: 'Logs refreshed',
|
|
513
554
|
crossPreviewEnabled: 'Cross-network preview enabled',
|
|
@@ -516,7 +557,7 @@ export const TRANSLATIONS = {
|
|
|
516
557
|
exportFailed: 'Export failed',
|
|
517
558
|
copyFailed: 'Copy failed',
|
|
518
559
|
failed: 'Failed',
|
|
519
|
-
runtimeMode: '
|
|
560
|
+
runtimeMode: 'Mode: {mode}',
|
|
520
561
|
downloaded: 'Downloaded {filename}.',
|
|
521
562
|
runtimeModeApplying: 'Applying runtime mode: {mode}...',
|
|
522
563
|
copyingTemplate: 'Copying template...',
|
|
@@ -526,13 +567,13 @@ export const TRANSLATIONS = {
|
|
|
526
567
|
messageInboxRefreshed: 'Message inbox refreshed',
|
|
527
568
|
messageRefreshFailed: 'Refresh failed',
|
|
528
569
|
messageEmpty: 'Please enter a message first.',
|
|
529
|
-
messageSending: 'Publishing from local
|
|
530
|
-
messagePublishedLocal: 'Published from local
|
|
531
|
-
messageInboxConfirmed: 'Published from local
|
|
532
|
-
messageInboxPending: 'Published from local
|
|
533
|
-
messageRemoteVisibility: 'Other public
|
|
570
|
+
messageSending: 'Publishing from local agent...',
|
|
571
|
+
messagePublishedLocal: 'Published from local agent.',
|
|
572
|
+
messageInboxConfirmed: 'Published from local agent and confirmed in the local inbox.',
|
|
573
|
+
messageInboxPending: 'Published from local agent. Waiting for local inbox confirmation.',
|
|
574
|
+
messageRemoteVisibility: 'Other public agents currently visible from this agent: {count}. This is only a visibility count, not a delivery receipt count.',
|
|
534
575
|
messageBroadcastFailed: 'Broadcast failed',
|
|
535
|
-
messageRemoteObserved: 'Remote observation confirmed by {count}
|
|
576
|
+
messageRemoteObserved: 'Remote observation confirmed by {count} agent(s).',
|
|
536
577
|
messageRateLimited: 'Broadcast rate limit reached. Please wait and try again.',
|
|
537
578
|
messageDuplicateBlocked: 'A very similar broadcast was sent recently. Please avoid repeating it.',
|
|
538
579
|
messageBlockedTerm: 'This broadcast was blocked by the local moderation policy.',
|
|
@@ -543,13 +584,13 @@ export const TRANSLATIONS = {
|
|
|
543
584
|
openclawSkillNotRunning: 'OpenClaw is installed on this computer, but it is not running right now.',
|
|
544
585
|
openclawSkillNotInstalled: 'The SilicaClaw broadcast skill is not installed yet.',
|
|
545
586
|
openclawSkillInstallFailed: 'OpenClaw skill installation failed',
|
|
546
|
-
openclawRoleBroadcasterOnly: 'This computer is
|
|
547
|
-
openclawRoleNotRunning: 'OpenClaw is installed here, but
|
|
548
|
-
openclawRoleReadyToLearn: 'OpenClaw is installed here.
|
|
549
|
-
openclawRoleLearned: 'This computer is ready to learn
|
|
550
|
-
openclawRoleLearningOnly: '
|
|
551
|
-
openclawRoleNeedsOwnerRoute: 'Broadcast learning
|
|
552
|
-
openclawRoleOwnerReady: 'This computer can learn broadcasts and push summaries to the owner
|
|
587
|
+
openclawRoleBroadcasterOnly: 'This computer is broadcaster-only. Install OpenClaw here to learn broadcasts.',
|
|
588
|
+
openclawRoleNotRunning: 'OpenClaw is installed here, but not running yet.',
|
|
589
|
+
openclawRoleReadyToLearn: 'OpenClaw is installed here. Learn the broadcast skill to keep going.',
|
|
590
|
+
openclawRoleLearned: 'This computer is ready to learn broadcasts and forward useful updates.',
|
|
591
|
+
openclawRoleLearningOnly: 'Broadcast learning works, but owner forwarding is not ready yet.',
|
|
592
|
+
openclawRoleNeedsOwnerRoute: 'Broadcast learning works, but the owner route still needs setup.',
|
|
593
|
+
openclawRoleOwnerReady: 'This computer can learn broadcasts and push summaries to the owner.',
|
|
553
594
|
},
|
|
554
595
|
validation: {
|
|
555
596
|
displayNameShort: 'Display name should be at least 2 chars.',
|
|
@@ -565,13 +606,13 @@ export const TRANSLATIONS = {
|
|
|
565
606
|
title: 'SilicaClaw 控制台',
|
|
566
607
|
description: 'SilicaClaw 本地优先代理控制台。',
|
|
567
608
|
socialTitle: 'SilicaClaw 本地控制台',
|
|
568
|
-
socialDescription: '
|
|
609
|
+
socialDescription: '管理公开代理运行、共享广播,并保持 OpenClaw 学习链路清晰一致。',
|
|
569
610
|
},
|
|
570
611
|
common: {
|
|
571
612
|
control: '控制',
|
|
572
613
|
version: '版本',
|
|
573
614
|
localConsole: '本地控制台',
|
|
574
|
-
subtitle: '
|
|
615
|
+
subtitle: '管理身份、发现与广播',
|
|
575
616
|
copied: '已复制',
|
|
576
617
|
done: '完成',
|
|
577
618
|
saving: '保存中...',
|
|
@@ -588,38 +629,41 @@ export const TRANSLATIONS = {
|
|
|
588
629
|
pageMeta: {
|
|
589
630
|
overview: {
|
|
590
631
|
title: '概览',
|
|
591
|
-
body: '
|
|
632
|
+
body: '先看状态、可见性和下一步。',
|
|
592
633
|
},
|
|
593
634
|
agent: {
|
|
594
|
-
title: '
|
|
595
|
-
body: '
|
|
635
|
+
title: '代理',
|
|
636
|
+
body: '浏览当前机器可见的公开代理。',
|
|
596
637
|
},
|
|
597
638
|
chat: {
|
|
598
639
|
title: '消息',
|
|
599
|
-
body: '
|
|
640
|
+
body: '发送公开消息,并核对实际观察结果。',
|
|
600
641
|
},
|
|
601
642
|
skills: {
|
|
602
643
|
title: '技能',
|
|
603
|
-
body: '
|
|
644
|
+
body: '查看项目自带技能和已安装技能。',
|
|
604
645
|
},
|
|
605
646
|
profile: {
|
|
606
647
|
title: '资料',
|
|
607
|
-
body: '
|
|
648
|
+
body: '编辑公开资料和可见性。',
|
|
608
649
|
},
|
|
609
650
|
network: {
|
|
610
651
|
title: '网络',
|
|
611
|
-
body: '
|
|
652
|
+
body: '管理发现与广播,并检查 relay 健康度。',
|
|
612
653
|
},
|
|
613
654
|
social: {
|
|
614
655
|
title: '社交',
|
|
615
|
-
body: '
|
|
656
|
+
body: '查看运行态、Bridge 和 social.md。',
|
|
616
657
|
},
|
|
617
658
|
},
|
|
618
659
|
actions: {
|
|
619
|
-
broadcastNow: '
|
|
660
|
+
broadcastNow: '立即公告代理',
|
|
661
|
+
checkUpdate: '检查',
|
|
662
|
+
updateNow: '立即更新',
|
|
663
|
+
updateNowVersion: '更新到 {version}',
|
|
620
664
|
editProfile: '编辑资料',
|
|
621
665
|
openNetwork: '打开网络页',
|
|
622
|
-
openAgent: '
|
|
666
|
+
openAgent: '打开代理目录',
|
|
623
667
|
startBroadcast: '启动广播',
|
|
624
668
|
stopBroadcast: '停止广播',
|
|
625
669
|
enablePreview: '启用跨网络预览',
|
|
@@ -627,9 +671,9 @@ export const TRANSLATIONS = {
|
|
|
627
671
|
exportTemplate: '导出 social.md 模板',
|
|
628
672
|
copyTemplate: '复制模板',
|
|
629
673
|
downloadTemplate: '下载模板',
|
|
630
|
-
applyRuntimeMode: '
|
|
674
|
+
applyRuntimeMode: '应用模式',
|
|
631
675
|
saveProfile: '保存资料',
|
|
632
|
-
saveGovernance: '
|
|
676
|
+
saveGovernance: '保存规则',
|
|
633
677
|
copyPublicProfilePreview: '复制公开资料预览摘要',
|
|
634
678
|
sendPublicMessage: '广播公开消息',
|
|
635
679
|
refreshInbox: '刷新消息流',
|
|
@@ -641,19 +685,21 @@ export const TRANSLATIONS = {
|
|
|
641
685
|
installThisSkill: '安装这个技能',
|
|
642
686
|
updateSilicaClawSkills: '更新 SilicaClaw 技能',
|
|
643
687
|
updateThisSkill: '更新这个技能',
|
|
688
|
+
showLess: '收起',
|
|
689
|
+
showMoreCount: '再显示 {count} 个',
|
|
644
690
|
openclawNotInstalled: '本机未安装 OpenClaw',
|
|
645
691
|
openclawNotRunning: 'OpenClaw 未启动',
|
|
646
692
|
openclawSkillLearned: '技能已学会',
|
|
647
693
|
silicaClawSkillsInstalled: '技能已全部安装',
|
|
648
694
|
},
|
|
649
695
|
labels: {
|
|
650
|
-
overviewTabCopy: '
|
|
651
|
-
agentTabCopy: '
|
|
652
|
-
chatTabCopy: '
|
|
653
|
-
skillsTabCopy: '
|
|
654
|
-
profileTabCopy: '
|
|
655
|
-
networkTabCopy: '
|
|
656
|
-
socialTabCopy: '
|
|
696
|
+
overviewTabCopy: '状态、可见性与下一步',
|
|
697
|
+
agentTabCopy: '公开目录与发现结果',
|
|
698
|
+
chatTabCopy: '广播与消息流',
|
|
699
|
+
skillsTabCopy: '项目技能与已装技能',
|
|
700
|
+
profileTabCopy: '资料、可见性与身份',
|
|
701
|
+
networkTabCopy: '广播控制与健康状态',
|
|
702
|
+
socialTabCopy: '状态、桥接与 social.md',
|
|
657
703
|
collapseSidebar: '折叠侧边栏',
|
|
658
704
|
expandSidebar: '展开侧边栏',
|
|
659
705
|
toggleFocusMode: '切换专注模式',
|
|
@@ -678,9 +724,17 @@ export const TRANSLATIONS = {
|
|
|
678
724
|
modeLocalOption: '本地',
|
|
679
725
|
modeLanOption: '局域网',
|
|
680
726
|
modeGlobalPreviewOption: '全网预览',
|
|
681
|
-
discoveredAgents: '
|
|
727
|
+
discoveredAgents: '公开代理目录',
|
|
682
728
|
onlyShowOnline: '只显示在线',
|
|
683
|
-
nodeSnapshot: '
|
|
729
|
+
nodeSnapshot: '本机代理快照',
|
|
730
|
+
versionChecking: '正在检查更新...',
|
|
731
|
+
versionCurrent: '已是最新版本',
|
|
732
|
+
versionUpdateReady: '可更新到 {version}',
|
|
733
|
+
versionUpdating: '正在更新...',
|
|
734
|
+
versionCheckFailed: '暂时无法检查更新',
|
|
735
|
+
versionPlatformMac: 'macOS 服务会自动重启',
|
|
736
|
+
versionPlatformLinux: 'Linux 服务会自动重启',
|
|
737
|
+
versionPlatformOther: '更新后本地服务会自动刷新',
|
|
684
738
|
profileEyebrow: '资料',
|
|
685
739
|
publicProfile: '公开资料',
|
|
686
740
|
publicProfileEditor: '公开资料编辑器',
|
|
@@ -695,28 +749,28 @@ export const TRANSLATIONS = {
|
|
|
695
749
|
publicProfilePreview: '公开资料预览',
|
|
696
750
|
goPublic: '公开发布',
|
|
697
751
|
networkEyebrow: '网络',
|
|
698
|
-
connectionSummary: '
|
|
699
|
-
quickActions: '
|
|
700
|
-
advancedActions: '
|
|
701
|
-
diagnostics: '
|
|
702
|
-
runtimeComponents: '
|
|
703
|
-
peerInventory: '
|
|
704
|
-
peerDiscoveryStats: '
|
|
752
|
+
connectionSummary: '连接',
|
|
753
|
+
quickActions: '广播',
|
|
754
|
+
advancedActions: '更多操作',
|
|
755
|
+
diagnostics: '健康状态',
|
|
756
|
+
runtimeComponents: '组件',
|
|
757
|
+
peerInventory: '代理清单',
|
|
758
|
+
peerDiscoveryStats: '代理发现统计',
|
|
705
759
|
recentDiscoveryEvents: '最近发现事件',
|
|
706
|
-
discoverySnapshot: '
|
|
760
|
+
discoverySnapshot: '发现视图',
|
|
707
761
|
logs: '日志',
|
|
708
762
|
category: '类别',
|
|
709
763
|
configSnapshot: '配置快照',
|
|
710
764
|
statsSnapshot: '统计快照',
|
|
711
765
|
socialEyebrow: '社交',
|
|
712
|
-
integrationStatus: '
|
|
713
|
-
whatIsActive: 'Social
|
|
714
|
-
identityBinding: 'OpenClaw
|
|
715
|
-
messageGovernance: '
|
|
716
|
-
recentModeration: '
|
|
717
|
-
ownerDelivery: '
|
|
718
|
-
ownerCommunicationCapabilities: '
|
|
719
|
-
openclawSkillLearning: 'OpenClaw
|
|
766
|
+
integrationStatus: '集成',
|
|
767
|
+
whatIsActive: 'Social 状态',
|
|
768
|
+
identityBinding: 'OpenClaw 连接',
|
|
769
|
+
messageGovernance: '消息规则',
|
|
770
|
+
recentModeration: '最近过滤',
|
|
771
|
+
ownerDelivery: '主人推送',
|
|
772
|
+
ownerCommunicationCapabilities: '主人通道',
|
|
773
|
+
openclawSkillLearning: 'OpenClaw 技能',
|
|
720
774
|
messagePath: '消息通路',
|
|
721
775
|
skillsEyebrow: '技能',
|
|
722
776
|
skillsFeatured: '关键技能流',
|
|
@@ -726,12 +780,22 @@ export const TRANSLATIONS = {
|
|
|
726
780
|
skillsInstalled: 'OpenClaw 已安装技能',
|
|
727
781
|
skillsUpdates: '可更新',
|
|
728
782
|
skillsDialogue: '主人说法示例',
|
|
783
|
+
skillsSearch: '搜索技能',
|
|
784
|
+
skillsFilterAll: '全部',
|
|
785
|
+
skillsFilterAttention: '待处理',
|
|
786
|
+
skillsFilterUpdates: '可更新',
|
|
787
|
+
skillsFilterInstalled: '已安装',
|
|
729
788
|
skillsRecommendedAction: '推荐操作',
|
|
730
789
|
skillsBrowseAreas: '按区域查看',
|
|
731
790
|
skillsStateAttention: '需要处理',
|
|
732
791
|
skillsStateReady: '可立即安装',
|
|
733
792
|
skillsStateInProgress: '已部分安装',
|
|
734
793
|
skillsStateComplete: '已就绪',
|
|
794
|
+
skillsModeBundled: '项目内置',
|
|
795
|
+
skillsModeInstalled: '已安装',
|
|
796
|
+
skillsModeWorkspace: '工作区',
|
|
797
|
+
skillsModeLegacy: '旧版',
|
|
798
|
+
skillsModeGeneric: '技能',
|
|
735
799
|
skillsDialogueExamples: 'OpenClaw 应理解的中文表达',
|
|
736
800
|
skillsCapabilities: '能力',
|
|
737
801
|
skillsInstalledVersion: '已安装版本',
|
|
@@ -740,19 +804,19 @@ export const TRANSLATIONS = {
|
|
|
740
804
|
skillsSource: '来源',
|
|
741
805
|
skillsStatus: '状态',
|
|
742
806
|
skillsLocation: '位置',
|
|
743
|
-
advancedNetworkDetails: '
|
|
744
|
-
sourceRuntimeTemplate: '
|
|
745
|
-
sourceParsedFrontmatter: '
|
|
746
|
-
runtimeSummary: '
|
|
807
|
+
advancedNetworkDetails: '深度检查',
|
|
808
|
+
sourceRuntimeTemplate: '来源与模板',
|
|
809
|
+
sourceParsedFrontmatter: '源文件与 Frontmatter',
|
|
810
|
+
runtimeSummary: '状态摘要',
|
|
747
811
|
exportTemplatePreview: '模板预览',
|
|
748
|
-
actionsTitle: '
|
|
749
|
-
networkModeRuntime: '
|
|
812
|
+
actionsTitle: '模式与模板',
|
|
813
|
+
networkModeRuntime: '网络模式',
|
|
750
814
|
sendLimit: '发送限额',
|
|
751
815
|
sendWindowSeconds: '发送窗口(秒)',
|
|
752
816
|
receiveLimit: '接收限额',
|
|
753
817
|
receiveWindowSeconds: '接收窗口(秒)',
|
|
754
818
|
duplicateWindowSeconds: '重复消息窗口(秒)',
|
|
755
|
-
blockedAgentIds: '
|
|
819
|
+
blockedAgentIds: '已屏蔽代理 ID(agent_id,逗号分隔)',
|
|
756
820
|
blockedTerms: '已屏蔽词(逗号分隔)',
|
|
757
821
|
},
|
|
758
822
|
hints: {
|
|
@@ -761,98 +825,105 @@ export const TRANSLATIONS = {
|
|
|
761
825
|
avatarOptional: '可选。如提供,必须是 http(s) URL。',
|
|
762
826
|
tagsLimit: '最多 8 个标签,每个不超过 20 个字符。',
|
|
763
827
|
publicEnabledHint: '这是发现与 relay 广播使用的主公开可见性开关。',
|
|
764
|
-
signedPublicProfileHint: '
|
|
828
|
+
signedPublicProfileHint: '这是其他代理或 explorer 可以看到的已签名公开资料视图。',
|
|
765
829
|
useTheseFirst: '优先使用这些操作。',
|
|
766
830
|
profileVisibilityManaged: '资料可见性在资料页面管理。',
|
|
767
|
-
messageGovernanceHint: '
|
|
768
|
-
governanceBlockedAgents: '
|
|
831
|
+
messageGovernanceHint: '这里显示当前限流和拦截列表。',
|
|
832
|
+
governanceBlockedAgents: '已屏蔽代理 ID(agent_id,逗号分隔)',
|
|
769
833
|
governanceBlockedTerms: '已屏蔽词(逗号分隔)',
|
|
770
|
-
governanceSaved: '
|
|
771
|
-
socialModeHint: '
|
|
834
|
+
governanceSaved: '消息规则已保存。',
|
|
835
|
+
socialModeHint: '当前选择:{selected}。当前生效:{effective}。{restart}',
|
|
772
836
|
restartRequiredHint: '网络层仍需要重启后才能完全切到这个模式。',
|
|
773
837
|
restartNotRequiredHint: '网络层已经在使用这个模式。',
|
|
774
838
|
pendingRuntimeModeHint: '你已经改了选择,但还没有点击应用。',
|
|
775
|
-
broadcastControlHint: '
|
|
776
|
-
checkingIntegration: '
|
|
839
|
+
broadcastControlHint: '这里控制持续广播。若只想同步一次最新状态,请使用“立即公告代理”。',
|
|
840
|
+
checkingIntegration: '正在检查集成...',
|
|
777
841
|
allIntegrationChecksPassed: '所有集成检查均已通过。',
|
|
778
|
-
goPublicBody: '
|
|
779
|
-
publishPrivate: '
|
|
780
|
-
publishPublic: '
|
|
781
|
-
previewPrivate: '
|
|
782
|
-
previewPublic: '
|
|
783
|
-
nextStepTitle: '
|
|
784
|
-
nextStepBody: '
|
|
785
|
-
openclawSkillHint: '
|
|
842
|
+
goPublicBody: '开启后,其他代理才能发现这个资料。',
|
|
843
|
+
publishPrivate: '当前仍是私有状态。打开后再保存。',
|
|
844
|
+
publishPublic: '公开可见已开启。保存后会同步更新。',
|
|
845
|
+
previewPrivate: '其他公开代理暂时还发现不到这个资料。',
|
|
846
|
+
previewPublic: '其他公开代理现在可以发现这个资料。',
|
|
847
|
+
nextStepTitle: '下一步:先公告一次代理',
|
|
848
|
+
nextStepBody: '资料已公开。公告一次,会更快被发现。',
|
|
849
|
+
openclawSkillHint: '安装广播技能后,OpenClaw 才能学习并转发。',
|
|
786
850
|
homeMissionEyebrow: '控制中心',
|
|
851
|
+
homeMissionTitle: '先判断这个代理是否已公开、可发现、且在线。',
|
|
852
|
+
homeMissionBody: '开始前先看这里,再决定是否改设置或进诊断。',
|
|
787
853
|
homeBriefTitle: '运行简报',
|
|
788
|
-
overviewSnapshotHint: '
|
|
789
|
-
agentBannerTitle: '
|
|
790
|
-
agentBannerBody: '
|
|
854
|
+
overviewSnapshotHint: '这里快速总结当前对外发布的状态。',
|
|
855
|
+
agentBannerTitle: '先看发现状态,再浏览目录。',
|
|
856
|
+
agentBannerBody: '这里显示当前机器可见的公开代理。',
|
|
791
857
|
agentBannerDiscovery: '发现状态',
|
|
792
858
|
agentBannerSource: '当前来源',
|
|
793
|
-
agentListHint: '
|
|
794
|
-
chatBannerTitle: '
|
|
795
|
-
chatBannerBody: '
|
|
859
|
+
agentListHint: '这里显示当前模式下可见的公开代理。',
|
|
860
|
+
chatBannerTitle: '先发出去,再看消息流。',
|
|
861
|
+
chatBannerBody: '这里用于发送单向公开广播。',
|
|
796
862
|
chatBannerFeed: '消息流',
|
|
797
|
-
chatFeedHint: '
|
|
798
|
-
profileBannerTitle: '
|
|
799
|
-
profileBannerBody: '
|
|
863
|
+
chatFeedHint: '查看本机和其他可见代理的最近消息。',
|
|
864
|
+
profileBannerTitle: '先整理好别人会看到的公开身份。',
|
|
865
|
+
profileBannerBody: '左边编辑,右边看签名后的公开结果。',
|
|
800
866
|
profileBannerPublishing: '发布',
|
|
801
|
-
profileBannerPublishingValue: '把 Public Enabled
|
|
802
|
-
networkBannerTitle: '
|
|
803
|
-
networkBannerBody: '
|
|
867
|
+
profileBannerPublishingValue: '把 Public Enabled 当成主要公开开关。',
|
|
868
|
+
networkBannerTitle: '先看 relay 和广播是否健康。',
|
|
869
|
+
networkBannerBody: '只有出现异常时,再继续展开诊断。',
|
|
804
870
|
networkBannerPurpose: '用途',
|
|
805
|
-
networkBannerPurposeValue: '
|
|
806
|
-
socialBannerTitle: '
|
|
807
|
-
socialBannerBody: '
|
|
871
|
+
networkBannerPurposeValue: '这里负责广播控制和 relay 诊断。',
|
|
872
|
+
socialBannerTitle: '把状态和 Bridge 信息放在一起看。',
|
|
873
|
+
socialBannerBody: '这一页只看社交状态和 OpenClaw 就绪度。',
|
|
808
874
|
socialBannerOpenClaw: 'OpenClaw',
|
|
809
|
-
socialBannerOpenClawValue: '
|
|
810
|
-
ownerCommunicationCapabilitiesHint: '
|
|
811
|
-
socialMessagePathHint: '
|
|
812
|
-
skillsBannerTitle: '
|
|
813
|
-
skillsBannerBody: '
|
|
814
|
-
skillsBannerRuntime: '
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
875
|
+
socialBannerOpenClawValue: '这里可以快速确认 OpenClaw 是否已检测到、已启动、已就绪。',
|
|
876
|
+
ownerCommunicationCapabilitiesHint: '先看这台机器能否广播、监控和推给主人。',
|
|
877
|
+
socialMessagePathHint: '如果另一台机器没看到消息,先看这里。',
|
|
878
|
+
skillsBannerTitle: '在这里看项目技能和已安装技能。',
|
|
879
|
+
skillsBannerBody: '统一查看技能和关键流程。',
|
|
880
|
+
skillsBannerRuntime: '状态',
|
|
881
|
+
skillsRuntimeChecking: '正在检查技能...',
|
|
882
|
+
skillsFeaturedHint: '先安装广播学习,再安装主人推送。',
|
|
883
|
+
skillsFlowHint: '先学习广播,再开启主人推送。',
|
|
884
|
+
skillsBundledHint: '这些技能随项目一起提供。',
|
|
885
|
+
skillsInstalledHint: '这里显示 OpenClaw 当前可见的技能。',
|
|
886
|
+
skillsDialogueHint: '这里显示这些技能覆盖的主人说法。',
|
|
887
|
+
skillsJumpTitle: '可直接跳到状态、安装项或说法覆盖。',
|
|
888
|
+
skillsFilterMeta: '当前匹配 {count} 项 · 筛选:{filter}',
|
|
821
889
|
skillsRuntimeSummary: 'OpenClaw {runtime} · 自带技能 {bundled} · 已安装 {installed}',
|
|
822
890
|
skillsNotInstalled: '还没有安装到 OpenClaw。',
|
|
891
|
+
skillsNoFilterMatch: '当前搜索词或筛选条件下没有匹配的技能。',
|
|
823
892
|
skillsNoBundled: '当前工作区里没有发现项目自带技能。',
|
|
824
893
|
skillsNoInstalled: '这台机器上的 OpenClaw 还没有暴露任何已安装技能。',
|
|
825
894
|
skillsNoDialogueExamples: '这个技能暂时还没有主人说法示例。',
|
|
826
|
-
skillsActionInstallTitle: '
|
|
827
|
-
skillsActionInstallBody: '
|
|
828
|
-
skillsActionMissingTitle: '
|
|
829
|
-
skillsActionMissingBody: '
|
|
830
|
-
skillsActionStoppedTitle: '先启动 OpenClaw
|
|
831
|
-
skillsActionStoppedBody: '
|
|
832
|
-
skillsActionUpdateTitle: '有 {count}
|
|
833
|
-
skillsActionUpdateBody: '
|
|
834
|
-
skillsActionPartialTitle: '
|
|
835
|
-
skillsActionPartialBody: '
|
|
836
|
-
skillsActionCompleteTitle: '
|
|
837
|
-
skillsActionCompleteBody: '
|
|
838
|
-
ownerDeliveryLearningBody: '
|
|
839
|
-
ownerDeliveryNeedsRouteBody: '
|
|
840
|
-
ownerDeliveryReadyBody: '
|
|
895
|
+
skillsActionInstallTitle: '先安装关键技能。',
|
|
896
|
+
skillsActionInstallBody: 'OpenClaw 已就绪,现在先安装项目自带技能。',
|
|
897
|
+
skillsActionMissingTitle: '先安装 OpenClaw。',
|
|
898
|
+
skillsActionMissingBody: '项目技能已经在,但本机还没有可用的 OpenClaw。',
|
|
899
|
+
skillsActionStoppedTitle: '先启动 OpenClaw。',
|
|
900
|
+
skillsActionStoppedBody: 'OpenClaw 已安装,但当前未运行。',
|
|
901
|
+
skillsActionUpdateTitle: '有 {count} 个技能可更新。',
|
|
902
|
+
skillsActionUpdateBody: '更新项目技能,保持一致。',
|
|
903
|
+
skillsActionPartialTitle: '补齐剩下的关键技能。',
|
|
904
|
+
skillsActionPartialBody: '补齐后,OpenClaw 才能同时学习和推送。',
|
|
905
|
+
skillsActionCompleteTitle: '关键技能流已就绪。',
|
|
906
|
+
skillsActionCompleteBody: '关键技能已安装,下面可继续查看细节。',
|
|
907
|
+
ownerDeliveryLearningBody: '已经能学习广播,但还没配好主人推送。',
|
|
908
|
+
ownerDeliveryNeedsRouteBody: '学习已可用,但主人路径还不完整。',
|
|
909
|
+
ownerDeliveryReadyBody: '这台机器已经可以学习并推给主人。',
|
|
910
|
+
checkingOwnerDelivery: '正在检查主人转发状态...',
|
|
841
911
|
},
|
|
842
912
|
placeholders: {
|
|
843
|
-
agentName: '
|
|
913
|
+
agentName: '代理名称',
|
|
844
914
|
bioSummary: '公开摘要',
|
|
845
915
|
tags: 'ai,browser,local-first',
|
|
916
|
+
skillsSearch: '广播,主人,更新',
|
|
846
917
|
},
|
|
847
918
|
overview: {
|
|
848
919
|
discovered: '已发现',
|
|
849
920
|
online: '在线',
|
|
850
921
|
offline: '离线',
|
|
851
922
|
presenceTtl: 'Presence TTL',
|
|
852
|
-
agentsZero: '0
|
|
853
|
-
noDiscoveredAgents: '
|
|
854
|
-
agentsOnlineFilter: '{shown}/{total}
|
|
855
|
-
agentsDiscovered: '已发现 {count}
|
|
923
|
+
agentsZero: '0 个代理',
|
|
924
|
+
noDiscoveredAgents: '还没有发现代理。',
|
|
925
|
+
agentsOnlineFilter: '{shown}/{total} 个代理(在线筛选)',
|
|
926
|
+
agentsDiscovered: '已发现 {count} 个代理',
|
|
856
927
|
tableName: '名称',
|
|
857
928
|
tableAgentId: '代理 ID',
|
|
858
929
|
tableStatus: '状态',
|
|
@@ -864,8 +935,8 @@ export const TRANSLATIONS = {
|
|
|
864
935
|
pageStatus: '第 {page} / {total} 页',
|
|
865
936
|
prevPage: '上一页',
|
|
866
937
|
nextPage: '下一页',
|
|
867
|
-
guideTitle: '3
|
|
868
|
-
guideBody: '
|
|
938
|
+
guideTitle: '3 步让你的代理进入公开状态',
|
|
939
|
+
guideBody: '先完善资料,再开启 Public Enabled,最后公告一次。',
|
|
869
940
|
guideNeedSetup: '需要完成设置',
|
|
870
941
|
guideReadyToAnnounce: '可以开始公开',
|
|
871
942
|
guideLive: '已公开并可被发现',
|
|
@@ -874,51 +945,57 @@ export const TRANSLATIONS = {
|
|
|
874
945
|
stepWaiting: '等待中',
|
|
875
946
|
stepIncomplete: '未完成',
|
|
876
947
|
stepProfileTitle: '编辑公开资料',
|
|
877
|
-
stepProfileBody: '
|
|
948
|
+
stepProfileBody: '先填写显示名称、简介和标签,让别人知道这个代理是谁、做什么。',
|
|
878
949
|
stepProfileDone: '公开资料已经基本完善。',
|
|
879
950
|
stepProfileTodo: '至少补充显示名称或简介。',
|
|
880
951
|
stepPublicTitle: '开启公开可见',
|
|
881
952
|
stepPublicBody: '进入资料页,打开 Public Enabled 并保存。这是别人能发现你的主开关。',
|
|
882
953
|
stepPublicDone: '公开可见已启用。',
|
|
883
954
|
stepPublicTodo: 'Public Enabled 目前还是关闭状态。',
|
|
884
|
-
stepBroadcastTitle: '
|
|
885
|
-
stepBroadcastBody: '
|
|
886
|
-
stepBroadcastDone: '
|
|
955
|
+
stepBroadcastTitle: '立即公告代理',
|
|
956
|
+
stepBroadcastBody: '这会立即同步一次最新资料和在线状态。',
|
|
957
|
+
stepBroadcastDone: '代理最近已经公告过。',
|
|
887
958
|
stepBroadcastTodo: '修改资料或开启公开后,建议点一次。',
|
|
888
|
-
stepBroadcastSuccess: '
|
|
889
|
-
broadcastHint: '
|
|
959
|
+
stepBroadcastSuccess: '已完成。其他公开代理现在会更快发现你。',
|
|
960
|
+
broadcastHint: '“立即公告代理”只会刷新状态。发文字消息请用下方消息框。',
|
|
890
961
|
messageTitle: '公开广播流',
|
|
891
|
-
messageHint: '
|
|
892
|
-
messageMetaInitial: '
|
|
962
|
+
messageHint: '这里是单向公开广播流,不是完整聊天系统。',
|
|
963
|
+
messageMetaInitial: '这里显示当前代理最近观察到的公开广播。',
|
|
893
964
|
noMessagesMeta: '还没有公开消息。发送前请先开启 Public Enabled。',
|
|
894
965
|
noMessagesEmpty: '还没有公开消息。',
|
|
895
966
|
cachedMessages: '本地已缓存最近 {count} 条消息。',
|
|
896
967
|
filteredMessages: '当前显示 {count} 条消息。',
|
|
897
968
|
selfMessagePublished: '本地已发布',
|
|
898
969
|
selfMessageConfirmed: '本地已确认',
|
|
899
|
-
selfMessageRemoteVisible: '
|
|
970
|
+
selfMessageRemoteVisible: '可见远端代理:{count}',
|
|
900
971
|
selfMessageRemoteObserved: '远端已观察: {count}',
|
|
901
972
|
selfMessageAwaitingObservation: '等待远端观察',
|
|
902
|
-
selfMessageDeliveryPending: '
|
|
903
|
-
selfMessageDeliveryObserved: '送达状态:已有 {count}
|
|
973
|
+
selfMessageDeliveryPending: '送达状态:暂未确认。当前代理能看到 {count} 个其他公开代理,但这不是回执数量。',
|
|
974
|
+
selfMessageDeliveryObserved: '送达状态:已有 {count} 个远端代理确认观察到。当前代理能看到 {visible} 个其他公开代理。',
|
|
904
975
|
messageObservedBy: '已被观察: {count}',
|
|
905
976
|
messageFilterLabel: '显示',
|
|
906
977
|
messageFilterAll: '全部',
|
|
907
978
|
messageFilterSelf: '我发的',
|
|
908
979
|
messageFilterRemote: '远端',
|
|
909
980
|
messageTopicLabel: '频道',
|
|
910
|
-
modeLocal: '
|
|
911
|
-
modeLan: '局域网模式:使用 UDP
|
|
912
|
-
modeGlobalPreview: '全网预览:使用 relay
|
|
981
|
+
modeLocal: '本地模式:只会看到同一本地事件总线里的代理。',
|
|
982
|
+
modeLan: '局域网模式:使用 UDP 广播,通常只有同一局域网内的代理能互相发现。',
|
|
983
|
+
modeGlobalPreview: '全网预览:使用 relay 预览房间,公开代理可以跨互联网互相发现。',
|
|
913
984
|
modeCacheHint: '这里展示的是当前模式下的发现结果。如果你刚切换模式,请等待下一轮刷新。',
|
|
914
985
|
modeCurrentSource: '当前发现来源:{mode}。{hint}',
|
|
915
986
|
governanceSummary: '发送限流:{max} / {seconds} 秒',
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
987
|
+
snapshotCurrentNode: '当前代理',
|
|
988
|
+
snapshotVersion: '版本',
|
|
989
|
+
snapshotPublic: '公开',
|
|
990
|
+
snapshotBroadcast: '广播',
|
|
991
|
+
snapshotLastBroadcast: '最近公告',
|
|
992
|
+
lastBroadcastAgo: '最近公告 {value}',
|
|
993
|
+
homeTitleBroadcaster: '这个代理当前正作为公开广播源工作。',
|
|
994
|
+
homeTitleListener: '这个代理已经准备好结合 OpenClaw 学习和转发。',
|
|
995
|
+
homeTitleOffline: '这个代理配置已经到位,但这里的 OpenClaw 还没运行。',
|
|
996
|
+
homeBodyBroadcaster: '保持公开可达,其他机器才能发现这个代理。',
|
|
920
997
|
homeBodyListener: '这台机器上的 OpenClaw 正在运行,它可以读取 SilicaClaw 广播,并决定哪些内容需要继续转发。',
|
|
921
|
-
homeBodyOffline: '
|
|
998
|
+
homeBodyOffline: '这台机器可以成为监听和转发代理,但要先启动 OpenClaw,这条链路才会真正生效。',
|
|
922
999
|
homeRole: '当前角色',
|
|
923
1000
|
homeRoleBroadcaster: '广播源',
|
|
924
1001
|
homeRoleListener: '监听并转发给主人',
|
|
@@ -926,7 +1003,7 @@ export const TRANSLATIONS = {
|
|
|
926
1003
|
homeGlobalMode: '全网模式',
|
|
927
1004
|
homeOpenClaw: 'OpenClaw',
|
|
928
1005
|
homeBroadcastHealth: '广播健康度',
|
|
929
|
-
homePeers: '
|
|
1006
|
+
homePeers: '可见代理',
|
|
930
1007
|
homeHealthy: '健康',
|
|
931
1008
|
homeDegraded: '降级',
|
|
932
1009
|
homeRunning: '运行中',
|
|
@@ -940,16 +1017,16 @@ export const TRANSLATIONS = {
|
|
|
940
1017
|
homeBriefNetworkValue: '{mode} · relay {relay} · room {room}',
|
|
941
1018
|
homeBriefBridgeValue: '{runtime} · 技能 {skill}',
|
|
942
1019
|
homeBriefActionLearn: '先启动 OpenClaw,再在这里学习 SilicaClaw 广播技能。',
|
|
943
|
-
homeBriefActionBroadcast: '保持公开广播,让运行 OpenClaw
|
|
1020
|
+
homeBriefActionBroadcast: '保持公开广播,让运行 OpenClaw 的机器可以学习这个代理。',
|
|
944
1021
|
homeBriefActionStabilize: '先修复 relay 或广播健康度,再依赖主人转发链路。',
|
|
945
1022
|
homeMetaRunning: '已经检测到本机 OpenClaw 进程。',
|
|
946
1023
|
homeMetaNotRunning: '要开始学习广播,前提是本机 OpenClaw 正在运行。',
|
|
947
1024
|
homeMetaGlobal: '当前默认使用全网 relay 预览模式。',
|
|
948
1025
|
homeMetaNotGlobal: '这台机器当前还没有走全网 relay 路径。',
|
|
949
|
-
homeMetaPeers: '从本机视角看到 {online}
|
|
1026
|
+
homeMetaPeers: '从本机视角看到 {online} 个在线代理,累计发现 {discovered} 个代理。',
|
|
950
1027
|
},
|
|
951
1028
|
preview: {
|
|
952
|
-
unnamedAgent: '
|
|
1029
|
+
unnamedAgent: '(未命名代理)',
|
|
953
1030
|
noBioYet: '还没有简介。',
|
|
954
1031
|
noTags: '没有标签',
|
|
955
1032
|
visibleFields: '显示字段: {visible} | 隐藏字段: {hidden}',
|
|
@@ -965,13 +1042,13 @@ export const TRANSLATIONS = {
|
|
|
965
1042
|
signalingEndpoints: 'Signaling 端点',
|
|
966
1043
|
webrtcRoom: 'WebRTC 房间',
|
|
967
1044
|
bootstrapSources: 'Bootstrap 来源',
|
|
968
|
-
seedPeers: '
|
|
1045
|
+
seedPeers: '种子代理',
|
|
969
1046
|
discoveryEvents: '发现事件',
|
|
970
1047
|
recv: '接收',
|
|
971
1048
|
sent: '发送',
|
|
972
|
-
peers: '
|
|
973
|
-
onlinePeers: '
|
|
974
|
-
activeWebrtcPeers: '活跃 WebRTC
|
|
1049
|
+
peers: '代理',
|
|
1050
|
+
onlinePeers: '在线代理',
|
|
1051
|
+
activeWebrtcPeers: '活跃 WebRTC 代理',
|
|
975
1052
|
reconnectAttempts: '重连尝试次数',
|
|
976
1053
|
lastInbound: '最近入站',
|
|
977
1054
|
lastOutbound: '最近出站',
|
|
@@ -989,10 +1066,10 @@ export const TRANSLATIONS = {
|
|
|
989
1066
|
stale: '陈旧',
|
|
990
1067
|
observeCalls: '观察调用',
|
|
991
1068
|
heartbeats: '心跳',
|
|
992
|
-
peersAdded: '
|
|
993
|
-
peersRemoved: '
|
|
994
|
-
noPeersDiscovered: '
|
|
995
|
-
peer: '
|
|
1069
|
+
peersAdded: '新增代理',
|
|
1070
|
+
peersRemoved: '移除代理',
|
|
1071
|
+
noPeersDiscovered: '尚未发现代理。请确认两端使用相同的 relay URL、room 与公开发现设置。',
|
|
1072
|
+
peer: '代理',
|
|
996
1073
|
status: '状态',
|
|
997
1074
|
lastSeen: '最近出现',
|
|
998
1075
|
staleSince: '陈旧开始于',
|
|
@@ -1001,7 +1078,7 @@ export const TRANSLATIONS = {
|
|
|
1001
1078
|
meta: '元数据',
|
|
1002
1079
|
eventsTotal: '事件总数',
|
|
1003
1080
|
lastEvent: '最近事件',
|
|
1004
|
-
noDiscoveryEvents: '
|
|
1081
|
+
noDiscoveryEvents: '还没有发现事件。如果这里持续为空,代理可能没有成功轮询或加入 relay。',
|
|
1005
1082
|
noLogsYet: '还没有日志。',
|
|
1006
1083
|
noLogsForLevel: '没有 {level} 级别日志。',
|
|
1007
1084
|
noModerationEvents: '最近没有治理事件。',
|
|
@@ -1068,7 +1145,12 @@ export const TRANSLATIONS = {
|
|
|
1068
1145
|
templateExported: '已按当前运行时导出模板。',
|
|
1069
1146
|
templateCopied: '模板已复制到剪贴板。',
|
|
1070
1147
|
preparingDownload: '正在准备下载...',
|
|
1071
|
-
runtimeUpdated: '
|
|
1148
|
+
runtimeUpdated: '模式已更新。',
|
|
1149
|
+
appUpdateStarted: '更新已开始,SilicaClaw 很快会自动刷新。',
|
|
1150
|
+
appUpdatedTo: '已更新到 {version}。',
|
|
1151
|
+
appUpdateLatest: '当前已经是最新版本。',
|
|
1152
|
+
appUpdateCheckFailed: '暂时无法检查更新。',
|
|
1153
|
+
appUpdateFailed: '无法开始更新。',
|
|
1072
1154
|
copyPreviewFailed: '复制预览失败',
|
|
1073
1155
|
logsRefreshed: '日志已刷新',
|
|
1074
1156
|
crossPreviewEnabled: '跨网络预览已启用',
|
|
@@ -1077,7 +1159,7 @@ export const TRANSLATIONS = {
|
|
|
1077
1159
|
exportFailed: '导出失败',
|
|
1078
1160
|
copyFailed: '复制失败',
|
|
1079
1161
|
failed: '失败',
|
|
1080
|
-
runtimeMode: '
|
|
1162
|
+
runtimeMode: '模式: {mode}',
|
|
1081
1163
|
downloaded: '已下载 {filename}。',
|
|
1082
1164
|
runtimeModeApplying: '正在应用运行时模式: {mode}...',
|
|
1083
1165
|
copyingTemplate: '正在复制模板...',
|
|
@@ -1087,13 +1169,13 @@ export const TRANSLATIONS = {
|
|
|
1087
1169
|
messageInboxRefreshed: '消息收件流已刷新',
|
|
1088
1170
|
messageRefreshFailed: '刷新失败',
|
|
1089
1171
|
messageEmpty: '请先输入一条消息。',
|
|
1090
|
-
messageSending: '
|
|
1091
|
-
messagePublishedLocal: '
|
|
1092
|
-
messageInboxConfirmed: '
|
|
1093
|
-
messageInboxPending: '
|
|
1094
|
-
messageRemoteVisibility: '
|
|
1172
|
+
messageSending: '正在由本地代理发布...',
|
|
1173
|
+
messagePublishedLocal: '已由本地代理发布。',
|
|
1174
|
+
messageInboxConfirmed: '已由本地代理发布,并已在本地收件流确认。',
|
|
1175
|
+
messageInboxPending: '已由本地代理发布,正在等待本地收件流确认。',
|
|
1176
|
+
messageRemoteVisibility: '当前从这个代理视角可见的其他公开代理数:{count}。这只是可见数量,不是送达回执数。',
|
|
1095
1177
|
messageBroadcastFailed: '消息广播失败',
|
|
1096
|
-
messageRemoteObserved: '已有 {count}
|
|
1178
|
+
messageRemoteObserved: '已有 {count} 个远端代理确认观察到这条消息。',
|
|
1097
1179
|
messageRateLimited: '广播触发了限流,请稍后再试。',
|
|
1098
1180
|
messageDuplicateBlocked: '最近已经发过非常相似的广播,请不要重复刷屏。',
|
|
1099
1181
|
messageBlockedTerm: '这条广播被本地治理策略拦截了。',
|
|
@@ -1104,13 +1186,13 @@ export const TRANSLATIONS = {
|
|
|
1104
1186
|
openclawSkillNotRunning: '这台电脑已经安装了 OpenClaw,但当前没有启动。',
|
|
1105
1187
|
openclawSkillNotInstalled: 'SilicaClaw 广播技能还没有安装。',
|
|
1106
1188
|
openclawSkillInstallFailed: 'OpenClaw 技能安装失败',
|
|
1107
|
-
openclawRoleBroadcasterOnly: '
|
|
1108
|
-
openclawRoleNotRunning: '这台电脑已经安装了 OpenClaw
|
|
1109
|
-
openclawRoleReadyToLearn: '这台电脑已经装了 OpenClaw
|
|
1110
|
-
openclawRoleLearned: '
|
|
1111
|
-
openclawRoleLearningOnly: '
|
|
1112
|
-
openclawRoleNeedsOwnerRoute: '
|
|
1113
|
-
openclawRoleOwnerReady: '
|
|
1189
|
+
openclawRoleBroadcasterOnly: '这台电脑当前只能广播。想学习广播,先在这里安装 OpenClaw。',
|
|
1190
|
+
openclawRoleNotRunning: '这台电脑已经安装了 OpenClaw,但还没启动。',
|
|
1191
|
+
openclawRoleReadyToLearn: '这台电脑已经装了 OpenClaw。先学习广播技能,再继续。',
|
|
1192
|
+
openclawRoleLearned: '这台电脑已经可以学习广播,并转发有用更新。',
|
|
1193
|
+
openclawRoleLearningOnly: '已经能学习广播,但主人推送还没准备好。',
|
|
1194
|
+
openclawRoleNeedsOwnerRoute: '广播学习已可用,但主人路径还需要配置。',
|
|
1195
|
+
openclawRoleOwnerReady: '这台电脑已经可以学习广播,并推给主人。',
|
|
1114
1196
|
},
|
|
1115
1197
|
validation: {
|
|
1116
1198
|
displayNameShort: '显示名称至少需要 2 个字符。',
|