@elizaos/app-core 2.0.0-alpha.13 → 2.0.0-alpha.15
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/.turbo/turbo-build.log +0 -1
- package/dist/App.d.ts.map +1 -1
- package/dist/App.js +26 -12
- package/dist/api/client.d.ts +3 -3
- package/dist/api/client.d.ts.map +1 -1
- package/dist/api/client.js +24 -13
- package/dist/bridge/plugin-bridge.d.ts.map +1 -1
- package/dist/components/AvatarLoader.d.ts +3 -1
- package/dist/components/AvatarLoader.d.ts.map +1 -1
- package/dist/components/AvatarLoader.js +4 -1
- package/dist/components/BscTradePanel.d.ts +1 -1
- package/dist/components/BscTradePanel.d.ts.map +1 -1
- package/dist/components/CharacterView.d.ts.map +1 -1
- package/dist/components/CharacterView.js +50 -15
- package/dist/components/ChatView.js +1 -1
- package/dist/components/ConfigPageView.d.ts.map +1 -1
- package/dist/components/ConfigPageView.js +9 -8
- package/dist/components/ConversationsSidebar.js +1 -1
- package/dist/components/CustomActionEditor.js +1 -1
- package/dist/components/FineTuningView.d.ts.map +1 -1
- package/dist/components/FineTuningView.js +2 -2
- package/dist/components/GlobalEmoteOverlay.d.ts.map +1 -1
- package/dist/components/GlobalEmoteOverlay.js +1 -1
- package/dist/components/HeartbeatsView.js +1 -1
- package/dist/components/LoadingScreen.d.ts.map +1 -1
- package/dist/components/LoadingScreen.js +38 -7
- package/dist/components/OnboardingWizard.js +1 -1
- package/dist/components/PluginsView.d.ts.map +1 -1
- package/dist/components/PluginsView.js +4 -1
- package/dist/components/ShellOverlays.js +1 -1
- package/dist/components/VoiceConfigView.d.ts.map +1 -1
- package/dist/components/VoiceConfigView.js +4 -2
- package/dist/components/avatar/VrmEngine.d.ts +2 -0
- package/dist/components/avatar/VrmEngine.d.ts.map +1 -1
- package/dist/components/avatar/VrmEngine.js +14 -6
- package/dist/components/companion/CompanionSceneHost.d.ts +1 -1
- package/dist/components/companion/CompanionSceneHost.d.ts.map +1 -1
- package/dist/components/companion/CompanionSceneHost.js +1 -1
- package/dist/components/index.d.ts +10 -10
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.js +10 -10
- package/dist/components/inventory/TokensTable.js +2 -2
- package/dist/components/onboarding/IdentityStep.d.ts.map +1 -1
- package/dist/components/onboarding/IdentityStep.js +1 -1
- package/dist/components/shared/ShellHeaderControls.js +1 -1
- package/dist/config/config-field.d.ts.map +1 -1
- package/dist/config/config-field.js +7 -8
- package/dist/config/index.d.ts +1 -1
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +1 -1
- package/dist/hooks/useVoiceChat.d.ts.map +1 -1
- package/dist/hooks/useVoiceChat.js +3 -1
- package/dist/i18n/locales/en.json +1192 -1192
- package/dist/i18n/locales/es.json +1192 -1192
- package/dist/i18n/locales/ko.json +1192 -1192
- package/dist/i18n/locales/pt.json +1192 -1192
- package/dist/i18n/locales/zh-CN.json +1192 -1192
- package/dist/package.json +181 -0
- package/dist/platform/lifo.d.ts.map +1 -1
- package/dist/platform/lifo.js +4 -1
- package/dist/state/AppContext.d.ts.map +1 -1
- package/dist/state/AppContext.js +23 -6
- package/dist/state/internal.d.ts +1 -1
- package/dist/state/internal.d.ts.map +1 -1
- package/dist/state/internal.js +1 -1
- package/dist/state/parsers.d.ts.map +1 -1
- package/dist/state/parsers.js +3 -2
- package/dist/state/persistence.js +1 -1
- package/dist/styles/anime.css +6324 -0
- package/dist/styles/base.css +196 -0
- package/dist/styles/onboarding-game.css +738 -0
- package/dist/styles/styles.css +2087 -0
- package/dist/styles/xterm.css +241 -0
- package/package.json +4 -4
- package/src/App.tsx +35 -14
- package/src/ambient.d.ts +5 -5
- package/src/api/client.ts +36 -23
- package/src/bridge/plugin-bridge.ts +1 -1
- package/src/components/AvatarLoader.tsx +6 -0
- package/src/components/BscTradePanel.tsx +1 -1
- package/src/components/CharacterView.tsx +536 -367
- package/src/components/ChatView.tsx +3 -3
- package/src/components/ConfigPageView.tsx +9 -8
- package/src/components/ConversationsSidebar.tsx +1 -1
- package/src/components/CustomActionEditor.tsx +6 -6
- package/src/components/FineTuningView.tsx +6 -3
- package/src/components/GlobalEmoteOverlay.tsx +1 -4
- package/src/components/HeartbeatsView.tsx +1 -1
- package/src/components/InventoryView.tsx +2 -2
- package/src/components/LoadingScreen.tsx +39 -6
- package/src/components/OnboardingWizard.tsx +1 -1
- package/src/components/PluginsView.tsx +6 -0
- package/src/components/ShellOverlays.tsx +1 -1
- package/src/components/VoiceConfigView.tsx +4 -5
- package/src/components/avatar/VrmEngine.ts +25 -7
- package/src/components/companion/CompanionSceneHost.tsx +5 -1
- package/src/components/index.ts +10 -10
- package/src/components/inventory/TokensTable.tsx +2 -2
- package/src/components/onboarding/IdentityStep.tsx +9 -13
- package/src/components/shared/ShellHeaderControls.tsx +1 -1
- package/src/config/config-field.tsx +7 -8
- package/src/config/index.ts +3 -3
- package/src/hooks/useVoiceChat.ts +5 -3
- package/src/platform/lifo.ts +14 -4
- package/src/state/AppContext.tsx +24 -1
- package/src/state/internal.ts +6 -6
- package/src/state/parsers.ts +4 -3
- package/src/state/persistence.ts +1 -1
- package/test/app/MessageContent.test.tsx +42 -0
- package/test/app/bug-report-modal.test.tsx +3 -3
- package/test/app/chat-view.test.tsx +3 -3
- package/test/app/cloud-login-lock.test.ts +3 -2
- package/test/app/custom-actions-smoke.test.ts +3 -3
- package/test/app/onboarding-language.test.tsx +3 -3
- package/test/app/pages-navigation-smoke.e2e.test.ts +13 -8
- package/test/app/plugin-bridge.test.ts +1 -1
- package/test/app/provider-dropdown-default.test.tsx +2 -4
- package/test/app/restart-banner.test.tsx +3 -3
- package/test/app/shell-mode-switching.e2e.test.ts +6 -6
- package/test/app/shell-mode-tab-memory.test.tsx +1 -1
- package/test/app/startup-chat.e2e.test.ts +3 -3
- package/test/app/triggers-view.e2e.test.ts +3 -2
- package/test/app/wallet-api-save-lock.test.ts +2 -1
- package/test/utils/assistant-text.test.ts +64 -0
- package/test/utils/streaming-text.test.ts +89 -0
|
@@ -1,1194 +1,1194 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
2
|
+
"common.retry": "重试",
|
|
3
|
+
"common.loading": "加载中",
|
|
4
|
+
"common.export": "导出",
|
|
5
|
+
"common.exporting": "导出中...",
|
|
6
|
+
"common.clearAll": "全部清除",
|
|
7
|
+
"common.clearing": "清除中...",
|
|
8
|
+
"common.cancel": "取消",
|
|
9
|
+
"common.deleteAll": "全部删除",
|
|
10
|
+
"common.on": "开启",
|
|
11
|
+
"common.off": "关闭",
|
|
12
|
+
"nav.chat": "聊天",
|
|
13
|
+
"nav.companion": "主页",
|
|
14
|
+
"nav.character": "角色",
|
|
15
|
+
"nav.talents": "天赋",
|
|
16
|
+
"nav.wallets": "钱包",
|
|
17
|
+
"nav.channels": "渠道",
|
|
18
|
+
"nav.knowledge": "知识",
|
|
19
|
+
"nav.plugins": "插件",
|
|
20
|
+
"nav.social": "连接器",
|
|
21
|
+
"nav.apps": "应用",
|
|
22
|
+
"nav.settings": "设置",
|
|
23
|
+
"nav.heartbeats": "心跳",
|
|
24
|
+
"nav.advanced": "高级",
|
|
25
|
+
"nav.stream": "直播",
|
|
26
|
+
"header.cloudDisconnected": "云端未连接",
|
|
27
|
+
"header.nativeMode": "原生模式",
|
|
28
|
+
"header.companionMode": "伴侣模式",
|
|
29
|
+
"header.switchToNative": "切换到原生",
|
|
30
|
+
"pairing.expiresIn": "{{seconds}} 秒后过期",
|
|
31
|
+
"chat.inputPlaceholder": "输入消息...",
|
|
32
|
+
"chat.listening": "正在聆听...",
|
|
33
|
+
"chat.agentStarting": "Agent 启动中...",
|
|
34
|
+
"chat.send": "发送",
|
|
35
|
+
"chat.stopGeneration": "停止生成",
|
|
36
|
+
"chat.stopSpeaking": "停止播报",
|
|
37
|
+
"chat.stopListening": "停止聆听",
|
|
38
|
+
"chat.voiceInput": "语音输入",
|
|
39
|
+
"chat.mode.label": "模式",
|
|
40
|
+
"chat.mode.fast": "Fast",
|
|
41
|
+
"chat.mode.fastHint": "更低延迟的紧凑配置。",
|
|
42
|
+
"chat.mode.pro": "Pro",
|
|
43
|
+
"chat.mode.proHint": "完整上下文,获得更强推理能力。",
|
|
44
|
+
"chat.mode.voiceFast": "语音始终使用 Fast。",
|
|
45
|
+
"conversations.newChat": "+ 新建聊天",
|
|
46
|
+
"conversations.newChatTitle": "新建聊天",
|
|
47
|
+
"conversations.none": "还没有会话",
|
|
48
|
+
"conversations.justNow": "刚刚",
|
|
49
|
+
"conversations.minutesAgo": "{{count}} 分钟前",
|
|
50
|
+
"conversations.hoursAgo": "{{count}} 小时前",
|
|
51
|
+
"conversations.daysAgo": "{{count}} 天前",
|
|
52
|
+
"conversations.rename": "重命名会话",
|
|
53
|
+
"conversations.delete": "删除会话",
|
|
54
|
+
"conversations.chats": "聊天",
|
|
55
|
+
"conversations.closePanel": "关闭面板",
|
|
56
|
+
"conversations.deleteConfirm": "删除?",
|
|
57
|
+
"conversations.deleteYes": "是",
|
|
58
|
+
"conversations.deleteNo": "否",
|
|
59
|
+
"knowledge.ui.searchPlaceholder": "搜索知识内容...",
|
|
60
|
+
"knowledge.ui.searching": "搜索中...",
|
|
61
|
+
"knowledge.ui.search": "搜索",
|
|
62
|
+
"settings.language": "语言",
|
|
63
|
+
"settings.languageSyncFailed": "语言已在本地切换,但云端同步失败。",
|
|
64
|
+
"settings.customizeExperience": "自定义你的体验",
|
|
65
|
+
"settings.searchPlaceholder": "搜索设置...",
|
|
66
|
+
"settings.exportAgentShort": "备份所有数据",
|
|
67
|
+
"settings.importAgentShort": "从备份恢复",
|
|
68
|
+
"settings.dangerZone": "危险操作",
|
|
69
|
+
"settings.versionPrefix": "版本",
|
|
70
|
+
"settings.checking": "检查中...",
|
|
71
|
+
"settings.checkNow": "立即检查",
|
|
72
|
+
"settings.updateAvailable": "有可用更新",
|
|
73
|
+
"settings.lastChecked": "上次检查:",
|
|
74
|
+
"settings.import": "导入",
|
|
75
|
+
"settings.export": "导出",
|
|
76
|
+
"settings.resetAgent": "重置 Agent",
|
|
77
|
+
"settings.resetAgentHint": "清空所有配置、记忆和数据,并返回引导页。",
|
|
78
|
+
"settings.resetConfirmMessage": "确定要重置全部设置和数据吗?该操作不可撤销,并会返回引导页。",
|
|
79
|
+
"settings.resetEverything": "全部重置",
|
|
80
|
+
"settings.exportAgent": "导出 Agent",
|
|
81
|
+
"settings.importAgent": "导入 Agent",
|
|
82
|
+
"wallet.portfolio": "资产总览",
|
|
83
|
+
"wallet.receive": "收款",
|
|
84
|
+
"wallet.addressCopied": "地址已复制。",
|
|
85
|
+
"wallet.status.connectedTitle": "钱包已连接",
|
|
86
|
+
"wallet.status.noWallet": "无钱包",
|
|
87
|
+
"wallet.status.noWalletTitle": "未检测到链上钱包",
|
|
88
|
+
"wallet.status.tradeReady": "可交易",
|
|
89
|
+
"wallet.status.tradeReadyTitle": "可进行预检与报价",
|
|
90
|
+
"wallet.status.tradeNotReady": "不可交易",
|
|
91
|
+
"wallet.status.tradeNeedGasTitle": "需要 BNB Gas",
|
|
92
|
+
"wallet.status.tradeFeedRequired": "需要行情服务",
|
|
93
|
+
"wallet.txStatus.pending": "待确认",
|
|
94
|
+
"wallet.failedFetchQuote": "获取报价失败。",
|
|
95
|
+
"wallet.noDataRefresh": "No tokens yet!",
|
|
96
|
+
"wallet.noTokensFound": "还没有代币。给你的代理转一些代币吧。",
|
|
97
|
+
"wallet.emptyTokensCta": "使用下面的钱包地址为这个代理充值。",
|
|
98
|
+
"wallet.noNftsFound": "未找到 NFT。",
|
|
99
|
+
"wallet.noNftData": "暂无 NFT 数据。",
|
|
100
|
+
"wallet.noImage": "无图片",
|
|
101
|
+
"wallet.value": "价值",
|
|
102
|
+
"wallet.chain": "链",
|
|
103
|
+
"wallet.name": "名称",
|
|
104
|
+
"wallet.sort": "排序",
|
|
105
|
+
"wallet.tokens": "代币",
|
|
106
|
+
"wallet.nfts": "NFT",
|
|
107
|
+
"wallet.all": "全部",
|
|
108
|
+
"wallet.table.token": "代币",
|
|
109
|
+
"wallet.table.balance": "余额",
|
|
110
|
+
"wallet.loadingBalances": "正在加载余额...",
|
|
111
|
+
"wallet.loadingNfts": "正在加载 NFT...",
|
|
112
|
+
"wallet.setup.rpcNotConfigured": "BSC RPC 未配置。",
|
|
113
|
+
"wallet.noOnchainWallet": "暂无链上钱包。请先使用 Privy 登录。",
|
|
114
|
+
"wallet.noOnchainWalletHint": "登录后会自动创建并显示托管钱包。",
|
|
115
|
+
"wallet.manual": "手动",
|
|
116
|
+
"wallet.remove": "移除",
|
|
117
|
+
"wallet.removeManualTitle": "移除手动添加的代币",
|
|
118
|
+
"wallet.tokenRemovedManual": "代币已从观察列表移除。",
|
|
119
|
+
"wallet.copyEvmAddress": "复制 EVM 地址",
|
|
120
|
+
"wallet.copySolanaAddress": "复制 Solana 地址",
|
|
121
|
+
"wallet.enableIt": "去启用",
|
|
122
|
+
"companion.avatarPreviewAlt": "头像预览",
|
|
123
|
+
"companion.switchToNativeUi": "切换到原生界面",
|
|
124
|
+
"common.refresh": "刷新",
|
|
125
|
+
"game.backToApps": "返回应用",
|
|
126
|
+
"game.openInNewTab": "在新标签页打开",
|
|
127
|
+
"game.stop": "停止",
|
|
128
|
+
"wallet.setup.configureRpc": "配置RPC",
|
|
129
|
+
"apikeyconfig.configured": "配置好的",
|
|
130
|
+
"appsview.EmbeddedAgents": "嵌入式代理(",
|
|
131
|
+
"appsview.SelectEmbeddedAgen": "选择嵌入代理",
|
|
132
|
+
"appsview.Character": "特点:",
|
|
133
|
+
"appsview.Health": "|健康:",
|
|
134
|
+
"appsview.Position": "|位置:",
|
|
135
|
+
"appsview.CreateEmbeddedAgen": "创建嵌入式代理",
|
|
136
|
+
"appsview.NoScriptedRole": "没有剧本角色",
|
|
137
|
+
"appsview.AutoStart": "自动启动",
|
|
138
|
+
"appsview.SendMessage": "发送消息",
|
|
139
|
+
"appsview.SendCommand": "发送命令",
|
|
140
|
+
"appsview.GoalQuickActions": "目标+快速行动",
|
|
141
|
+
"appsview.Nearby": "附近:",
|
|
142
|
+
"appsview.ActiveGameSession": "活跃游戏会话",
|
|
143
|
+
"appsview.ResumeInFullScree": "恢复全屏或在新选项卡中打开查看器。",
|
|
144
|
+
"appsview.ResumeFullscreen": "恢复全屏",
|
|
145
|
+
"appsview.OpenInNewTab": "在新选项卡中打开",
|
|
146
|
+
"appsview.Back": "后退",
|
|
147
|
+
"appsview.Active": "积极的",
|
|
148
|
+
"appsview.Inactive": "不活跃",
|
|
149
|
+
"appsview.ViewActiveSession": "查看活动会话",
|
|
150
|
+
"appsview.OpenViewerInNewT": "在新选项卡中打开查看器",
|
|
151
|
+
"appsview.LaunchType": "发射类型:",
|
|
152
|
+
"appsview.LatestVersion": "最新版本:",
|
|
153
|
+
"appsview.LaunchURL": "启动网址:",
|
|
154
|
+
"appsview.Repository": "存储库:",
|
|
155
|
+
"appsview.Capabilities": "能力",
|
|
156
|
+
"appsview.ViewerConfig": "查看器配置",
|
|
157
|
+
"appsview.URL": "网址:",
|
|
158
|
+
"appsview.postMessageAuth": "发布消息授权:",
|
|
159
|
+
"appsview.Sandbox": "沙盒:",
|
|
160
|
+
"appsview.HyperscapeControls": "Hyperscape 控制",
|
|
161
|
+
"appsview.EmbeddedAgentsCom": "嵌入式代理、命令和遥测。",
|
|
162
|
+
"appsview.Refresh": "刷新",
|
|
163
|
+
"appsview.active": "积极的",
|
|
164
|
+
"appsview.LoadingApps": "正在加载应用程序...",
|
|
165
|
+
"appsview.CharacterID": "角色ID",
|
|
166
|
+
"appsview.SaySomethingToSel": "对选定的代理说些什么...",
|
|
167
|
+
"appsview.Target000": "{“目标”:[0,0,0]}",
|
|
168
|
+
"appsview.SearchApps": "搜索应用程序...",
|
|
169
|
+
"avatarselector.UploadVRM": "上传VRM",
|
|
170
|
+
"avatarselector.dropVrm": "丢弃.vrm",
|
|
171
|
+
"avatarselector.UploadCustomVrm": "上传自定义 .vrm(单击或拖动)",
|
|
172
|
+
"bsctradepanel.ViewTx": "查看交易",
|
|
173
|
+
"bsctradepanel.Pending": "待办的...",
|
|
174
|
+
"bsctradepanel.RefreshStatus": "刷新状态",
|
|
175
|
+
"bsctradepanel.Confirmations": "确认信息:",
|
|
176
|
+
"bsctradepanel.RequiresWalletSign": "需要钱包签名才能完成。",
|
|
177
|
+
"bsctradepanel.CopyApprovalTX": "复制批准TX",
|
|
178
|
+
"bsctradepanel.CopySwapTX": "复制交换TX",
|
|
179
|
+
"bsctradepanel.BNB": "币安银行:",
|
|
180
|
+
"bsctradepanel.Preflight": "预检",
|
|
181
|
+
"bsctradepanel.Quote": "引用",
|
|
182
|
+
"bsctradepanel.BNB1": "币安银行",
|
|
183
|
+
"bsctradepanel.Buy": "买",
|
|
184
|
+
"bsctradepanel.Sell": "卖",
|
|
185
|
+
"bsctradepanel.LatestQuote": "最新报价",
|
|
186
|
+
"bsctradepanel.trade": "贸易?",
|
|
187
|
+
"bsctradepanel.ExecuteTrade": "执行交易",
|
|
188
|
+
"bsctradepanel.TokenContractAddre": "代币合约地址(0x...)",
|
|
189
|
+
"bugreportmodal.BugReportSubmitted": "错误报告已提交",
|
|
190
|
+
"bugreportmodal.Times": "×",
|
|
191
|
+
"bugreportmodal.YourBugReportHas": "您的错误报告已成功提交。",
|
|
192
|
+
"bugreportmodal.Close": "关闭",
|
|
193
|
+
"bugreportmodal.ReportABug": "报告错误",
|
|
194
|
+
"bugreportmodal.StepsToReproduce": "重现步骤",
|
|
195
|
+
"bugreportmodal.ExpectedBehavior": "预期行为",
|
|
196
|
+
"bugreportmodal.ActualBehavior": "实际行为",
|
|
197
|
+
"bugreportmodal.Environment": "环境",
|
|
198
|
+
"bugreportmodal.Select": "选择...",
|
|
199
|
+
"bugreportmodal.NodeVersion": "节点版本",
|
|
200
|
+
"bugreportmodal.ModelProvider": "模型提供者",
|
|
201
|
+
"bugreportmodal.Logs": "日志",
|
|
202
|
+
"bugreportmodal.DescribeTheIssueY": "描述您遇到的问题。",
|
|
203
|
+
"bugreportmodal.DescribeTheExpecte": "描述预期结果。",
|
|
204
|
+
"bugreportmodal.DescribeTheActual": "描述实际结果。",
|
|
205
|
+
"bugreportmodal.22X": "22.x",
|
|
206
|
+
"bugreportmodal.AnthropicOpenAI": "Anthropic / OpenAI / Ollama",
|
|
207
|
+
"bugreportmodal.PasteRelevantError": "粘贴相关错误输出或日志",
|
|
208
|
+
"characterview.reload": "重新加载",
|
|
209
|
+
"characterview.import": "导入",
|
|
210
|
+
"characterview.export": "导出",
|
|
211
|
+
"characterview.importCharacterJso": "导入角色 JSON",
|
|
212
|
+
"characterview.exportAsCharacter": "导出角色 JSON",
|
|
213
|
+
"characterview.customize": "自定义",
|
|
214
|
+
"characterview.backToCharacterSelect": "返回角色选择",
|
|
215
|
+
"characterview.loadingCharacterDa": "正在加载角色数据...",
|
|
216
|
+
"characterview.selectAVoice": "选择语音",
|
|
217
|
+
"characterview.core": "核心",
|
|
218
|
+
"characterview.style": "风格",
|
|
219
|
+
"characterview.examples": "示例",
|
|
220
|
+
"characterview.aboutMe": "关于我",
|
|
221
|
+
"characterview.directionsAndThing": "指引和注意事项",
|
|
222
|
+
"characterview.StyleRules": "风格规则",
|
|
223
|
+
"characterview.RegisterYourAgent": "在以太坊主网上注册您的代理以领取您的 ERC-8004\n 身份 NFT。",
|
|
224
|
+
"characterview.Registered": "挂号的",
|
|
225
|
+
"characterview.Token": "令牌#",
|
|
226
|
+
"characterview.OnChainName": "链上名称“",
|
|
227
|
+
"characterview.DiffersFrom": "“ 不同于 ”",
|
|
228
|
+
"characterview.adjectives": "形容词",
|
|
229
|
+
"chatmessage.ResponseInterrupte": "(反应中断)",
|
|
230
|
+
"chatmessage.StartAConversation": "开始对话",
|
|
231
|
+
"chatmessage.SendAMessageTo": "发送消息至",
|
|
232
|
+
"chatmessage.toBeginChattingY": "开始聊天。您还可以拖动并\n 删除图像或使用语音输入。",
|
|
233
|
+
"chatmessage.RetryMessage": "重试消息",
|
|
234
|
+
"chatmessage.DeleteMessage": "删除留言",
|
|
235
|
+
"chatview.SilenceEndFirstTo": "沉默结束→第一个标记:",
|
|
236
|
+
"chatview.msEndVoiceStart": "ms·结束→语音开始:",
|
|
237
|
+
"chatview.msFirst": "女士\n ·第一句:",
|
|
238
|
+
"chatview.RemoveImage": "删除图像",
|
|
239
|
+
"chatview.AttachImage": "附上图片",
|
|
240
|
+
"cloudsourcecontrols.Offline": "离线",
|
|
241
|
+
"codingagentsettingssection.LoadingCodingAgent": "正在加载编码代理配置...",
|
|
242
|
+
"codingagentsettingssection.AgentSelectionStra": "代理商选择策略",
|
|
243
|
+
"codingagentsettingssection.Fixed": "固定的",
|
|
244
|
+
"codingagentsettingssection.RankedAutoSelect": "排名(自动选择最佳表现者)",
|
|
245
|
+
"codingagentsettingssection.DefaultAgentType": "默认代理类型",
|
|
246
|
+
"codingagentsettingssection.AgentUsedWhenNoE": "当生成请求中未指定显式类型时使用代理。",
|
|
247
|
+
"codingagentsettingssection.DefaultPermissionL": "默认权限级别",
|
|
248
|
+
"codingagentsettingssection.Provider": "提供者",
|
|
249
|
+
"codingagentsettingssection.Anthropic": "Anthropic",
|
|
250
|
+
"codingagentsettingssection.OpenAI": "开放人工智能",
|
|
251
|
+
"codingagentsettingssection.Google": "谷歌",
|
|
252
|
+
"codingagentsettingssection.PowerfulModel": "强大的模型",
|
|
253
|
+
"codingagentsettingssection.Default": "默认",
|
|
254
|
+
"codingagentsettingssection.FastModel": "快速模型",
|
|
255
|
+
"commandpalette.NoCommandsFound": "没有找到命令",
|
|
256
|
+
"commandpalette.TypeToSearchComma": "输入搜索命令...",
|
|
257
|
+
"configpageview.ConnectedToElizaC": "连接到 Milady 云",
|
|
258
|
+
"configpageview.Credits": "学分:",
|
|
259
|
+
"configpageview.TopUp": "充值",
|
|
260
|
+
"configpageview.RequiresElizaCloud": "需要 Eliza Cloud 连接",
|
|
261
|
+
"configpageview.CloudServices": "云服务",
|
|
262
|
+
"configpageview.RestartRequiredFor": "需要重新启动才能使更改生效",
|
|
263
|
+
"configpageview.ChooseWhichElizaCl": "选择要使用的 Eliza Cloud 服务。禁用推理以使用您的\n 而是拥有 AI 提供商密钥。",
|
|
264
|
+
"configpageview.Config": "配置",
|
|
265
|
+
"configpageview.WalletProvidersAnd": "钱包提供商和秘密。",
|
|
266
|
+
"configpageview.WalletAmpRPC": "钱包&RPC",
|
|
267
|
+
"configpageview.SecretsVault": "秘密金库",
|
|
268
|
+
"configpageview.Secrets": "秘密",
|
|
269
|
+
"configpageview.SecretsVault1": "秘密库",
|
|
270
|
+
"configpageview.BSC": "平衡计分卡",
|
|
271
|
+
"configpageview.EVM": "评估值",
|
|
272
|
+
"configpageview.Solana": "索拉纳",
|
|
273
|
+
"configsavefooter.Saved": "得救了!",
|
|
274
|
+
"connectionfailedbanner.ReconnectingAtt": "正在重新连接...(尝试",
|
|
275
|
+
"connectionfailedbanner.ConnectionLostAfte": "连接丢失后",
|
|
276
|
+
"connectionfailedbanner.attemptsRealTime": "尝试。实时更新已暂停。",
|
|
277
|
+
"customactioneditor.DescribeWhatYouWa": "描述您希望此操作执行的操作",
|
|
278
|
+
"customactioneditor.TheAgentWillGener": "代理将生成操作配置供您查看和\n 编辑。",
|
|
279
|
+
"customactioneditor.AliasesOptional": "别名(可选)",
|
|
280
|
+
"customactioneditor.CommaSeparatedAlte": "代理可以匹配的以逗号分隔的替代项。",
|
|
281
|
+
"customactioneditor.HandlerType": "处理程序类型",
|
|
282
|
+
"customactioneditor.HeadersOptional": "标头(可选)",
|
|
283
|
+
"customactioneditor.Add": "+ 添加",
|
|
284
|
+
"customactioneditor.BodyTemplateOptio": "正文模板(可选)",
|
|
285
|
+
"customactioneditor.CommandTemplate": "命令模板",
|
|
286
|
+
"customactioneditor.forParameterSubsti": "用于参数替换",
|
|
287
|
+
"customactioneditor.JavaScriptCode": "JavaScript 代码",
|
|
288
|
+
"customactioneditor.Parameters": "参数",
|
|
289
|
+
"customactioneditor.AddParameter": "+ 添加参数",
|
|
290
|
+
"customactioneditor.Required": "必需的",
|
|
291
|
+
"customactioneditor.TestAction": "测试行动",
|
|
292
|
+
"customactioneditor.Error": "错误:",
|
|
293
|
+
"customactioneditor.Duration": "期间:",
|
|
294
|
+
"customactioneditor.eGCheckIfAWebs": "例如检查网站是否已启动并返回状态",
|
|
295
|
+
"customactioneditor.MYACTION": "我的行动",
|
|
296
|
+
"customactioneditor.WhatDoesThisActio": "这个动作有什么作用?",
|
|
297
|
+
"customactioneditor.SYNONYMONESYNONYM": "SYNONYM_一、SYNONYM_二",
|
|
298
|
+
"customactioneditor.httpsApiExample": "https://api.example.com/{{param}}",
|
|
299
|
+
"customactioneditor.HeaderName": "标头名称",
|
|
300
|
+
"customactioneditor.valueOrParam": "值或{{param}}",
|
|
301
|
+
"customactioneditor.echoMessage": "回声 {{message}} > /tmp/output.txt",
|
|
302
|
+
"customactioneditor.AvailableParams": "// 可用: params.paramName, fetch()\\nreturn { result: params.input };",
|
|
303
|
+
"customactioneditor.paramName": "参数名称",
|
|
304
|
+
"customactionspanel.CustomActions": "自定义操作",
|
|
305
|
+
"customactionspanel.action": "行动",
|
|
306
|
+
"customactionspanel.enabled": "已启用",
|
|
307
|
+
"customactionspanel.NewCustomAction": "+ 新的自定义操作",
|
|
308
|
+
"customactionspanel.LoadingYourActions": "正在加载您的操作...",
|
|
309
|
+
"customactionspanel.SearchByNameDesc": "按名称、描述、别名搜索...",
|
|
310
|
+
"customactionspanel.EditAction": "编辑动作",
|
|
311
|
+
"customactionspanel.DeleteAction": "删除操作",
|
|
312
|
+
"customactionsview.LoadingActions": "加载动作...",
|
|
313
|
+
"customactionsview.Export": "出口",
|
|
314
|
+
"customactionsview.CreateAction": "创建动作",
|
|
315
|
+
"customactionsview.parameter": "范围",
|
|
316
|
+
"customactionsview.Enabled": "启用",
|
|
317
|
+
"customactionsview.SearchActionsByNa": "按名称或描述搜索操作...",
|
|
318
|
+
"databasepageview.Databases": "数据库",
|
|
319
|
+
"databasepageview.BrowseAndQueryAge": "浏览并查询代理数据、媒体资源和向量。",
|
|
320
|
+
"databasepageview.Tables": "表",
|
|
321
|
+
"databasepageview.Media": "媒体",
|
|
322
|
+
"databasepageview.Vectors": "向量",
|
|
323
|
+
"databaseview.CellValue": "细胞值",
|
|
324
|
+
"databaseview.NULL": "无效的",
|
|
325
|
+
"databaseview.row": "排",
|
|
326
|
+
"databaseview.Prev": "上一篇",
|
|
327
|
+
"databaseview.Next": "下一个",
|
|
328
|
+
"databaseview.TableEditor": "表编辑器",
|
|
329
|
+
"databaseview.SQLEditor": "SQL 编辑器",
|
|
330
|
+
"databaseview.Refresh": "刷新",
|
|
331
|
+
"databaseview.SelectATable": "选择一张表",
|
|
332
|
+
"databaseview.ChooseATableFrom": "从侧边栏选择一张表",
|
|
333
|
+
"databaseview.Tables": "表",
|
|
334
|
+
"databaseview.tables": "个表",
|
|
335
|
+
"databaseview.Connecting": "连接中...",
|
|
336
|
+
"databaseview.DatabaseNotAvailab": "数据库不可用",
|
|
337
|
+
"databaseview.TheDatabaseViewer": "只有在本地代理运行时,数据库查看器才可用。",
|
|
338
|
+
"databaseview.FilterTables": "筛选表...",
|
|
339
|
+
"databaseview.Loading": "加载中...",
|
|
340
|
+
"databaseview.showSidebar": "显示侧边栏",
|
|
341
|
+
"databaseview.hideSidebar": "隐藏侧边栏",
|
|
342
|
+
"databaseview.columns": "列",
|
|
343
|
+
"databaseview.TableIsEmpty": "表为空",
|
|
344
|
+
"databaseview.SELECTFROMMemori": "SELECT * FROM memories LIMIT 100;",
|
|
345
|
+
"databaseview.runQuery": "运行查询",
|
|
346
|
+
"databaseview.Enter": "Enter",
|
|
347
|
+
"databaseview.RecentQueries": "最近的查询",
|
|
348
|
+
"databaseview.QueryReturnedNoRo": "查询未返回任何行",
|
|
349
|
+
"emotepicker.Emotes": "表情",
|
|
350
|
+
"emotepicker.NoEmotesFound": "没有找到表情",
|
|
351
|
+
"emotepicker.SearchEmotes": "搜索表情...",
|
|
352
|
+
"finetuningview.LoadingFineTuning": "正在加载微调工作区...",
|
|
353
|
+
"finetuningview.FineTuning": "微调",
|
|
354
|
+
"finetuningview.BuildDatasetsFrom": "从真实轨迹构建数据集,运行训练作业,然后\n 导入并激活模型。",
|
|
355
|
+
"finetuningview.RefreshAll": "全部刷新",
|
|
356
|
+
"finetuningview.Status": "地位",
|
|
357
|
+
"finetuningview.Runtime": "运行时间:",
|
|
358
|
+
"finetuningview.RunningJobs": "正在运行的作业:",
|
|
359
|
+
"finetuningview.QueuedJobs": "排队作业:",
|
|
360
|
+
"finetuningview.Datasets": "数据集:",
|
|
361
|
+
"finetuningview.Models": "型号:",
|
|
362
|
+
"finetuningview.FailedJobs": "失败的工作:",
|
|
363
|
+
"finetuningview.Trajectories": "轨迹",
|
|
364
|
+
"finetuningview.trajectoryRowsAvai": "轨迹行可用。",
|
|
365
|
+
"finetuningview.LatestTrajectories": "最新轨迹",
|
|
366
|
+
"finetuningview.NoTrajectoriesFoun": "尚未找到轨迹。",
|
|
367
|
+
"finetuningview.Calls": "来电:",
|
|
368
|
+
"finetuningview.Reward": "· 报酬:",
|
|
369
|
+
"finetuningview.SelectedTrajectory": "选定的轨迹",
|
|
370
|
+
"finetuningview.LoadingTrajectoryD": "正在加载轨迹详细信息...",
|
|
371
|
+
"finetuningview.ChooseATrajectory": "选择要检查的轨迹。",
|
|
372
|
+
"finetuningview.Trajectory": "弹道:",
|
|
373
|
+
"finetuningview.Agent": "代理人:",
|
|
374
|
+
"finetuningview.Reward1": "报酬:",
|
|
375
|
+
"finetuningview.Datasets1": "数据集",
|
|
376
|
+
"finetuningview.RefreshDatasets": "刷新数据集",
|
|
377
|
+
"finetuningview.NoDatasetsYet": "还没有数据集。",
|
|
378
|
+
"finetuningview.samples": "样品·",
|
|
379
|
+
"finetuningview.trajectories": "轨迹",
|
|
380
|
+
"finetuningview.TrainingJobs": "培训工作",
|
|
381
|
+
"finetuningview.AutoBuildDatasetF": "根据轨迹自动构建数据集",
|
|
382
|
+
"finetuningview.cpu": "CPU",
|
|
383
|
+
"finetuningview.mlx": "米克斯",
|
|
384
|
+
"finetuningview.cuda": "库达",
|
|
385
|
+
"finetuningview.RefreshJobs": "刷新职位",
|
|
386
|
+
"finetuningview.ActiveJob": "活跃工作:",
|
|
387
|
+
"finetuningview.NoJobsYet": "还没有工作。",
|
|
388
|
+
"finetuningview.SelectedJobLogs": "选定的作业日志",
|
|
389
|
+
"finetuningview.SelectAJobToInsp": "选择一个作业来检查日志。",
|
|
390
|
+
"finetuningview.Status1": "地位:",
|
|
391
|
+
"finetuningview.Dataset": "数据集:",
|
|
392
|
+
"finetuningview.TrainedModels": "训练有素的模型",
|
|
393
|
+
"finetuningview.NoTrainedModelsYe": "尚未训练有素的模型。",
|
|
394
|
+
"finetuningview.backend": "后端:",
|
|
395
|
+
"finetuningview.benchmark": "基准:",
|
|
396
|
+
"finetuningview.ModelActions": "示范动作",
|
|
397
|
+
"finetuningview.SelectAModelToIm": "选择要导入或激活的模型。",
|
|
398
|
+
"finetuningview.Model": "模型:",
|
|
399
|
+
"finetuningview.AdapterPath": "适配器路径:",
|
|
400
|
+
"finetuningview.LiveTrainingEvents": "现场培训活动",
|
|
401
|
+
"finetuningview.NoLiveEventsYet": "还没有现场活动。在这里开始一项工作以流式传输进度。",
|
|
402
|
+
"finetuningview.LimitTrajectories": "限制轨迹(例如 250)",
|
|
403
|
+
"finetuningview.MinLLMCallsPerTr": "每个轨迹的最少法学硕士呼叫数",
|
|
404
|
+
"finetuningview.BaseModelOptional": "基本型号(可选)",
|
|
405
|
+
"finetuningview.IterationsOptional": "迭代(可选)",
|
|
406
|
+
"finetuningview.BatchSizeOptional": "批量大小(可选)",
|
|
407
|
+
"finetuningview.LearningRateOptio": "学习率(可选)",
|
|
408
|
+
"finetuningview.OllamaModelNameO": "Ollama 型号名称(可选)",
|
|
409
|
+
"finetuningview.BaseModelForOllam": "Ollama 的基础模型(可选)",
|
|
410
|
+
"finetuningview.OllamaURL": "奥拉马网址",
|
|
411
|
+
"finetuningview.ProviderModelEG": "提供者模型(例如“ollama/my-model”)",
|
|
412
|
+
"gameviewoverlay.Expand": "扩张",
|
|
413
|
+
"gameviewoverlay.ExpandBackToApps": "展开回“应用程序”选项卡",
|
|
414
|
+
"gameviewoverlay.CloseOverlay": "关闭叠加",
|
|
415
|
+
"header.Cloud": "云",
|
|
416
|
+
"header.CloudCreditsBalanc": "云积分余额",
|
|
417
|
+
"knowledgeview.Documents": "文件",
|
|
418
|
+
"knowledgeview.ChooseFiles": "选择文件",
|
|
419
|
+
"knowledgeview.ChooseFolder": "选择文件夹",
|
|
420
|
+
"knowledgeview.AddFromURL": "从网址添加",
|
|
421
|
+
"knowledgeview.IncludeAIImageDes": "处理图片",
|
|
422
|
+
"knowledgeview.PasteAURLToImpor": "粘贴 URL 以导入内容。 YouTube 链接将是\n 自动转录。",
|
|
423
|
+
"knowledgeview.Import": "进口",
|
|
424
|
+
"knowledgeview.SearchResults": "搜索结果 (",
|
|
425
|
+
"knowledgeview.Clear": "清除",
|
|
426
|
+
"knowledgeview.Match": "% 匹配",
|
|
427
|
+
"knowledgeview.NoResultsFound": "没有找到结果",
|
|
428
|
+
"knowledgeview.YouTube": "YouTube",
|
|
429
|
+
"knowledgeview.URL": "网址",
|
|
430
|
+
"knowledgeview.Loading": "加载中...",
|
|
431
|
+
"knowledgeview.Type": "类型:",
|
|
432
|
+
"knowledgeview.Source": "来源:",
|
|
433
|
+
"knowledgeview.Fragments1": "碎片(",
|
|
434
|
+
"knowledgeview.Fragment": "分段",
|
|
435
|
+
"knowledgeview.Position": "位置:",
|
|
436
|
+
"knowledgeview.NoFragmentsFound": "没有找到碎片",
|
|
437
|
+
"knowledgeview.KnowledgeServiceIs": "知识服务正在加载中...",
|
|
438
|
+
"knowledgeview.LoadingDocuments": "正在加载文档...",
|
|
439
|
+
"knowledgeview.NoDocumentsYet": "还没有文件",
|
|
440
|
+
"knowledgeview.UploadFilesOrImpo": "上传文件或从 URL 导入以开始",
|
|
441
|
+
"knowledgeview.httpsExampleCom": "https://example.com/document.pdf 或 YouTube URL",
|
|
442
|
+
"logspageview.AgentRuntimeLogsW": "带过滤功能的代理运行时日志。",
|
|
443
|
+
"logsview.AllLevels": "所有级别",
|
|
444
|
+
"logsview.Debug": "调试",
|
|
445
|
+
"logsview.Info": "信息",
|
|
446
|
+
"logsview.Warn": "警告",
|
|
447
|
+
"logsview.Error": "错误",
|
|
448
|
+
"logsview.AllSources": "所有来源",
|
|
449
|
+
"logsview.AllTags": "所有标签",
|
|
450
|
+
"logsview.ClearFilters": "清除过滤器",
|
|
451
|
+
"logsview.NoLogEntries": "没有日志条目",
|
|
452
|
+
"logsview.SearchLogs": "搜索日志...",
|
|
453
|
+
"mediasettingssection.LoadingMediaConfig": "正在加载媒体配置...",
|
|
454
|
+
"mediasettingssection.APISource": "API来源:",
|
|
455
|
+
"mediasettingssection.Provider": "提供商:",
|
|
456
|
+
"mediasettingssection.Model": "模型",
|
|
457
|
+
"mediasettingssection.FluxPro": "通量专业版",
|
|
458
|
+
"mediasettingssection.FluxProV11": "通量专业版 v1.1",
|
|
459
|
+
"mediasettingssection.FluxKontextPro": "Flux Kontext Pro",
|
|
460
|
+
"mediasettingssection.Flux2Flex": "通量 2 柔性",
|
|
461
|
+
"mediasettingssection.FluxDev": "通量开发",
|
|
462
|
+
"mediasettingssection.FluxSchnell": "通量施奈尔",
|
|
463
|
+
"mediasettingssection.FastFlux": "快速通量",
|
|
464
|
+
"mediasettingssection.NanoBananaProGoo": "纳米香蕉专业版(谷歌)",
|
|
465
|
+
"mediasettingssection.RecraftV3": "重制版V3",
|
|
466
|
+
"mediasettingssection.KlingImageV3": "克林图像 v3",
|
|
467
|
+
"mediasettingssection.KlingImageO3": "克林图像 O3",
|
|
468
|
+
"mediasettingssection.GrokImagineXAI": "Grok 想象 (xAI)",
|
|
469
|
+
"mediasettingssection.StableDiffusion3": "稳定扩散3",
|
|
470
|
+
"mediasettingssection.DALLE3": "达尔-E 3",
|
|
471
|
+
"mediasettingssection.DALLE2": "达尔-E 2",
|
|
472
|
+
"mediasettingssection.Quality": "质量",
|
|
473
|
+
"mediasettingssection.Standard": "标准",
|
|
474
|
+
"mediasettingssection.Veo31Google": "Veo 3.1(谷歌)",
|
|
475
|
+
"mediasettingssection.Veo31Fast": "Veo 3.1 快",
|
|
476
|
+
"mediasettingssection.Sora2": "索拉2",
|
|
477
|
+
"mediasettingssection.Sora2Pro": "索拉2专业版",
|
|
478
|
+
"mediasettingssection.Kling30Pro": "克林3.0专业版",
|
|
479
|
+
"mediasettingssection.Kling30": "克林3.0",
|
|
480
|
+
"mediasettingssection.KlingO3Pro": "克林O3 Pro",
|
|
481
|
+
"mediasettingssection.KlingO3": "克林O3",
|
|
482
|
+
"mediasettingssection.GrokVideoXAI": "Grok 视频 (xAI)",
|
|
483
|
+
"mediasettingssection.MinimaxHailuo": "极小极大海螺",
|
|
484
|
+
"mediasettingssection.HunyuanVideo": "混源视频",
|
|
485
|
+
"mediasettingssection.Mochi1": "麻糬 1",
|
|
486
|
+
"mediasettingssection.Wan22": "万2.2",
|
|
487
|
+
"mediasettingssection.Veo31": "维奥3.1",
|
|
488
|
+
"mediasettingssection.GrokXAI": "格洛克 (xAI)",
|
|
489
|
+
"mediasettingssection.LumaDreamMachine": "卢玛梦想机",
|
|
490
|
+
"mediasettingssection.PixverseV45": "像素宇宙 v4.5",
|
|
491
|
+
"mediasettingssection.LTX219B": "LTX-2 19B",
|
|
492
|
+
"mediasettingssection.ChirpV35": "叽叽喳喳 v3.5",
|
|
493
|
+
"mediasettingssection.ChirpV3": "啁啾 v3",
|
|
494
|
+
"mediasettingssection.MaxDurationSecond": "最大持续时间(秒)",
|
|
495
|
+
"mediasettingssection.GPT4o": "GPT-4o",
|
|
496
|
+
"mediasettingssection.GPT4oMini": "GPT-4o 迷你型",
|
|
497
|
+
"mediasettingssection.GPT4Turbo": "GPT-4涡轮增压",
|
|
498
|
+
"mediasettingssection.Gemini20Flash": "Gemini 2.0 Flash",
|
|
499
|
+
"mediasettingssection.Gemini15Pro": "Gemini 1.5 Pro",
|
|
500
|
+
"mediasettingssection.Gemini15Flash": "Gemini 1.5 Flash",
|
|
501
|
+
"mediasettingssection.ClaudeSonnet4": "Claude Sonnet 4",
|
|
502
|
+
"mediasettingssection.Claude35Sonnet": "Claude 3.5 Sonnet",
|
|
503
|
+
"mediasettingssection.Claude3Haiku": "Claude 3 Haiku",
|
|
504
|
+
"mediasettingssection.Flux": "Flux",
|
|
505
|
+
"mediasettingssection.OtherModels": "其他型号",
|
|
506
|
+
"mediasettingssection.TextToVideo": "文字转视频",
|
|
507
|
+
"mediasettingssection.ImageToVideo": "图像转视频",
|
|
508
|
+
"messagecontent.Enabled": "— 已启用",
|
|
509
|
+
"messagecontent.configuration": "配置...",
|
|
510
|
+
"messagecontent.Plugin": "插件“",
|
|
511
|
+
"messagecontent.NotFound": "“ 未找到。",
|
|
512
|
+
"messagecontent.Configuration": "配置",
|
|
513
|
+
"messagecontent.Configured": "已配置",
|
|
514
|
+
"messagecontent.NoConfigurablePara": "没有可配置的参数。",
|
|
515
|
+
"messagecontent.Saved": "已保存",
|
|
516
|
+
"messagecontent.InteractiveUI": "交互式用户界面",
|
|
517
|
+
"pairingview.PairingRequired": "需要配对",
|
|
518
|
+
"pairingview.EnterThePairingCo": "输入服务器日志中的配对代码进行身份验证。",
|
|
519
|
+
"pairingview.PairingCode": "配对码",
|
|
520
|
+
"pairingview.PairingIsNotEnabl": "此服务器上未启用配对。",
|
|
521
|
+
"pairingview.NextSteps": "后续步骤:",
|
|
522
|
+
"pairingview.AskTheServerOwner": "向服务器所有者询问 API 令牌。",
|
|
523
|
+
"pairingview.EnablePairingOnTh": "在服务器上启用配对并重新启动 Milady。",
|
|
524
|
+
"pairingview.PairingSetupDocs": "配对设置文档",
|
|
525
|
+
"pairingview.EnterPairingCode": "输入配对码",
|
|
526
|
+
"permissionssection.Request": "要求",
|
|
527
|
+
"permissionssection.MissingPermissions": "缺少权限",
|
|
528
|
+
"permissionssection.LoadingPermissions": "正在加载权限...",
|
|
529
|
+
"permissionssection.SystemPermissions": "系统权限",
|
|
530
|
+
"permissionssection.Continue": "继续",
|
|
531
|
+
"permissionssection.Grant": "授予",
|
|
532
|
+
"permissionssection.OpenSettings": "打开设置",
|
|
533
|
+
"permissionssection.CheckAccess": "检查访问权限",
|
|
534
|
+
"permissionssection.AllowAll": "全部允许",
|
|
535
|
+
"permissionssection.AllowAllPermission": "允许所有权限",
|
|
536
|
+
"permissionssection.GrantPermissionsTo": "授予权限以解锁桌面功能。",
|
|
537
|
+
"permissionssection.CheckingPermissions": "正在检查权限...",
|
|
538
|
+
"permissionssection.UnableToCheckPerm": "无法检查权限。",
|
|
539
|
+
"permissionssection.UnableToLoadPermi": "无法加载权限。",
|
|
540
|
+
"permissionssection.CapabilitiesRequire": "这些功能需要上方列出的系统权限。",
|
|
541
|
+
"permissionssection.BrowserPermissions": "浏览器权限",
|
|
542
|
+
"permissionssection.StreamingPermissions": "流媒体权限",
|
|
543
|
+
"permissionssection.WebStreamingDesc": "允许浏览器访问你的摄像头、麦克风和屏幕,以便流式传输到你的代理。",
|
|
544
|
+
"permissionssection.MobileStreamingDesc": "你的设备会将摄像头、麦克风和屏幕流式传输到 Eliza Cloud 代理进行处理。",
|
|
545
|
+
"permissionssection.WebOnboardingDesc": "允许浏览器访问,以便摄像头、麦克风和屏幕可以流式传输到你的代理。",
|
|
546
|
+
"permissionssection.MobileOnboardingDesc": "允许访问,以便你的设备可以向云端代理传输内容。",
|
|
547
|
+
"permissionssection.SkipForNow": "暂时跳过",
|
|
548
|
+
"pluginsview.TestConnection": "测试连接",
|
|
549
|
+
"pluginsview.AddPlugin": "+ 添加插件",
|
|
550
|
+
"pluginsview.ApplyingPluginChan": "正在应用插件更改并等待代理重新启动...",
|
|
551
|
+
"restartbanner.Later": "之后",
|
|
552
|
+
"runtimeview.none": "没有任何",
|
|
553
|
+
"runtimeview.Services": "服务(",
|
|
554
|
+
"runtimeview.types": "类型)",
|
|
555
|
+
"runtimeview.depth": "深度",
|
|
556
|
+
"runtimeview.arrayCap": "阵列帽",
|
|
557
|
+
"runtimeview.objectCap": "对象上限",
|
|
558
|
+
"runtimeview.Collapse": "坍塌",
|
|
559
|
+
"runtimeview.ExpandTop": "展开顶部",
|
|
560
|
+
"runtimeview.Summary": "概括",
|
|
561
|
+
"runtimeview.runtime": "运行时间:",
|
|
562
|
+
"runtimeview.agent": "代理人:",
|
|
563
|
+
"runtimeview.state": "状态:",
|
|
564
|
+
"runtimeview.model": "模型:",
|
|
565
|
+
"runtimeview.plugins": "插件:",
|
|
566
|
+
"runtimeview.actions": "行动:",
|
|
567
|
+
"runtimeview.providers": "提供者:",
|
|
568
|
+
"runtimeview.evaluators": "评估者:",
|
|
569
|
+
"runtimeview.services": "服务:",
|
|
570
|
+
"runtimeview.AgentRuntimeIsNot": "代理运行时未运行。启动运行时并刷新。",
|
|
571
|
+
"runtimeview.Plugins": "插件",
|
|
572
|
+
"runtimeview.Actions": "行动",
|
|
573
|
+
"runtimeview.Providers": "供应商",
|
|
574
|
+
"runtimeview.Evaluators": "评估者",
|
|
575
|
+
"savecommandmodal.SaveAsCommand": "另存为/命令",
|
|
576
|
+
"savecommandmodal.CommandName": "命令名称",
|
|
577
|
+
"savecommandmodal.Preview": "预览",
|
|
578
|
+
"savecommandmodal.Save": "节省",
|
|
579
|
+
"savecommandmodal.myCommand": "我的命令",
|
|
580
|
+
"secretsview.LoadingSecrets": "正在加载秘密...",
|
|
581
|
+
"secretsview.ManageAPIKeysAnd": "管理 API 密钥和凭据。从您的插件添加秘密,设置\n 他们一次。",
|
|
582
|
+
"secretsview.AddSecret": "+ 添加秘密",
|
|
583
|
+
"secretsview.YourVaultIsEmpty": "你的金库是空的。单击“添加密钥”以选择要添加的 API 密钥\n 管理这里。",
|
|
584
|
+
"secretsview.AddSecretsToVault": "将机密添加到保管库",
|
|
585
|
+
"secretsview.Add": "添加",
|
|
586
|
+
"secretsview.Required": "必需的",
|
|
587
|
+
"secretsview.SearchByKeyDescr": "按关键字、描述或插件名称搜索...",
|
|
588
|
+
"secretsview.RemoveFromVault": "从保管库中删除",
|
|
589
|
+
"settingsview.Password": "密码",
|
|
590
|
+
"settingsview.IncludeRecentLogs": "在备份中包含最近的日志",
|
|
591
|
+
"settingsview.BackupFile": "备份文件",
|
|
592
|
+
"settingsview.EnterExportPasswor": "输入导出密码",
|
|
593
|
+
"settingsview.EnterImportPasswor": "输入导入密码",
|
|
594
|
+
"shortcutsoverlay.KeyboardShortcuts": "键盘快捷键",
|
|
595
|
+
"skillsview.ReviewFindings": "审查结果",
|
|
596
|
+
"skillsview.ScanReport": "扫描报告",
|
|
597
|
+
"skillsview.critical": "批判的",
|
|
598
|
+
"skillsview.warnings": "警告",
|
|
599
|
+
"skillsview.AcknowledgeAmpEn": "确认并启用",
|
|
600
|
+
"skillsview.Dismiss": "解雇",
|
|
601
|
+
"skillsview.LoadingScanReport": "正在加载扫描报告...",
|
|
602
|
+
"skillsview.score": "分数:",
|
|
603
|
+
"skillsview.result": "结果",
|
|
604
|
+
"skillsview.CreateNewSkill": "创造新技能",
|
|
605
|
+
"skillsview.SkillName": "技能名称",
|
|
606
|
+
"skillsview.Description": "描述",
|
|
607
|
+
"skillsview.SKILLMd": "技能.md",
|
|
608
|
+
"skillsview.unsaved": "未保存",
|
|
609
|
+
"skillsview.toSave": "保存",
|
|
610
|
+
"skillsview.LoadingSkillSource": "正在加载技能源...",
|
|
611
|
+
"skillsview.eGMyAwesomeSkil": "例如我的超棒技能",
|
|
612
|
+
"skillsview.BriefDescriptionOf": "简要描述该技能的作用(可选)",
|
|
613
|
+
"startupfailureview.StartupFailed": "启动失败:",
|
|
614
|
+
"startupfailureview.ThisOriginDoesNot": "此源不托管代理后端。",
|
|
615
|
+
"startupfailureview.RetryStartup": "重试启动",
|
|
616
|
+
"startupfailureview.OpenApp": "打开应用程序",
|
|
617
|
+
"streamview.StreamingUnavailabl": "无法串流",
|
|
618
|
+
"streamview.EnableTheStreaming": "启用流媒体插件上线",
|
|
619
|
+
"streamview.MiladyCouldNotRea": "Milady 无法访问本地流媒体路由\n 视图。安装并启用",
|
|
620
|
+
"streamview.streamingBase": "流媒体基础",
|
|
621
|
+
"streamview.pluginThenReload": "插件,然后重新加载 Stream 选项卡。",
|
|
622
|
+
"streamview.IfThePluginIsAlr": "如果插件已安装,请重新启动桌面应用程序或\n API 服务器并重试。",
|
|
623
|
+
"streamview.Game": "游戏",
|
|
624
|
+
"subscriptionstatus.ClaudeSubscription": "Claude 订阅凭据已过期或无效。重新连接\n 以继续。",
|
|
625
|
+
"subscriptionstatus.SetupToken": "设置令牌",
|
|
626
|
+
"subscriptionstatus.OAuthLogin": "OAuth登录",
|
|
627
|
+
"subscriptionstatus.SavingAmpRestart": "保存并重新启动...",
|
|
628
|
+
"subscriptionstatus.YourClaudeSubscrip": "您的 Claude 订阅已连接。断开连接可切换账户。",
|
|
629
|
+
"subscriptionstatus.RequiresClaudePro": "需要 Claude Pro(20 美元/月)或 Max(100 美元/月)。",
|
|
630
|
+
"subscriptionstatus.AfterLoggingInCo": "登录 Claude 后,复制授权码并\n 将其粘贴在下面。",
|
|
631
|
+
"subscriptionstatus.ChatGPTSubscription": "ChatGPT 订阅凭据已过期或无效。重新连接\n 继续。",
|
|
632
|
+
"subscriptionstatus.YourChatGPTSubscri": "您的 ChatGPT 订阅已链接。断开连接进行切换\n 账户。",
|
|
633
|
+
"subscriptionstatus.LoginWithOpenAI": "使用 OpenAI 登录",
|
|
634
|
+
"subscriptionstatus.RequiresChatGPTPlu": "需要 ChatGPT Plus(20 美元/月)或 Pro(200 美元/月)。",
|
|
635
|
+
"subscriptionstatus.AfterLoggingInYo": "登录后,您将被重定向到无法加载的页面\n (开始于",
|
|
636
|
+
"subscriptionstatus.localhost1455": "localhost:1455",
|
|
637
|
+
"subscriptionstatus.CopyTheEntireU": ")。复制整个 URL 并将其粘贴到下面。",
|
|
638
|
+
"subscriptionstatus.skAntOat01": "sk-ant-oat01-...",
|
|
639
|
+
"subscriptionstatus.PasteTheAuthorizat": "将授权码粘贴到此处...",
|
|
640
|
+
"subscriptionstatus.httpLocalhost145": "http://localhost:1455/auth/callback?code=...",
|
|
641
|
+
"trajectoriesview.Total": "全部的:",
|
|
642
|
+
"trajectoriesview.LLMCalls": "法学硕士电话:",
|
|
643
|
+
"trajectoriesview.Tokens": "代币:",
|
|
644
|
+
"trajectoriesview.AvgDuration": "平均持续时间:",
|
|
645
|
+
"trajectoriesview.Logging": "记录:",
|
|
646
|
+
"trajectoriesview.AllStatuses": "所有状态",
|
|
647
|
+
"trajectoriesview.Completed": "完全的",
|
|
648
|
+
"trajectoriesview.JSONWithPrompts": "JSON(有提示)",
|
|
649
|
+
"trajectoriesview.JSONRedacted": "JSON(已编辑)",
|
|
650
|
+
"trajectoriesview.CSVSummaryOnly": "CSV(仅摘要)",
|
|
651
|
+
"trajectoriesview.ZIPFolders": "ZIP(文件夹)",
|
|
652
|
+
"trajectoriesview.LoadingTrajectories": "正在加载轨迹...",
|
|
653
|
+
"trajectoriesview.NoTrajectories": "无轨迹",
|
|
654
|
+
"trajectoriesview.NoTrajectoriesMatchingFilters": "没有符合当前筛选条件的轨迹。",
|
|
655
|
+
"trajectoriesview.NoTrajectoriesYet": "还没有轨迹。",
|
|
656
|
+
"trajectoriesview.LoggingHelp": "日志在生产环境默认关闭,在开发环境默认开启。可使用此按钮切换。",
|
|
657
|
+
"trajectoriesview.FailedToLoad": "加载轨迹失败",
|
|
658
|
+
"trajectoriesview.FailedToUpdateConfig": "更新日志设置失败",
|
|
659
|
+
"trajectoriesview.FailedToExport": "导出轨迹失败",
|
|
660
|
+
"trajectoriesview.FailedToClear": "清除轨迹失败",
|
|
661
|
+
"trajectoriesview.DeleteAllTitle": "删除所有轨迹",
|
|
662
|
+
"trajectoriesview.DeleteAllMessage": "确定要删除所有轨迹吗?",
|
|
663
|
+
"trajectoriesview.DeleteAllDetail": "此操作无法撤销。",
|
|
664
|
+
"trajectoriesview.Time": "时间",
|
|
665
|
+
"trajectoriesview.Source": "来源",
|
|
666
|
+
"trajectoriesview.Calls": "通话",
|
|
667
|
+
"trajectoriesview.Tokens1": "代币",
|
|
668
|
+
"trajectoriesview.Duration": "期间",
|
|
669
|
+
"trajectoriesview.Showing": "显示中",
|
|
670
|
+
"trajectoriesview.ShowingRange": "显示第 {{start}}-{{end}} 条,共 {{total}} 条",
|
|
671
|
+
"trajectoriesview.Search": "搜索...",
|
|
672
|
+
"trajectorydetailview.lines": "线",
|
|
673
|
+
"trajectorydetailview.Copy": "复制",
|
|
674
|
+
"trajectorydetailview.EstCost": "预计。成本:",
|
|
675
|
+
"trajectorydetailview.Temp": "温度:",
|
|
676
|
+
"trajectorydetailview.Max": "最大限度:",
|
|
677
|
+
"trajectorydetailview.SystemPrompt": "系统提示(",
|
|
678
|
+
"trajectorydetailview.chars": "字符)",
|
|
679
|
+
"trajectorydetailview.LoadingTrajectory": "加载轨迹...",
|
|
680
|
+
"trajectorydetailview.GoBack": "回去",
|
|
681
|
+
"trajectorydetailview.TrajectoryNotFound": "未找到轨迹",
|
|
682
|
+
"trajectorydetailview.Back": "← 返回",
|
|
683
|
+
"trajectorydetailview.TrajectoryDetail": "轨迹细节",
|
|
684
|
+
"trajectorydetailview.Time": "时间:",
|
|
685
|
+
"trajectorydetailview.Source": "来源:",
|
|
686
|
+
"trajectorydetailview.Duration": "期间:",
|
|
687
|
+
"trajectorydetailview.TotalTokens": "代币总数:",
|
|
688
|
+
"trajectorydetailview.NoLLMCallsRecorde": "没有记录该轨迹的法学硕士通话。",
|
|
689
|
+
"trajectorydetailview.CopyToClipboard": "复制到剪贴板",
|
|
690
|
+
"trajectorydetailview.System": "系统",
|
|
691
|
+
"trajectorydetailview.InputUser": "输入(用户)",
|
|
692
|
+
"trajectorydetailview.OutputResponse": "输出(响应)",
|
|
693
|
+
"triggersview.TriggersScheduleAu": "心跳会为代理安排自主指令。每个心跳\n 都可以按间隔、一次性时间戳或 cron 计划运行;当\n 它触发时,指令会被注入自治流程,运行结果\n 会记录在下面。",
|
|
694
|
+
"triggersview.TriggerHealth": "心跳健康",
|
|
695
|
+
"triggersview.NoHealthDataYet": "尚无健康数据 - 触发器将在第一次之后在此处报告\n 执行。",
|
|
696
|
+
"triggersview.Name": "姓名",
|
|
697
|
+
"triggersview.Instructions": "指示",
|
|
698
|
+
"triggersview.ScheduleType": "时间表类型",
|
|
699
|
+
"triggersview.RepeatingInterval": "重复间隔",
|
|
700
|
+
"triggersview.OneTime": "一度",
|
|
701
|
+
"triggersview.CronSchedule": "计划任务",
|
|
702
|
+
"triggersview.WakeMode": "唤醒模式",
|
|
703
|
+
"triggersview.InjectAmpWakeIm": "注射并立即唤醒",
|
|
704
|
+
"triggersview.QueueForNextCycle": "排队等待下一个周期",
|
|
705
|
+
"triggersview.MaxRunsOptional": "最大运行次数(可选)",
|
|
706
|
+
"triggersview.IntervalMs": "间隔(毫秒)—",
|
|
707
|
+
"triggersview.ScheduledTimeISO": "预定时间 (ISO)",
|
|
708
|
+
"triggersview.CronExpression5F": "Cron 表达式(5 字段)",
|
|
709
|
+
"triggersview.minuteHourDayMont": "分钟 小时 日 月 工作日 — 例如“0 9 * * 1-5” = 工作日\n 上午 9 点",
|
|
710
|
+
"triggersview.StartEnabled": "启动已启用",
|
|
711
|
+
"triggersview.NoTriggersConfigur": "尚未配置心跳",
|
|
712
|
+
"triggersview.CreateOneAboveTo": "在上面创建一个来安排自主代理任务",
|
|
713
|
+
"triggersview.Edit": "编辑",
|
|
714
|
+
"triggersview.RunNow": "立即运行",
|
|
715
|
+
"triggersview.Delete": "删除",
|
|
716
|
+
"triggersview.LastRun": "最后一次运行",
|
|
717
|
+
"triggersview.RunHistory": "运行历史",
|
|
718
|
+
"triggersview.NoRunsRecordedYet": "尚未记录任何跑步记录。",
|
|
719
|
+
"triggersview.Disabled": "残疾人",
|
|
720
|
+
"triggersview.Executions": "处决",
|
|
721
|
+
"triggersview.Failures": "失败",
|
|
722
|
+
"triggersview.LastExec": "最后执行者",
|
|
723
|
+
"triggersview.eGDailyDigestH": "例如每日摘要、心跳检查",
|
|
724
|
+
"triggersview.WhatShouldTheAgen": "当这个触发器触发时,代理应该做什么?",
|
|
725
|
+
"triggersview.20260215T100000": "2026-02-15T10:00:00.000Z",
|
|
726
|
+
"heartbeatsview.durationUnitSeconds": "秒",
|
|
727
|
+
"heartbeatsview.durationUnitMinutes": "分钟",
|
|
728
|
+
"heartbeatsview.durationUnitHours": "小时",
|
|
729
|
+
"heartbeatsview.durationUnitDays": "天",
|
|
730
|
+
"heartbeatsview.every": "每",
|
|
731
|
+
"heartbeatsview.onceAt": "于 {{time}} 执行一次",
|
|
732
|
+
"heartbeatsview.once": "一次",
|
|
733
|
+
"heartbeatsview.cronPrefix": "Cron:",
|
|
734
|
+
"heartbeatsview.validationDisplayNameRequired": "显示名称为必填项。",
|
|
735
|
+
"heartbeatsview.validationInstructionsRequired": "说明为必填项。",
|
|
736
|
+
"heartbeatsview.validationIntervalPositive": "间隔必须是正数。",
|
|
737
|
+
"heartbeatsview.validationScheduledTimeRequired": "一次性心跳必须填写计划时间。",
|
|
738
|
+
"heartbeatsview.validationScheduledTimeInvalid": "计划时间必须是有效的 ISO 日期时间。",
|
|
739
|
+
"heartbeatsview.validationCronRequired": "Cron 表达式为必填项。",
|
|
740
|
+
"heartbeatsview.validationCronFiveFields": "Cron 表达式必须正好包含 5 个字段(分钟 小时 日 月 星期)。",
|
|
741
|
+
"heartbeatsview.cronFieldMinute": "分钟",
|
|
742
|
+
"heartbeatsview.cronFieldHour": "小时",
|
|
743
|
+
"heartbeatsview.cronFieldDay": "日",
|
|
744
|
+
"heartbeatsview.cronFieldMonth": "月",
|
|
745
|
+
"heartbeatsview.cronFieldWeekday": "星期",
|
|
746
|
+
"heartbeatsview.validationCronInvalidField": "无效的 cron {{field}} 字段: \"{{value}}\"",
|
|
747
|
+
"heartbeatsview.validationMaxRunsPositive": "最大运行次数必须是正整数。",
|
|
748
|
+
"heartbeatsview.deleteTitle": "删除心跳",
|
|
749
|
+
"heartbeatsview.deleteMessage": "删除“{{name}}”?",
|
|
750
|
+
"heartbeatsview.heartbeatSingular": "心跳",
|
|
751
|
+
"heartbeatsview.editTitle": "编辑:{{name}}",
|
|
752
|
+
"heartbeatsview.newHeartbeat": "新建心跳",
|
|
753
|
+
"heartbeatsview.emptyStateDescription": "使用“新建心跳”按钮创建第一个循环或定时的自主任务。",
|
|
754
|
+
"heartbeatsview.statusActive": "启用",
|
|
755
|
+
"heartbeatsview.statusPaused": "暂停",
|
|
756
|
+
"heartbeatsview.nextInline": "下次 {{time}}",
|
|
757
|
+
"heartbeatsview.runCountSingle": "{{count}} 次运行",
|
|
758
|
+
"heartbeatsview.runCountPlural": "{{count}} 次运行",
|
|
759
|
+
"heartbeatsview.maxRuns": "最大运行次数",
|
|
760
|
+
"heartbeatsview.unlimited": "无限制",
|
|
761
|
+
"heartbeatsview.nextRun": "下次运行",
|
|
762
|
+
"heartbeatsview.notYetRun": "尚未运行",
|
|
763
|
+
"heartbeatsview.notScheduled": "未计划",
|
|
764
|
+
"heartbeatsview.enable": "启用",
|
|
765
|
+
"heartbeatsview.disable": "停用",
|
|
766
|
+
"heartbeatsview.refresh": "刷新",
|
|
767
|
+
"heartbeatsview.loading": "加载中...",
|
|
768
|
+
"heartbeatsview.editHeartbeat": "编辑心跳",
|
|
769
|
+
"heartbeatsview.createHeartbeat": "创建心跳",
|
|
770
|
+
"heartbeatsview.close": "关闭",
|
|
771
|
+
"heartbeatsview.interval": "间隔",
|
|
772
|
+
"heartbeatsview.saving": "保存中...",
|
|
773
|
+
"heartbeatsview.saveChanges": "保存更改",
|
|
774
|
+
"heartbeatsview.statusSuccess": "成功",
|
|
775
|
+
"heartbeatsview.statusCompleted": "已完成",
|
|
776
|
+
"heartbeatsview.statusSkipped": "已跳过",
|
|
777
|
+
"heartbeatsview.statusQueued": "已排队",
|
|
778
|
+
"heartbeatsview.statusError": "错误",
|
|
779
|
+
"heartbeatsview.statusFailed": "失败",
|
|
780
|
+
"heartbeatsview.emDash": "—",
|
|
781
|
+
"ui-renderer.Larr": "←",
|
|
782
|
+
"ui-renderer.Rarr": "→",
|
|
783
|
+
"ui-renderer.UnknownComponent": "未知组件:",
|
|
784
|
+
"vectorbrowserview.NotEnoughEmbedding": "图表视图的嵌入不足",
|
|
785
|
+
"vectorbrowserview.NeedAtLeast2Memo": "至少需要 2 个带有嵌入数据的存储器。成立",
|
|
786
|
+
"vectorbrowserview.vectorsProjectedTo": "通过 PCA 投影到 2D 的向量 — 单击一个点\n 查看详细信息",
|
|
787
|
+
"vectorbrowserview.List": "列表",
|
|
788
|
+
"vectorbrowserview.DatabaseNotAvailab": "数据库不可用",
|
|
789
|
+
"vectorbrowserview.RetryConnection": "重试连接",
|
|
790
|
+
"vectorbrowserview.NoMemoriesFound": "没有找到记忆",
|
|
791
|
+
"voiceconfigview.WakeWord": "唤醒词",
|
|
792
|
+
"voiceconfigview.Triggers": "触发器",
|
|
793
|
+
"voiceconfigview.PressEnterOrComma": "按 Enter 或逗号进行添加。至少需要一个触发器。",
|
|
794
|
+
"voiceconfigview.WakeSensitivity": "唤醒灵敏度",
|
|
795
|
+
"voiceconfigview.LowerMoreSensiti": "较低 = 更敏感(唤醒词后所需的间隙更短)",
|
|
796
|
+
"voiceconfigview.ModelSize": "型号尺寸",
|
|
797
|
+
"voiceconfigview.Microphone": "麦克风",
|
|
798
|
+
"voiceconfigview.AddTrigger": "添加触发器...",
|
|
799
|
+
"whatsappqroverlay.Disconnect": "断开",
|
|
800
|
+
"whatsappqroverlay.TryAgain": "再试一次",
|
|
801
|
+
"whatsappqroverlay.ScanAQRCodeWith": "使用手机扫描二维码以链接 WhatsApp。",
|
|
802
|
+
"whatsappqroverlay.UsesAnUnofficialW": "使用非官方 WhatsApp API。使用专用电话号码。",
|
|
803
|
+
"whatsappqroverlay.ConnectWhatsApp": "连接 WhatsApp",
|
|
804
|
+
"whatsappqroverlay.GeneratingQR": "正在生成二维码...",
|
|
805
|
+
"whatsappqroverlay.ScanWithWhatsApp": "使用 WhatsApp 扫描",
|
|
806
|
+
"whatsappqroverlay.OpenWhatsAppOnYou": "在手机上打开 WhatsApp",
|
|
807
|
+
"whatsappqroverlay.Tap": "轻敲",
|
|
808
|
+
"whatsappqroverlay.Menu": "菜单",
|
|
809
|
+
"whatsappqroverlay.andSelect": "并选择",
|
|
810
|
+
"whatsappqroverlay.LinkedDevices": "链接设备",
|
|
811
|
+
"whatsappqroverlay.LinkADevice": "链接设备",
|
|
812
|
+
"whatsappqroverlay.PointYourPhoneAt": "将手机对准此二维码",
|
|
813
|
+
"whatsappqroverlay.QRRefreshesAutomat": "二维码自动刷新(约15秒)",
|
|
814
|
+
"portfolioheader.ConnectViaElizaCl": "通过 Eliza Cloud 连接或配置自定义 BSC RPC 提供商\n (NodeReal / QuickNode)以启用交易。",
|
|
815
|
+
"tokenstable.nativeGas": "天然气",
|
|
816
|
+
"activityfeed.Activity": "活动",
|
|
817
|
+
"activityfeed.NoEventsYet": "还没有活动",
|
|
818
|
+
"chatcontent.WaitingForMessages": "等待消息...",
|
|
819
|
+
"chatticker.chat": "聊天",
|
|
820
|
+
"idlecontent.Thought": "想法",
|
|
821
|
+
"idlecontent.AgentIsIdleAwai": "代理闲置 — 等待活动...",
|
|
822
|
+
"idlecontent.RecentActions": "最近的行动",
|
|
823
|
+
"statusbar.Src": "来源:",
|
|
824
|
+
"statusbar.Active": "(积极的)",
|
|
825
|
+
"statusbar.https": "https://...",
|
|
826
|
+
"statusbar.PopOutStreamView": "弹出流视图",
|
|
827
|
+
"streamsettings.StreamSettings": "码流设置",
|
|
828
|
+
"streamsettings.SelectWhereToBroa": "选择广播地点。要切换频道,请停止流媒体\n 首先。",
|
|
829
|
+
"streamsettings.NoStreamingDestina": "未配置流媒体目的地。",
|
|
830
|
+
"streamsettings.InstallAStreaming": "安装流媒体插件(Twitch、YouTube、Retake.tv、Custom\n RTMP)通过插件选项卡。",
|
|
831
|
+
"streamsettings.StreamIsLiveSt": "⚠ 直播正在进行中。停止直播以切换频道。",
|
|
832
|
+
"streamsettings.ToggleAndConfigure": "切换和配置显示在流顶部的小部件。",
|
|
833
|
+
"streamsettings.ResetDefaults": "重置默认值",
|
|
834
|
+
"streamsettings.NoWidgetsAvailable": "没有可用的小部件。重新加载流选项卡。",
|
|
835
|
+
"streamsettings.ChooseWhatContent": "选择捕获和广播的内容。",
|
|
836
|
+
"streamsettings.Use": "使用",
|
|
837
|
+
"streamsettings.CustomURLsMustSta": "自定义 URL 必须以“http://”或“https://”开头。",
|
|
838
|
+
"streamsettings.httpsYourUrlCom": "https://your-url.com",
|
|
839
|
+
"streamterminal.TERMINAL": "终端",
|
|
840
|
+
"streamterminal.WaitingForTerminal": "等待终端活动...",
|
|
841
|
+
"streamvoiceconfig.Voice": "嗓音",
|
|
842
|
+
"streamvoiceconfig.NoKey": "(无钥匙)",
|
|
843
|
+
"streamvoiceconfig.Speaking": "请讲...",
|
|
844
|
+
"streamvoiceconfig.Test": "测试",
|
|
845
|
+
"streamvoiceconfig.NoAPIKeyConfigure": "未配置 API 密钥",
|
|
846
|
+
"streamvoiceconfig.TestTTSOnStream": "实时测试 TTS",
|
|
847
|
+
"actiontickerwidget.actions": "行动",
|
|
848
|
+
"peonhudwidget.events": "事件",
|
|
849
|
+
"elizaclouddashboard.AgentName": "代理名称",
|
|
850
|
+
"elizaclouddashboard.Deploy": "部署",
|
|
851
|
+
"settings.sections.aimodel.label": "AI 模型",
|
|
852
|
+
"settings.sections.aimodel.desc": "提供商和模型设置",
|
|
853
|
+
"settings.sections.cloud.desc": "管理您的云端代理和资源",
|
|
854
|
+
"settings.sections.codingagents.label": "编程代理",
|
|
855
|
+
"settings.sections.codingagents.desc": "代理偏好、模型和权限",
|
|
856
|
+
"settings.sections.walletrpc.label": "钱包与 RPC",
|
|
857
|
+
"settings.sections.walletrpc.desc": "链上 RPC 提供商和 API 密钥",
|
|
858
|
+
"settings.sections.media.label": "媒体",
|
|
859
|
+
"settings.sections.media.desc": "图像、视频和视觉提供商",
|
|
860
|
+
"settings.sections.voice.label": "语音",
|
|
861
|
+
"settings.sections.voice.desc": "文本转语音和转录",
|
|
862
|
+
"settings.sections.permissions.label": "权限",
|
|
863
|
+
"settings.sections.permissions.desc": "功能和访问控制",
|
|
864
|
+
"settings.sections.updates.label": "更新",
|
|
865
|
+
"settings.sections.updates.desc": "软件更新设置",
|
|
866
|
+
"settings.sections.advanced.desc": "导出、导入和危险操作",
|
|
867
|
+
"settings.change": "更换",
|
|
868
|
+
"settings.browse": "浏览",
|
|
869
|
+
"settings.aiModel": "AI 模型",
|
|
870
|
+
"settings.aiModelDescription": "提供商与模型设置",
|
|
871
|
+
"settings.codingAgents": "编程代理",
|
|
872
|
+
"settings.codingAgentsDescription": "为多代理任务执行配置 AI 编程代理。",
|
|
873
|
+
"settings.walletRpc": "钱包与 RPC",
|
|
874
|
+
"settings.walletRpcDescription": "配置用于交易和市场数据的链 RPC 提供商。",
|
|
875
|
+
"settings.mediaGeneration": "媒体",
|
|
876
|
+
"settings.mediaDescription": "图像、视频和视觉提供商",
|
|
877
|
+
"settings.speechInterface": "语音",
|
|
878
|
+
"settings.speechDescription": "文本转语音与转录",
|
|
879
|
+
"settings.permissionsCapabilities": "权限",
|
|
880
|
+
"settings.permissionsDescription": "功能和访问控制",
|
|
881
|
+
"settings.softwareUpdates": "更新",
|
|
882
|
+
"settings.updatesDescription": "软件更新设置",
|
|
883
|
+
"settings.advancedSettings": "高级",
|
|
884
|
+
"settings.advancedDescription": "导出、导入和危险操作",
|
|
885
|
+
"settings.noMatchingSettingsDescription": "请尝试更宽泛的搜索,或清除当前筛选条件。",
|
|
886
|
+
"settingsview.JumpToSection": "跳转到分区",
|
|
887
|
+
"settingsview.NoMatchingSettings": "没有匹配的设置",
|
|
888
|
+
"settingsview.ClearSearch": "清除搜索",
|
|
889
|
+
"providerswitcher.noAiProvidersAvailable": "当前没有可用的 AI 提供商。请在",
|
|
890
|
+
"providerswitcher.plugins": "插件",
|
|
891
|
+
"providerswitcher.page": "页面中启用一个。",
|
|
892
|
+
"providerswitcher.selectAIProvider": "选择 AI 提供商",
|
|
893
|
+
"providerswitcher.chooseYourPreferredProvider": "选择你偏好的推理提供商。",
|
|
894
|
+
"providerswitcher.loggedIntoElizaCloud": "已登录 Eliza Cloud",
|
|
895
|
+
"providerswitcher.disconnecting": "正在断开连接...",
|
|
896
|
+
"providerswitcher.disconnect": "断开连接",
|
|
897
|
+
"providerswitcher.credits": "额度:",
|
|
898
|
+
"providerswitcher.topUp": "充值",
|
|
899
|
+
"providerswitcher.smallModelDescription": "适合简单任务的快速模型",
|
|
900
|
+
"providerswitcher.largeModelDescription": "适合复杂推理的强大模型",
|
|
901
|
+
"providerswitcher.smallModelLabel": "小模型",
|
|
902
|
+
"providerswitcher.largeModelLabel": "大模型",
|
|
903
|
+
"providerswitcher.savingRestarting": "正在保存并重启...",
|
|
904
|
+
"providerswitcher.savedRestartingAgent": "已保存,正在重启代理...",
|
|
905
|
+
"providerswitcher.waitingForBrowser": "正在等待浏览器登录...",
|
|
906
|
+
"providerswitcher.logInToElizaCloud": "登录 Eliza Cloud",
|
|
907
|
+
"providerswitcher.opensABrowserWindow": "将打开浏览器窗口以完成登录。",
|
|
908
|
+
"providerswitcher.piSettings": "Pi(pi-ai)设置",
|
|
909
|
+
"providerswitcher.usesLocalCredentials": "使用 ~/.pi/agent/auth.json 中的凭证。",
|
|
910
|
+
"providerswitcher.primaryModelOverride": "主模型覆盖",
|
|
911
|
+
"providerswitcher.usePiDefaultModel": "使用 pi 默认模型",
|
|
912
|
+
"providerswitcher.customModelSpec": "自定义模型规格",
|
|
913
|
+
"providerswitcher.providerModelPlaceholder": "provider/model(例如 ollama/qwen2.5)",
|
|
914
|
+
"providerswitcher.saveInProgress": "正在保存...",
|
|
915
|
+
"providerswitcher.save": "保存",
|
|
916
|
+
"providerswitcher.elizaCloud": "Eliza Cloud",
|
|
917
|
+
"providerswitcher.piAi": "Pi(pi-ai)",
|
|
918
|
+
"providerswitcher.claudeSubscription": "Claude 订阅",
|
|
919
|
+
"providerswitcher.chatgptSubscription": "ChatGPT 订阅",
|
|
920
|
+
"apikeyconfig.fetchModels": "获取模型",
|
|
921
|
+
"apikeyconfig.fetching": "获取中...",
|
|
922
|
+
"apikeyconfig.loadedModels": "已加载 {{count}} 个模型",
|
|
923
|
+
"apikeyconfig.error": "错误:{{message}}",
|
|
924
|
+
"apikeyconfig.failed": "失败",
|
|
925
|
+
"apikeyconfig.saving": "正在保存...",
|
|
926
|
+
"apikeyconfig.save": "保存",
|
|
927
|
+
"apikeyconfig.saved": "已保存",
|
|
928
|
+
"subscriptionstatus.PasteCallbackUrlFromLocalhost": "请粘贴 localhost:1455 页面中的回调 URL。",
|
|
929
|
+
"subscriptionstatus.CallbackCodeTooLong": "回调代码过长。",
|
|
930
|
+
"subscriptionstatus.InvalidCallbackUrl": "回调 URL 无效。",
|
|
931
|
+
"subscriptionstatus.ExpectedCallbackUrl": "应为 localhost:1455/auth/callback URL。",
|
|
932
|
+
"subscriptionstatus.CallbackUrlMissingCode": "回调 URL 缺少 ?code= 参数。",
|
|
933
|
+
"subscriptionstatus.FailedToSaveSetupToken": "保存设置令牌失败。",
|
|
934
|
+
"subscriptionstatus.FailedToSaveTokenError": "保存令牌失败:{{message}}",
|
|
935
|
+
"subscriptionstatus.DisconnectFailedError": "断开连接失败:{{message}}",
|
|
936
|
+
"subscriptionstatus.FailedToGetAuthUrl": "获取认证 URL 失败",
|
|
937
|
+
"subscriptionstatus.FailedToStartLogin": "启动登录失败:{{message}}",
|
|
938
|
+
"subscriptionstatus.ExchangeFailed": "交换失败",
|
|
939
|
+
"subscriptionstatus.ExchangeFailedError": "交换失败:{{message}}",
|
|
940
|
+
"subscriptionstatus.NoAuthUrlReturned": "登录流程未返回认证 URL",
|
|
941
|
+
"subscriptionstatus.ConnectedToClaudeSubscription": "已连接到 Claude 订阅",
|
|
942
|
+
"subscriptionstatus.ClaudeSubscriptionTitle": "Claude 订阅",
|
|
943
|
+
"subscriptionstatus.Disconnecting": "正在断开连接...",
|
|
944
|
+
"subscriptionstatus.Disconnect": "断开连接",
|
|
945
|
+
"subscriptionstatus.Saving": "正在保存...",
|
|
946
|
+
"subscriptionstatus.SaveToken": "保存令牌",
|
|
947
|
+
"subscriptionstatus.ConnectedToChatGPTSubscription": "已连接到 ChatGPT 订阅",
|
|
948
|
+
"subscriptionstatus.ChatGPTSubscriptionTitle": "ChatGPT 订阅",
|
|
949
|
+
"subscriptionstatus.Completing": "正在完成...",
|
|
950
|
+
"elizaclouddashboard.ElizaCloud": "Eliza Cloud",
|
|
951
|
+
"elizaclouddashboard.NotAvailable": "不可用",
|
|
952
|
+
"elizaclouddashboard.ElizaCloudNotConnectedSettings": "未连接至 Eliza Cloud - 请在设置 -> AI 模型中配置",
|
|
953
|
+
"elizaclouddashboard.NoSetupNeeded": "无需设置",
|
|
954
|
+
"codingagentsettingssection.NoSupportedCLIs": "No supported coding agent CLIs detected. Install at least one of: Claude, Gemini, Codex, or Aider.",
|
|
955
|
+
"codingagentsettingssection.Availability": "Availability:",
|
|
956
|
+
"codingagentsettingssection.Installed": "Installed",
|
|
957
|
+
"codingagentsettingssection.NotInstalled": "Not installed",
|
|
958
|
+
"codingagentsettingssection.Unknown": "Unknown",
|
|
959
|
+
"codingagentsettingssection.AgentUsedWhenNoEStrategyFixed": "Always use the selected default agent type when none is specified.",
|
|
960
|
+
"codingagentsettingssection.AgentUsedWhenNoEStrategyRanked": "Automatically select the best-performing installed agent based on success rate and stall metrics.",
|
|
961
|
+
"codingagentsettingssection.AppliesToAllNewlySpawned": " — applies to all newly spawned agents unless overridden per-spawn.",
|
|
962
|
+
"codingagentsettingssection.ModelsFetched": "Models fetched from provider API. These are preferences — the CLI may override based on availability.",
|
|
963
|
+
"codingagentsettingssection.UsingFallback": "Using fallback model list — configure your API key to see all available models.",
|
|
964
|
+
"codingagentsettingssection.PresetReadOnly": "Read Only",
|
|
965
|
+
"codingagentsettingssection.PresetReadOnlyDesc": "Read-only tools only",
|
|
966
|
+
"codingagentsettingssection.PresetStandard": "Standard",
|
|
967
|
+
"codingagentsettingssection.PresetStandardDesc": "Read + write, asks for shell/network",
|
|
968
|
+
"codingagentsettingssection.PresetPermissive": "Permissive",
|
|
969
|
+
"codingagentsettingssection.PresetPermissiveDesc": "File ops auto-approved, asks for shell",
|
|
970
|
+
"codingagentsettingssection.PresetAutonomous": "Autonomous",
|
|
971
|
+
"codingagentsettingssection.PresetAutonomousDesc": "All tools auto-approved",
|
|
972
|
+
"mediasettingssection.ImageGeneration": "Image Generation",
|
|
973
|
+
"mediasettingssection.VideoGeneration": "Video Generation",
|
|
974
|
+
"mediasettingssection.AudioMusic": "Audio / Music",
|
|
975
|
+
"mediasettingssection.VisionAnalysis": "Vision (Analysis)",
|
|
976
|
+
"mediasettingssection.ProviderHintNoSetup": "No setup needed",
|
|
977
|
+
"mediasettingssection.ProviderHintFalImage": "Flux 2, Kling, Recraft, Grok",
|
|
978
|
+
"mediasettingssection.ProviderHintOpenAIImage": "DALL-E 3",
|
|
979
|
+
"mediasettingssection.ProviderHintGoogleImage": "Imagen 3",
|
|
980
|
+
"mediasettingssection.ProviderHintXAIAurora": "Aurora",
|
|
981
|
+
"mediasettingssection.ProviderHintFalVideo": "Veo 3, Sora 2, Kling 3, Minimax",
|
|
982
|
+
"mediasettingssection.ProviderHintOpenAIVideo": "Sora",
|
|
983
|
+
"mediasettingssection.ProviderHintGoogleVideo": "Veo",
|
|
984
|
+
"mediasettingssection.ProviderHintSuno": "Music generation",
|
|
985
|
+
"mediasettingssection.ProviderHintElevenLabs": "Sound effects",
|
|
986
|
+
"mediasettingssection.ProviderHintOpenAIVision": "GPT-4o Vision",
|
|
987
|
+
"mediasettingssection.ProviderHintGoogleVision": "Gemini Vision",
|
|
988
|
+
"mediasettingssection.ProviderHintAnthropicVision": "Claude Vision",
|
|
989
|
+
"mediasettingssection.ProviderHintXAIVision": "Grok Vision",
|
|
990
|
+
"mediasettingssection.Configured": "Configured",
|
|
991
|
+
"mediasettingssection.NeedsSetup": "Needs Setup",
|
|
992
|
+
"mediasettingssection.ApiKeySetLeaveBlank": "API key set — leave blank to keep",
|
|
993
|
+
"mediasettingssection.EnterApiKey": "Enter API key...",
|
|
994
|
+
"mediasettingssection.FalApiKey": "FAL API Key",
|
|
995
|
+
"mediasettingssection.OpenAIApiKey": "OpenAI API Key",
|
|
996
|
+
"mediasettingssection.GoogleApiKey": "Google API Key",
|
|
997
|
+
"mediasettingssection.XAIApiKey": "xAI API Key",
|
|
998
|
+
"mediasettingssection.SunoApiKey": "Suno API Key",
|
|
999
|
+
"mediasettingssection.ElevenLabsApiKey": "ElevenLabs API Key",
|
|
1000
|
+
"mediasettingssection.AnthropicApiKey": "Anthropic API Key",
|
|
1001
|
+
"streamsettings.DisableWidget": "Disable widget",
|
|
1002
|
+
"streamsettings.EnableWidget": "Enable widget",
|
|
1003
|
+
"streamsettings.ConfigExpanded": "▲ config",
|
|
1004
|
+
"streamsettings.ConfigCollapsed": "▼ config",
|
|
1005
|
+
"streamsettings.CaptureStreamBrowserTab": "Capture the stream browser tab (default)",
|
|
1006
|
+
"streamsettings.NoGameActive": "No game active",
|
|
1007
|
+
"streamsettings.BroadcastFromCustomUrl": "Broadcast from a custom HTTP(S) URL",
|
|
1008
|
+
"streamsettings.StopStreamToChangeChannel": "Stop stream to change channel",
|
|
1009
|
+
"streamsettings.NavChannel": "Channel",
|
|
1010
|
+
"streamsettings.NavOverlays": "Overlays",
|
|
1011
|
+
"streamsettings.NavSource": "Source",
|
|
1012
|
+
"onboarding.stepName.wakeUp": "初始化",
|
|
1013
|
+
"onboarding.stepSub.wakeUp": "系统启动",
|
|
1014
|
+
"onboarding.stepSub.connection": "神经链接",
|
|
1015
|
+
"onboarding.stepName.senses": "权限",
|
|
1016
|
+
"onboarding.stepSub.senses": "系统权限",
|
|
1017
|
+
"onboarding.stepName.activate": "启动",
|
|
1018
|
+
"onboarding.welcomeTitle": "欢迎使用 Milady",
|
|
1019
|
+
"onboarding.welcomeSubtitle": "你的自主 AI 伙伴等待你。",
|
|
1020
|
+
"onboarding.createNewAgent": "创建新代理",
|
|
1021
|
+
"onboarding.restoreFromBackup": "从备份恢复",
|
|
1022
|
+
"onboarding.importAgent": "导入代理",
|
|
1023
|
+
"onboarding.importDesc": "选择一个 <code>.eliza-agent</code> 导出文件并输入解密密码。",
|
|
1024
|
+
"onboarding.decryptionPasswordPlaceholder": "解密密码...",
|
|
1025
|
+
"onboarding.selectFileError": "导入前请先选择导出文件。",
|
|
1026
|
+
"onboarding.passwordMinError": "密码至少需要 4 个字符。",
|
|
1027
|
+
"onboarding.cancel": "取消",
|
|
1028
|
+
"onboarding.importing": "导入中...",
|
|
1029
|
+
"onboarding.restore": "恢复",
|
|
1030
|
+
"onboarding.back": "← 返回",
|
|
1031
|
+
"onboarding.hostingTitle": "Hosting",
|
|
1032
|
+
"onboarding.hostingQuestion": "Where should Milady run?",
|
|
1033
|
+
"onboarding.hostingLocal": "Local",
|
|
1034
|
+
"onboarding.hostingLocalDesc": "Run the backend on this machine.",
|
|
1035
|
+
"onboarding.hostingCloud": "Cloud",
|
|
1036
|
+
"onboarding.hostingCloudDesc": "Use Eliza Cloud or connect to a remote backend.",
|
|
1037
|
+
"onboarding.cloudQuestion": "Choose a cloud setup",
|
|
1038
|
+
"onboarding.cloudManaged": "Eliza Cloud",
|
|
1039
|
+
"onboarding.cloudManagedDesc": "Provision a managed container and connect to it.",
|
|
1040
|
+
"onboarding.cloudRemote": "Remote Milady",
|
|
1041
|
+
"onboarding.cloudRemoteDesc": "Connect to an existing backend with its address and access key.",
|
|
1042
|
+
"onboarding.remoteTitle": "Remote Milady",
|
|
1043
|
+
"onboarding.remoteAddress": "Backend address",
|
|
1044
|
+
"onboarding.remoteAddressPlaceholder": "https://my-milady.example.com",
|
|
1045
|
+
"onboarding.remoteAccessKey": "Access key",
|
|
1046
|
+
"onboarding.remoteAccessKeyPlaceholder": "Paste the MILADY_API_TOKEN value",
|
|
1047
|
+
"onboarding.remoteConnect": "Connect remote backend",
|
|
1048
|
+
"onboarding.remoteConnectedDesc": "Connected to your remote Milady backend. Continue configuring it here.",
|
|
1049
|
+
"onboarding.neuralLinkTitle": "神经链接",
|
|
1050
|
+
"onboarding.chooseProvider": "选择 AI 提供商",
|
|
1051
|
+
"onboarding.change": "更换",
|
|
1052
|
+
"onboarding.login": "登录",
|
|
1053
|
+
"onboarding.apiKey": "API 密钥",
|
|
1054
|
+
"onboarding.connected": "已连接",
|
|
1055
|
+
"onboarding.connecting": "连接中...",
|
|
1056
|
+
"onboarding.connectAccount": "连接账户",
|
|
1057
|
+
"onboarding.freeCredits": "免费额度,立即开始。",
|
|
1058
|
+
"onboarding.useExistingKey": "如果你已有密钥,请在此使用。",
|
|
1059
|
+
"onboarding.getOneHere": "在此获取",
|
|
1060
|
+
"onboarding.setupToken": "设置令牌",
|
|
1061
|
+
"onboarding.oauthLogin": "OAuth 登录",
|
|
1062
|
+
"onboarding.enterSetupToken": "输入你的设置令牌",
|
|
1063
|
+
"onboarding.setupTokenInstructions": "如何获取设置令牌:\n\n• 方法 A:在终端运行 claude setup-token\n\n• 方法 B:前往 claude.ai/settings/api → \"Claude Code\" → \"Use setup token\"",
|
|
1064
|
+
"onboarding.connectedToClaude": "已连接到 Claude",
|
|
1065
|
+
"onboarding.claudeSubscriptionReady": "你的 Claude 订阅已就绪。",
|
|
1066
|
+
"onboarding.loginWithAnthropic": "使用 Claude 登录",
|
|
1067
|
+
"onboarding.requiresClaudeSub": "需要 Claude Pro 或 Max 订阅。",
|
|
1068
|
+
"onboarding.authCodeInstructions": "登录后你将收到授权码。\n请复制并粘贴到下方。",
|
|
1069
|
+
"onboarding.pasteAuthCode": "粘贴授权码...",
|
|
1070
|
+
"onboarding.connect": "连接",
|
|
1071
|
+
"onboarding.connectedToChatGPT": "已连接到 ChatGPT",
|
|
1072
|
+
"onboarding.chatgptSubscriptionReady": "你的 ChatGPT 订阅已就绪。",
|
|
1073
|
+
"onboarding.loginWithOpenAI": "使用 OpenAI 登录",
|
|
1074
|
+
"onboarding.requiresChatGPTSub": "需要 ChatGPT Plus 或 Pro 订阅。",
|
|
1075
|
+
"onboarding.almostThere": "即将完成!",
|
|
1076
|
+
"onboarding.redirectInstructions": "登录后,浏览器会重定向到",
|
|
1077
|
+
"onboarding.copyEntireUrl": "。请从浏览器地址栏复制完整的 URL。",
|
|
1078
|
+
"onboarding.completeLogin": "完成登录",
|
|
1079
|
+
"onboarding.startOver": "重新开始",
|
|
1080
|
+
"onboarding.enterApiKey": "输入你的 API 密钥...",
|
|
1081
|
+
"onboarding.keyFormatWarning": "密钥格式似乎不正确,请再次检查。",
|
|
1082
|
+
"onboarding.ollamaNoConfig": "无需配置。Ollama 将自动使用。",
|
|
1083
|
+
"onboarding.primaryModelOptional": "主模型(可选)",
|
|
1084
|
+
"onboarding.useDefaultModel": "使用默认模型",
|
|
1085
|
+
"onboarding.customModel": "自定义模型...",
|
|
1086
|
+
"onboarding.piCredentialsHint": "使用 ~/.pi/agent/auth.json 中的凭证。",
|
|
1087
|
+
"onboarding.piDropdownHint": " 从下拉列表中选择或自定义模型。",
|
|
1088
|
+
"onboarding.piManualHint": " 如需覆盖,请手动输入 provider/model。",
|
|
1089
|
+
"onboarding.selectModel": "选择模型",
|
|
1090
|
+
"onboarding.confirm": "确认",
|
|
1091
|
+
"onboarding.loginSessionExpired": "登录会话已过期。点击「重新开始」再试。",
|
|
1092
|
+
"onboarding.networkError": "网络错误 — 请检查连接后重试。",
|
|
1093
|
+
"onboarding.systemAccessTitle": "系统权限",
|
|
1094
|
+
"onboarding.readyTitle": "就绪",
|
|
1095
|
+
"onboarding.companionReady": "{{name}} 已就绪。",
|
|
1096
|
+
"onboarding.allConfigured": "所有系统已配置完毕。你可以随时在设置中调整。",
|
|
1097
|
+
"onboarding.enter": "进入",
|
|
1098
|
+
"onboarding.recommended": "推荐",
|
|
1099
|
+
"nav.cloud": "Cloud",
|
|
1100
|
+
"elizaclouddashboard.ScaleYourAgents": "Scale your agents to the cloud for 24/7 autonomy, advanced reasoning, and seamless cross-platform presence.",
|
|
1101
|
+
"elizaclouddashboard.Connecting": "Connecting...",
|
|
1102
|
+
"elizaclouddashboard.ConnectElizaCloud": "Connect Eliza Cloud",
|
|
1103
|
+
"elizaclouddashboard.NewToElizaCloud": "New to Eliza Cloud?",
|
|
1104
|
+
"elizaclouddashboard.LearnMore": "Learn more",
|
|
1105
|
+
"elizaclouddashboard.CloudDashboard": "Cloud Dashboard",
|
|
1106
|
+
"elizaclouddashboard.ManageInstance": "Manage your Eliza Cloud instance and resources.",
|
|
1107
|
+
"elizaclouddashboard.Refresh": "Refresh",
|
|
1108
|
+
"elizaclouddashboard.Disconnect": "Disconnect",
|
|
1109
|
+
"elizaclouddashboard.Disconnecting": "Disconnecting...",
|
|
1110
|
+
"elizaclouddashboard.CloudAgents": "Cloud Agents",
|
|
1111
|
+
"elizaclouddashboard.CloudAgentsDesc": "Your autonomous agents running on Eliza Cloud infrastructure.",
|
|
1112
|
+
"elizaclouddashboard.DeployNewAgent": "Deploy New Agent",
|
|
1113
|
+
"elizaclouddashboard.InitializeInstance": "Initialize a new autonomous cloud instance.",
|
|
1114
|
+
"elizaclouddashboard.UsageMetrics": "Usage & Metrics",
|
|
1115
|
+
"elizaclouddashboard.UsageMetricsDesc": "Real-time resource utilization across your cloud instances.",
|
|
1116
|
+
"elizaclouddashboard.MetricsPlaceholder": "Usage metrics will appear here once agents are deployed.",
|
|
1117
|
+
"elizaclouddashboard.CreditWallet": "Credit Wallet",
|
|
1118
|
+
"elizaclouddashboard.AvailableBalance": "Available Balance",
|
|
1119
|
+
"elizaclouddashboard.TopUpCredits": "Top Up Credits",
|
|
1120
|
+
"elizaclouddashboard.History": "History",
|
|
1121
|
+
"elizaclouddashboard.Pricing": "Pricing",
|
|
1122
|
+
"elizaclouddashboard.AccountDetails": "Account Details",
|
|
1123
|
+
"elizaclouddashboard.CloudUserID": "Cloud User ID",
|
|
1124
|
+
"elizaclouddashboard.SecurityStatus": "Security Status",
|
|
1125
|
+
"elizaclouddashboard.Secure": "Secure",
|
|
1126
|
+
"elizaclouddashboard.AdvancedDashboard": "Advanced External Dashboard",
|
|
1127
|
+
"onboarding.stepName.rpc": "RPC",
|
|
1128
|
+
"onboarding.stepSub.rpc": "Blockchain access",
|
|
1129
|
+
"onboarding.next": "Next",
|
|
1130
|
+
"onboarding.rpcTitle": "Blockchain Access",
|
|
1131
|
+
"onboarding.rpcQuestion": "Configure blockchain RPC providers?",
|
|
1132
|
+
"onboarding.rpcDesc": "RPC providers give your agent access to blockchain data for wallet & trading. You can skip this and configure it later in Settings.",
|
|
1133
|
+
"onboarding.rpcElizaCloud": "Use Eliza Cloud",
|
|
1134
|
+
"onboarding.rpcElizaCloudDesc": "All chains included. No API keys needed.",
|
|
1135
|
+
"onboarding.rpcBringKeys": "Bring Your Own Keys",
|
|
1136
|
+
"onboarding.rpcAlchemyKey": "Alchemy API Key",
|
|
1137
|
+
"onboarding.rpcHeliusKey": "Helius API Key (Solana)",
|
|
1138
|
+
"onboarding.rpcBirdeyeKey": "Birdeye API Key (Solana)",
|
|
1139
|
+
"onboarding.rpcSkip": "Skip for now",
|
|
1140
|
+
"onboarding.rpcConnectedCloud": "Connected via Eliza Cloud",
|
|
1141
|
+
"elizaclouddashboard.CloudBilling": "云端计费",
|
|
1142
|
+
"elizaclouddashboard.CloudBillingDesc": "充值积分、管理自动充值,并把计费留在设置页内完成。",
|
|
1143
|
+
"elizaclouddashboard.InAppBillingReady": "可用的 Eliza Cloud 计费 API 都会显示在这里,不会先把你跳回控制台。",
|
|
1144
|
+
"elizaclouddashboard.CreditsHealthy": "正常",
|
|
1145
|
+
"elizaclouddashboard.CreditsLow": "余额偏低",
|
|
1146
|
+
"elizaclouddashboard.CreditsCritical": "严重",
|
|
1147
|
+
"elizaclouddashboard.AutoTopUp": "自动充值",
|
|
1148
|
+
"elizaclouddashboard.AutoTopUpDesc": "当余额低于阈值时自动补充积分。",
|
|
1149
|
+
"elizaclouddashboard.ToggleAutoTopUp": "切换自动充值",
|
|
1150
|
+
"elizaclouddashboard.AutoTopUpPaymentReady": "已保存支付方式,因此可以启用自动充值。",
|
|
1151
|
+
"elizaclouddashboard.AutoTopUpNeedsPaymentMethod": "启用自动充值前,请先完成一次银行卡支付以保存支付方式。",
|
|
1152
|
+
"elizaclouddashboard.AutoTopUpThreshold": "阈值",
|
|
1153
|
+
"elizaclouddashboard.AutoTopUpAmount": "充值金额",
|
|
1154
|
+
"elizaclouddashboard.AutoTopUpLimits": "金额 ${{minAmount}}-${{maxAmount}} · 阈值 ${{minThreshold}}-${{maxThreshold}}",
|
|
1155
|
+
"elizaclouddashboard.SaveBillingSettings": "保存计费设置",
|
|
1156
|
+
"elizaclouddashboard.TopUpCreditsDesc": "银行卡支付会安全打开 Stripe,而加密货币支付会直接从此面板使用云端支付提供方。",
|
|
1157
|
+
"elizaclouddashboard.OpenBrowserBilling": "在浏览器中打开计费",
|
|
1158
|
+
"elizaclouddashboard.CustomAmount": "自定义金额",
|
|
1159
|
+
"elizaclouddashboard.PayWithCard": "银行卡支付",
|
|
1160
|
+
"elizaclouddashboard.PayWithCrypto": "加密货币支付",
|
|
1161
|
+
"elizaclouddashboard.CheckoutProviderNote": "由于 Eliza Cloud 目前返回的是托管结账 URL,所以 Stripe 仍然是托管模式。加密货币报价会保留在应用内,并可在需要时打开托管支付页面。",
|
|
1162
|
+
"elizaclouddashboard.CryptoTopUp": "加密货币充值",
|
|
1163
|
+
"elizaclouddashboard.CryptoTopUpDesc": "生成加密货币支付链接,并在报价包含原始转账指令时从代理钱包付款。",
|
|
1164
|
+
"elizaclouddashboard.AgentWalletFunded": "已检测到有资金的代理钱包。先请求报价,当云端报价包含直接转账信息时即可从钱包付款。",
|
|
1165
|
+
"elizaclouddashboard.AgentWalletDetected": "已检测到代理钱包。使用加密货币支付前,请先为钱包充值或加载余额。",
|
|
1166
|
+
"elizaclouddashboard.NoAgentWalletDetected": "尚未检测到代理钱包。使用加密货币充值前,请先在设置中生成或导入钱包。",
|
|
1167
|
+
"elizaclouddashboard.CryptoQuoteReady": "加密货币报价已就绪",
|
|
1168
|
+
"elizaclouddashboard.OpenHostedCryptoCheckout": "打开托管加密货币结账",
|
|
1169
|
+
"elizaclouddashboard.PayFromAgentWallet": "从代理钱包付款",
|
|
1170
|
+
"elizaclouddashboard.CryptoQuoteHint": "请求加密货币报价以获取来自 Eliza Cloud 的托管支付链接。只有当报价包含原始转账详情时,才会启用代理钱包直付。",
|
|
1171
|
+
"elizaclouddashboard.MinimumTopUp": "最低充值:${{amount}}",
|
|
1172
|
+
"elizaclouddashboard.Enabled": "已启用",
|
|
1173
|
+
"elizaclouddashboard.Disabled": "已禁用",
|
|
1174
|
+
"elizaclouddashboard.ElizaCloudNotConnected": "Eliza Cloud 尚未连接。",
|
|
1175
|
+
"config-field.Required": "必填",
|
|
1176
|
+
"config-field.Configured": "已配置",
|
|
1177
|
+
"config-field.Times": "×",
|
|
1178
|
+
"voiceconfigview.LoadingVoiceConfig": "正在加载语音配置...",
|
|
1179
|
+
"voiceconfigview.TTSProvider": "TTS 提供方",
|
|
1180
|
+
"voiceconfigview.APISource": "API 来源",
|
|
1181
|
+
"voiceconfigview.ElevenLabsAPIKey": "ElevenLabs API 密钥",
|
|
1182
|
+
"voiceconfigview.GetYourKeyAt": "在此获取密钥",
|
|
1183
|
+
"voiceconfigview.elevenlabsIo": "elevenlabs.io",
|
|
1184
|
+
"voiceconfigview.FastPathDefaultE": "快速路径默认 ElevenLabs 模型:",
|
|
1185
|
+
"voiceconfigview.Voice": "声音",
|
|
1186
|
+
"voiceconfigview.Stop": "停止",
|
|
1187
|
+
"voiceconfigview.ServedViaElizaCloud": "由 Eliza Cloud 提供",
|
|
1188
|
+
"voiceconfigview.RequiresApiKey": "需要 API 密钥",
|
|
1189
|
+
"voiceconfigview.NoApiKeyNeeded": "不需要 API 密钥",
|
|
1190
|
+
"voiceconfigview.Playing": "播放中...",
|
|
1191
|
+
"voiceconfigview.TestVoice": "测试 {{name}}",
|
|
1192
|
+
"voiceconfigview.EdgeTTSUsesMicros": "Edge TTS 使用平台内置的 Microsoft 语音。",
|
|
1193
|
+
"voiceconfigview.SimpleVoiceUsesYo": "Simple Voice 使用系统默认设置,不需要外部 API 密钥。"
|
|
1194
1194
|
}
|