-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathen.json
More file actions
4898 lines (4898 loc) · 309 KB
/
en.json
File metadata and controls
4898 lines (4898 loc) · 309 KB
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
{
"accounts.add.apiDescription": "Paste your API key. The key is stored locally with mode 0600.",
"accounts.add.apiKey": "API key",
"accounts.add.apikey.failed": "Failed to add account.",
"accounts.add.button": "Add account",
"accounts.add.disabledHint": "API-key accounts for this provider are not yet supported.",
"accounts.add.label": "Account name",
"accounts.add.labelPlaceholder": "e.g. Personal, Work",
"accounts.add.oauth.cancelled": "Login cancelled.",
"accounts.add.oauth.codeFailed": "Failed to submit code.",
"accounts.add.oauth.codeHint": "Auto-redirect didn't reach us. Paste the code (or full redirect URL) from the browser.",
"accounts.add.oauth.codePlaceholder": "Paste the code or redirect URL",
"accounts.add.oauth.error": "Login failed.",
"accounts.add.oauth.sessionHint": "Session: {{sessionId}}",
"accounts.add.oauth.sseUnreachable": "Lost connection to the OAuth status stream. Try again.",
"accounts.add.oauth.startFailed": "Failed to start login flow.",
"accounts.add.oauth.starting": "Starting login flow...",
"accounts.add.oauth.submitCode": "Submit code",
"accounts.add.oauth.timeout": "Login timed out. Try again.",
"accounts.add.oauth.waiting": "Waiting for browser... Complete the sign-in there.",
"accounts.add.save": "Add account",
"accounts.add.signIn": "Sign in with {{provider}}",
"accounts.add.subscriptionDescription": "Sign in with your provider to add another account to the rotation pool.",
"accounts.add.title": "Add {{provider}} account",
"accounts.add.tryAgain": "Try again",
"accounts.cancel": "Cancel",
"accounts.delete": "Delete account",
"accounts.delete.confirm": "Remove account",
"accounts.deleteConfirm.description": "Removing the account deletes its stored credential and pool metadata. This cannot be undone.",
"accounts.deleteConfirm.title": "Remove this account?",
"accounts.empty": "No accounts yet - add one to start using this provider.",
"accounts.enabled": "Enabled",
"accounts.enabledToggle": "Account enabled",
"accounts.heading": "Accounts ({{count}})",
"accounts.health.invalid": "Invalid credential",
"accounts.health.needsReauth": "Needs reauth",
"accounts.health.ok": "Healthy",
"accounts.health.rateLimited": "Rate-limited",
"accounts.health.rateLimitedWithReset": "Rate-limited (resets in {{resetIn}})",
"accounts.health.unknown": "Unknown",
"accounts.label.edit": "Account label",
"accounts.label.editTooltip": "Click to rename",
"accounts.lastUsed": "Last used {{lastUsed}}",
"accounts.loading": "Loading accounts...",
"accounts.moveDown": "Move down",
"accounts.moveUp": "Move up",
"accounts.orphan.label": "Orphan metadata",
"accounts.orphan.tooltip": "Pool metadata exists but no on-disk credential was found.",
"accounts.priority.tooltip": "Lower priority value runs first",
"accounts.provider.anthropicApi": "Anthropic API",
"accounts.provider.anthropicSubscription": "Anthropic Claude subscription",
"accounts.provider.deepseekApi": "DeepSeek API",
"accounts.provider.moonshotApi": "Kimi / Moonshot API",
"accounts.provider.openaiApi": "OpenAI API",
"accounts.provider.openaiCodex": "OpenAI Codex subscription",
"accounts.provider.zaiApi": "z.ai API",
"accounts.refresh": "Refresh",
"accounts.source.apiKey": "API key",
"accounts.source.oauth": "OAuth",
"accounts.strategy.choose": "Choose strategy",
"accounts.strategy.label": "Strategy",
"accounts.strategy.leastUsed.description": "Prefer the account with the lowest current usage.",
"accounts.strategy.leastUsed.label": "Least used",
"accounts.strategy.priority.description": "Always prefer the top healthy account.",
"accounts.strategy.priority.label": "Priority",
"accounts.strategy.quotaAware.description": "Skip accounts above 85% utilization.",
"accounts.strategy.quotaAware.label": "Quota-aware",
"accounts.strategy.roundRobin.description": "Alternate across enabled accounts.",
"accounts.strategy.roundRobin.label": "Round-robin",
"accounts.test": "Test",
"accounts.usage.none": "No usage data yet - click Refresh to probe.",
"accounts.usage.session": "Session",
"accounts.usage.session5h": "5h",
"accounts.usage.weekly": "7d",
"advancedpageview.DatabaseDescription": "Tables, media, and vector browser",
"advancedpageview.DesktopDescription": "Native runtime diagnostics, detached windows, file dialogs, clipboard, and shell controls",
"advancedpageview.LogsDescription": "Runtime and service logs",
"advancedpageview.Memories": "Memories",
"advancedpageview.MemoriesDescription": "Memory, fact, and extraction viewer with activity feed",
"advancedpageview.PluginsDescription": "Features and connectors",
"advancedpageview.Relationships": "Relationships",
"advancedpageview.RelationshipsDescription": "Cross-channel people, identities, facts, and relationships",
"advancedpageview.RuntimeDescription": "Deep runtime object introspection and load order",
"advancedpageview.Security": "Security",
"advancedpageview.SecurityDescription": "API keys and credentials vault",
"advancedpageview.Skills": "Skills",
"advancedpageview.SkillsDescription": "Custom agent skills",
"advancedpageview.TrajectoriesDescription": "LLM call history and analysis",
"agent.clearActivity": "Clear activity",
"agent.currentlyPlaying": "Currently playing",
"agent.noGamesAreRunning": "No games are running",
"agent.noRecentActivity": "No recent activity",
"agent.resumeViewer": "Resume viewer",
"agentactivitybox.RunningTool": "Running {{tool}}",
"agentactivitybox.WaitingForInput": "Waiting for input",
"apikeyconfig.error": "Error: {{message}}",
"apikeyconfig.fetchModels": "Fetch Models",
"apikeyconfig.fetching": "Fetching...",
"apikeyconfig.loadedModels": "Loaded {{count}} models",
"appdetails.LaunchFailed": "Could not launch {{name}}: {{message}}",
"appdetails.LaunchedNoViewer": "This app launched without a viewer URL.",
"appsview.ActiveOnly": "Active Only",
"appsview.AppWindowNormal": "App Window Normal",
"appsview.AppWindowPinFailed": "App Window Pin Failed",
"appsview.AppWindowPinned": "App Window Pinned",
"appsview.Auth": "Auth",
"appsview.CurrentGameOpened": "Current game opened in a new tab.",
"appsview.Disabled": "disabled",
"appsview.EmptyCatalogHint": "Refresh the catalog or check back after more app packages are installed.",
"appsview.EmptySearchHint": "Try a broader search, or clear the filter to browse everything in the catalog.",
"appsview.EmptyStateDescription": "Browse and launch apps",
"appsview.EmptyStateTitle": "Select an app to view details",
"appsview.Enabled": "enabled",
"appsview.GameRunning": "Game running",
"appsview.HelperText": "Choose an app tile to inspect launch details, current session state, and available viewer actions.",
"appsview.IframeAuthMissing": "{{name}} requires iframe auth, but no auth payload is configured.",
"appsview.LaunchFailed": "Failed to launch {{name}}: {{message}}",
"appsview.LaunchType": "Launch type",
"appsview.LaunchedNoViewer": "{{name}} launched, but no viewer or URL is configured.",
"appsview.LoadError": "Failed to load apps: {{message}}",
"appsview.Loading": "Loading...",
"appsview.NetworkError": "network error",
"appsview.NoAppsAvailable": "No apps available",
"appsview.NoAppsMatchSearch": "No apps match this search",
"appsview.NoDescriptionAvailable": "No description available.",
"appsview.NoRunningApps": "No app runs are active right now.",
"appsview.NoRunningAppsHint": "Launch a game from the catalog and it will appear here as a reattachable run.",
"appsview.Open": "Open {{name}}",
"appsview.OpenInTab": "Open in Tab",
"appsview.OpenWindowFailed": "Could not open {{name}} in a window.",
"appsview.OpenedInDesktopWindow": "Opened In Desktop Window",
"appsview.OpenedInNewTab": "{{name}} opened in a new tab.",
"appsview.PopupBlocked": "Popup blocked. Allow popups and try again.",
"appsview.PopupBlockedOpen": "Popup blocked while opening {{name}}. Allow popups and try again.",
"appsview.Repository": "Repository",
"appsview.Results": "{{count}} results",
"appsview.ResumeSession": "Resume Session",
"appsview.RunAttention": "Attention needed",
"appsview.Running": "Running",
"appsview.RunningNow": "Running now",
"appsview.Sandbox": "Sandbox",
"appsview.Search": "Search apps",
"appsview.SearchPlaceholder": "Search by name or description",
"appsview.StopFailed": "Stop Failed",
"appsview.Stopped": "Stopped",
"appsview.URL": "URL",
"appsview.Viewer": "Viewer",
"appwindow.LaunchedNoViewer": "This app launched without a viewer URL. Open it from the apps catalog.",
"appwindow.RetryingLaunch": "Retrying launch...",
"aria.advancedNavigation": "Advanced navigation",
"aria.agentVoiceOff": "Agent voice off",
"aria.agentVoiceOn": "Agent voice on",
"aria.attachImage": "Attach image",
"aria.breadcrumb": "Breadcrumb",
"aria.chatMessage": "Chat message",
"aria.chatWorkspace": "Chat workspace",
"aria.closeConsole": "Close console",
"aria.closeConsolePanel": "Close console panel",
"aria.closeNavMenu": "Close navigation menu",
"aria.closePanel": "Close panel",
"aria.databaseViews": "Database views",
"aria.deleteMessage": "Delete message",
"aria.dragOverlay": "Drag overlay",
"aria.editMessage": "Edit message",
"aria.expandChatsPanel": "Expand chats panel",
"aria.documentsUpload": "Knowledge upload controls",
"aria.navMenu": "Navigation menu",
"aria.openChatsPanel": "Open chats panel",
"aria.openNavMenu": "Open navigation menu",
"aria.playMessage": "Play message",
"aria.reconnecting": "Reconnecting",
"aria.searchLogs": "Search logs",
"aria.switchShellView": "Switch shell view",
"aria.toggleTheme": "Toggle theme",
"aria.upload": "Upload",
"automations.chat.assistantLabel": "Automations Assistant",
"automations.chat.collapse": "Collapse assistant",
"automations.chat.errorGeneric": "Something went wrong. Please try again.",
"automations.chat.expand": "Expand assistant",
"automations.chat.placeholder": "Ask me to build a workflow. e.g. \"Send me a Slack message every morning at 9am with today's calendar.\"",
"automations.chat.roleUser": "You",
"automations.collapse": "Collapse automations",
"automations.coordinatorDescriptionPlaceholder": "What should the coordinator do...",
"automations.coordinatorNamePlaceholder": "Coordinator automation name...",
"automations.createCoordinator": "Create coordinator",
"automations.createTask": "Create Task",
"automations.createTaskOrWorkflow": "Create task or workflow",
"automations.editCoordinator": "Edit coordinator",
"automations.editTask": "Edit Task",
"automations.expand": "Expand automations",
"automations.filter.coordinator": "Coordinator",
"automations.filter.scheduled": "Scheduled",
"automations.filterTabsLabel": "Filter automations",
"automations.loadFailed": "Failed to load automations.",
"automations.workflow.activate": "Activate",
"automations.workflow.bannerCloud": "Cloud automations connected",
"automations.workflow.bannerDisabled": "Sign in to Eliza Cloud or enable local automations in Settings",
"automations.workflow.bannerLocalError": "Local automations failed",
"automations.workflow.bannerLocalReady": "Local automations running",
"automations.workflow.bannerLocalStarting": "Starting local automations...",
"automations.workflow.cloudDegradedBody": "Eliza Cloud is unreachable right now. Workflows may be unavailable.",
"automations.workflow.cloudDegradedHeading": "Cloud connection issue",
"automations.workflow.ctaBodyDesktop": "Sign in to Eliza Cloud to sync workflows across devices, or run a local automation engine.",
"automations.workflow.ctaBodyMobile": "Workflows require an Eliza Cloud account on mobile.",
"automations.workflow.ctaEnableLocal": "Enable local automations",
"automations.workflow.ctaHeadingDesktop": "Get started with Workflows",
"automations.workflow.ctaHeadingMobile": "Workflows require Eliza Cloud",
"automations.workflow.dangerZone": "Danger zone",
"automations.workflow.deactivate": "Deactivate",
"automations.workflow.deleteConfirmMessage": "Permanently delete this workflow. This cannot be undone.",
"automations.workflow.deleteConfirmWorkflow": "Delete \"{{name}}\"? This cannot be undone.",
"automations.workflow.deleteFailed": "Failed to delete workflow.",
"automations.workflow.deleteWorkflow": "Delete workflow",
"automations.workflow.detailEmptyBody": "Select a workflow from the sidebar to view its details, or switch to the dashboard to create a new one.",
"automations.workflow.detailEmptyHeading": "No workflow selected",
"automations.workflow.errorDeleteWorkflow": "Failed to delete workflow: {{message}}",
"automations.workflow.errorLoadStatus": "Failed to load workflow status: {{message}}",
"automations.workflow.errorLoadWorkflows": "Failed to load workflows: {{message}}",
"automations.workflow.errorStartSidecar": "Failed to start local workflow runtime: {{message}}",
"automations.workflow.errorUpdateWorkflow": "Failed to update workflow: {{message}}",
"automations.workflow.newWorkflow": "New workflow",
"automations.workflow.noWorkflowsHint": "Ask the assistant to build one for you.",
"automations.workflow.noWorkflowsTitle": "No automations yet",
"automations.workflow.nodeCount": "{{count}} nodes",
"automations.workflow.pillAriaCloudDegraded": "Cloud service issue detected",
"automations.workflow.pillAriaCloudHealthy": "Cloud service healthy",
"automations.workflow.pillAriaLocalReady": "Local service ready",
"automations.workflow.pillAriaLocalStarting": "Local service starting",
"automations.workflow.pillCloudDegraded": "Cloud (issue)",
"automations.workflow.pillCloudHealthy": "Cloud (Eliza)",
"automations.workflow.pillLocalReady": "Local (this device)",
"automations.workflow.pillLocalStarting": "Local (starting…)",
"automations.workflow.startFailed": "Failed to start local automations.",
"automations.workflow.updateStateFailed": "Failed to update workflow state.",
"automations.workflow.workflowListLabel": "Workflow list",
"automations.nameRequired": "Name is required.",
"automations.newCoordinator": "New coordinator",
"automations.newSchedule": "New schedule",
"automations.newTask": "New Task",
"automations.newTaskButton": "+ New task",
"automations.newTextTask": "New Text Task",
"automations.newTriggerButton": "+ New trigger",
"automations.newWorkflowCTA": "+ New Workflow",
"automations.newWorkflowDisabled": "Enable Automations in Settings to create workflows",
"automations.nodeCatalog": "Node Catalog",
"automations.openInWorkflowsTab": "Open in Workflows tab",
"automations.runsWorkflow": "Runs workflow: {{name}}",
"automations.saveCoordinator": "Save coordinator",
"automations.saveTask": "Save Task",
"automations.searchPlaceholder": "Search automations",
"automations.taskCreateFailed": "Failed to create task.",
"automations.taskDeleteFailed": "Failed to delete task.",
"automations.taskDeleteMessage": "Are you sure you want to delete this task?",
"automations.taskDeleteTitle": "Delete task",
"automations.taskLabel": "Task",
"automations.taskName": "Task name...",
"automations.taskUpdateFailed": "Failed to update task.",
"automations.templateCustom.desc": "Describe your own workflow in chat.",
"automations.templateCustom.title": "Custom",
"automations.templateUseButton": "Use template",
"automations.templates.calendarSlack.desc": "Post your day's agenda to Slack each morning.",
"automations.templates.calendarSlack.prompt": "Every weekday at 8am, read today's events from my calendar and post a formatted agenda to my #daily-standup channel in Slack.",
"automations.templates.calendarSlack.title": "Calendar to Slack",
"automations.templates.emailDigest.desc": "Summarize your inbox each morning and post to Slack.",
"automations.templates.emailDigest.prompt": "Every weekday at 9am, read my Gmail inbox from the last 24 hours, summarize the important messages, and post the summary to my #daily channel in Slack.",
"automations.templates.emailDigest.title": "Daily Email Digest",
"automations.templates.emailNotion.desc": "Turn tagged emails into Notion pages.",
"automations.templates.emailNotion.prompt": "When I receive a Gmail message labeled 'Task', extract the key details and create a new page in my Notion 'Inbox' database with the subject as the title and body as content.",
"automations.templates.emailNotion.title": "Email → Notion",
"automations.templates.githubTriage.desc": "Auto-classify and label new GitHub issues.",
"automations.templates.githubTriage.prompt": "When a new issue is opened on my GitHub repo, classify it (bug/feature/question/docs), add the matching label, and post a welcoming comment.",
"automations.templates.githubTriage.title": "GitHub Issue Triage",
"automations.templates.rssSummary.desc": "Poll an RSS feed and summarize new articles by email.",
"automations.templates.rssSummary.prompt": "Check my RSS feed https://example.com/feed.xml every hour. For each new article, generate a 3-sentence summary and email it to me.",
"automations.templates.rssSummary.title": "RSS to Summary",
"automations.templates.slackDiscord.desc": "Cross-post messages between Slack and Discord channels.",
"automations.templates.slackDiscord.prompt": "Whenever a message is posted in the #announcements channel in Slack, forward it to the #general channel in Discord.",
"automations.templates.slackDiscord.title": "Slack ↔ Discord Bridge",
"automations.templatesModalSubtitle": "Pick a workflow to customize, or start blank.",
"automations.templatesModalTitle": "Start with a template",
"automations.whatShouldThisTaskDo": "What should this task do?",
"automations.workflow.draftTitle": "Draft Title",
"automations.workflow.workflowKicker": "Workflow Kicker",
"automations.zeroState.browseTemplates": "Browse templates →",
"automations.zeroState.subtitle": "I can build workflows for you, run prompts on a schedule, or keep a checklist of tasks.",
"automations.zeroState.title": "What would you like your agent to do?",
"avatarselector.GitLfsPointer": "This .vrm is a Git LFS pointer, not the real model file. Download the actual VRM file first.",
"avatarselector.InvalidAvatarFile": "Invalid avatar file",
"avatarselector.InvalidVrmBinary": "Invalid VRM file. Pick a real .vrm binary.",
"avatarselector.ReadSelectedFile": "Couldn't read that file. Try a different .vrm.",
"avatarselector.SelectVrmFile": "Please pick a .vrm file.",
"avatarselector.UploadCustomVrm": "Upload custom .vrm (click or drag)",
"avatarselector.dropVrm": "drop .vrm",
"feed.tellTheAgentWhatToDoWhatToAvoidOrWhatToExplain": "Tell the agent what to do, what to avoid, or what to explain.",
"browserworkspace.ActionFailed": "Browser action failed.",
"browserworkspace.AddressPlaceholder": "Enter a URL",
"browserworkspace.AgentActive": "Agent is on this tab",
"browserworkspace.AgentTabs": "Agent Tabs",
"browserworkspace.AppTabs": "App Tabs",
"browserworkspace.Background": "Background",
"browserworkspace.BrowserBridgeAvailable": "Browser Bridge Available",
"browserworkspace.BrowserBridgeCheckingTitle": "Checking your browser connection",
"browserworkspace.BrowserBridgeChromeReady": "Chrome is ready. Click Load unpacked and choose {{path}}.",
"browserworkspace.BrowserBridgeConnected": "Browser Bridge Connected",
"browserworkspace.BrowserBridgeConnectedDescription": "Agent Browser Bridge is active in {{browser}} / {{profile}}. Use that real browser profile for Discord, Google, and other sites that do not belong inside an embed.",
"browserworkspace.BrowserBridgeConnectedTitle": "Your browser is connected",
"browserworkspace.BrowserBridgeDescription": "Browser Bridge Description",
"browserworkspace.BrowserBridgeFolderReady": "The Agent Browser Bridge folder is ready at {{path}}. Open chrome://extensions, click Load unpacked, and choose that folder.",
"browserworkspace.BrowserBridgeFolderRevealed": "Revealed the Agent Browser Bridge folder at {{path}}.",
"browserworkspace.BrowserBridgeInstallDescription": "Install the Agent Browser Bridge extension in this Chrome profile so the agent can see and control your real tabs instead of falling back to embedded browsing.",
"browserworkspace.BrowserBridgeNotConnected": "Browser Bridge Not Connected",
"browserworkspace.BrowserBridgeOpenedChromeExtensions": "Opened Chrome extensions. Click Load unpacked and choose the Agent Browser Bridge folder.",
"browserworkspace.BrowserBridgeRefreshSuccess": "Refreshed Agent Browser Bridge connection status.",
"browserworkspace.BrowserBridgeTitle": "Agent Browser Bridge",
"browserworkspace.BrowserBridgeUseRealBrowser": "Use your real browser here",
"browserworkspace.ChatPlaceholderConnected": "Tell me what to do in the browser…",
"browserworkspace.ChatPlaceholderInstallBridge": "Tell me what to do in the browser…",
"browserworkspace.Checking": "Checking",
"browserworkspace.ChromeBuild": "Chrome Build",
"browserworkspace.CloseTab": "Close tab",
"browserworkspace.CloudSession": "Cloud browser session",
"browserworkspace.CollapseChat": "Collapse chat",
"browserworkspace.CollapseTabs": "Collapse Tabs",
"browserworkspace.DesktopBridge": "Desktop bridge",
"browserworkspace.DesktopSession": "Desktop browser session",
"browserworkspace.EmptyDescription": "Open a page here, or let the agent create tabs through the {{appName}} browser workspace plugin.",
"browserworkspace.EmptySessionDescription": "Open a page to start a real browser session. The preview here follows the session instead of embedding the target site directly.",
"browserworkspace.EmptyTitle": "No browser tabs yet",
"browserworkspace.EnterUrlToNavigate": "Enter a URL to navigate.",
"browserworkspace.EnterUrlToOpen": "Enter a URL to open.",
"browserworkspace.ExpandChat": "Expand chat",
"browserworkspace.ExpandTabs": "Expand Tabs",
"browserworkspace.FrameBlockedDescription": "Frame Blocked Description",
"browserworkspace.FrameBlockedTitle": "Frame Blocked Title",
"browserworkspace.Go": "Go",
"browserworkspace.InstallBrowserBridge": "Install Agent Browser Bridge",
"browserworkspace.InstallBrowserBridgeFailed": "Failed to prepare the Agent Browser Bridge extension.",
"browserworkspace.InternalSessionDescription": "Internal Session Description",
"browserworkspace.InternalTabUrlManaged": "Internal Tab Url Managed",
"browserworkspace.InvalidUrl": "Enter a valid http or https URL.",
"browserworkspace.LastSeen": "Last seen {{time}}",
"browserworkspace.LoadFailed": "Failed to load browser workspace.",
"browserworkspace.Loading": "Loading browser workspace",
"browserworkspace.NewTab": "New tab",
"browserworkspace.NoAgentTabs": "No Agent Tabs",
"browserworkspace.NoAppTabs": "No App Tabs",
"browserworkspace.NoTabsOpen": "No tabs open yet.",
"browserworkspace.NoUserTabs": "No User Tabs",
"browserworkspace.OpenBlankTabFailed": "Failed to open a blank browser tab.",
"browserworkspace.OpenBlankTabHere": "Open blank tab here",
"browserworkspace.OpenBrowserBridgeFolder": "Open Browser Bridge Folder",
"browserworkspace.OpenBrowserBridgeFolderFailed": "Failed to reveal the Agent Browser Bridge extension folder.",
"browserworkspace.OpenBrowserBridgeManagerFailed": "Failed to open Chrome extensions.",
"browserworkspace.OpenChromeExtensions": "Open Chrome extensions",
"browserworkspace.OpenExtensionFolder": "Open extension folder",
"browserworkspace.OpenExternal": "Open external",
"browserworkspace.OpenInitialBrowseFailed": "Failed to open the requested browser tab.",
"browserworkspace.OpenLiveSession": "Open live session",
"browserworkspace.OpenNewTab": "Open new tab",
"browserworkspace.OpenTabs": "Open tabs",
"browserworkspace.RealSessionDescription": "This is a real browser session, not a raw iframe embed. Use chat or browser actions to navigate and interact with sites like Google and Discord.",
"browserworkspace.RefreshBrowserBridge": "Refresh Browser Bridge",
"browserworkspace.RefreshBrowserBridgeFailed": "Failed to refresh Agent Browser Bridge status.",
"browserworkspace.SessionPreview": "Browser session preview",
"browserworkspace.SessionPreviewPending": "Waiting for browser session preview",
"browserworkspace.SessionPreviewPendingDescription": "The page is running in a real browser session. A fresh preview will appear here as the session updates.",
"browserworkspace.SidebarLabel": "Browser workspace",
"browserworkspace.SnapshotFailed": "Failed to load browser session preview.",
"browserworkspace.Tabs": "Tabs",
"browserworkspace.UnsupportedProtocol": "Only http and https URLs are supported.",
"browserworkspace.UserTabs": "User Tabs",
"browserworkspace.Visible": "Visible",
"browserworkspace.WebWorkspace": "Web iframe workspace",
"browserworkspace.Working": "Working: {{action}}",
"bugreportmodal.22X": "22.x",
"bugreportmodal.ActualBehavior": "Actual Behavior",
"bugreportmodal.AddLogs": "Add logs",
"bugreportmodal.AnthropicOpenAI": "Anthropic / OpenAI / Ollama",
"bugreportmodal.BugReportSubmitted": "Bug Report Submitted",
"bugreportmodal.DescribeTheActual": "Describe the actual result.",
"bugreportmodal.DescribeTheExpecte": "Describe the expected result.",
"bugreportmodal.DescribeTheIssueY": "Describe the issue you encountered.",
"bugreportmodal.DescriptionHint": "Describe what happened and why it was unexpected.",
"bugreportmodal.DiagnosticsSharedSuccessfully": "Diagnostics were shared successfully.",
"bugreportmodal.Environment": "Environment",
"bugreportmodal.ExpectedBehavior": "Expected Behavior",
"bugreportmodal.HideLogs": "Hide logs",
"bugreportmodal.LogsHint": "Paste only the relevant errors, traces, or console output.",
"bugreportmodal.ModelProvider": "Model Provider",
"bugreportmodal.NodeVersion": "Node Version",
"bugreportmodal.Other": "Other",
"bugreportmodal.PasteRelevantError": "Paste relevant error output or logs",
"bugreportmodal.ReportABug": "Report a Bug",
"bugreportmodal.ReportCopiedToClipboard": "Report copied to clipboard.",
"bugreportmodal.ReproductionPrompt": "Help us reproduce the issue with concrete steps and environment details.",
"bugreportmodal.Select": "Select...",
"bugreportmodal.StepsHint": "Include the shortest reliable path that reproduces the bug.",
"bugreportmodal.StepsToReproduce": "Steps to Reproduce",
"bugreportmodal.Times": "X",
"bugreportmodal.YourBugReportHas": "Your bug report has been submitted successfully.",
"bugreportmodal.attachLogs": "Attach startup logs",
"bugreportmodal.attachSystemInfo": "Attach system info",
"bugreportmodal.copied": "Copied!",
"bugreportmodal.copiedDiagnostics": "Diagnostics Copied!",
"bugreportmodal.copyAndOpenGitHub": "Copy & Open GitHub",
"bugreportmodal.copyDiagnostics": "Copy Diagnostics",
"bugreportmodal.descriptionRequired": "Description is required.",
"bugreportmodal.openLogsFolder": "Open Logs Folder",
"bugreportmodal.saveBundle": "Save Report Bundle",
"bugreportmodal.savingBundle": "Saving Bundle...",
"bugreportmodal.stepsPlaceholder": "1. Go to...\n2. Click on...\n3. See error...",
"bugreportmodal.submitting": "Submitting...",
"character.characterHubSections": "Character hub sections",
"character.characterOverview": "Character overview",
"character.domainFilter": "Domain filter",
"character.getStartedWithYourCharacter": "Get started with your character",
"character.outcomeFilter": "Outcome filter",
"character.refreshLearnedSkills": "Refresh learned skills",
"character.reviewFilter": "Review filter",
"character.searchLearningEvidenceTags": "Search learning, evidence, tags...",
"character.sortExperiences": "Sort experiences",
"character.tagFilter": "Tag filter",
"charactereditor.AboutMe": "About Me",
"charactereditor.AboutMePlaceholder": "Describe who your agent is...",
"charactereditor.AddConversation": "Add Conversation",
"charactereditor.AddInline": "+ add",
"charactereditor.AddPost": "Add Post",
"charactereditor.AddStyleRule": "Add Style Rule",
"charactereditor.AddStyleRuleShort": "Add Style Rule Short",
"charactereditor.AddTurn": "Add Turn",
"charactereditor.ChatExamples": "Chat Examples",
"charactereditor.ChatExamplesHelp": "Chat Examples Help",
"charactereditor.ConversationCount": "Conversation Count",
"charactereditor.ConversationN": "Conversation {n}",
"charactereditor.CustomizeBtn": "Customize",
"charactereditor.DontSave": "Dont Save",
"charactereditor.DragToReorder": "Drag To Reorder",
"charactereditor.DuplicatePost": "Duplicate Post",
"charactereditor.DuplicateRule": "Duplicate Rule",
"charactereditor.ExportJSON": "Export JSON",
"charactereditor.Generate": "generate",
"charactereditor.Generating": "generating...",
"charactereditor.LoadingCharacterData": "Loading character data...",
"charactereditor.NoChatExamples": "No chat examples yet.",
"charactereditor.NoPostExamples": "No post examples yet.",
"charactereditor.PageContextDesc.examples": "Example conversations and posts the model can imitate.",
"charactereditor.PageContextDesc.identity": "Name, voice, bio, and system prompt — who the agent is and how it should behave.",
"charactereditor.PageContextDesc.style": "Short rules that steer tone and wording in chat and posts.",
"charactereditor.PageContextTitle.examples": "Sample chats & posts",
"charactereditor.PageContextTitle.identity": "Profile & directions",
"charactereditor.PageContextTitle.style": "Speaking style",
"charactereditor.PossibleDuplicates": "Possible Duplicates",
"charactereditor.PostCount": "Post Count",
"charactereditor.PostExample": "Post Example",
"charactereditor.PostExamples": "Post Examples",
"charactereditor.PostExamplesHelp": "Post Examples Help",
"charactereditor.Regenerate": "regenerate",
"charactereditor.RemoveExample": "Remove Example",
"charactereditor.RemovePost": "Remove Post",
"charactereditor.ResetConfirmBody": "Reset Confirm Body",
"charactereditor.ResetToDefaults": "Reset to Defaults",
"charactereditor.Saving": "saving...",
"charactereditor.SelectAVoice": "Select a voice",
"charactereditor.SelectBtn": "Select",
"charactereditor.StyleRulesHeader": "Style Rules Header",
"charactereditor.StyleRulesHelp": "Style Rules Help",
"charactereditor.SwitchCharacterPrompt": "Switch Character Prompt",
"charactereditor.SwitchSectionPrompt": "Switch Section Prompt",
"charactereditor.SystemPrompt": "Things I Should Always Remember",
"charactereditor.SystemPromptPlaceholder": "Write in first person...",
"charactereditor.TabExamples": "Examples",
"charactereditor.TabPersonality": "Personality",
"charactereditor.TabStyles": "Styles",
"charactereditor.TabbedEditorGroupLabel": "Character editor — tabbed sections",
"charactereditor.UnsavedChangesBody": "Unsaved Changes Body",
"charactereditor.UnsavedChangesTitle": "Unsaved Changes Title",
"characterroster.LoadingPresets": "Loading character presets...",
"chat.agentStarting": "Agent starting...",
"chat.agentVoiceOff": "Agent Voice Off",
"chat.agentVoiceOn": "Agent Voice On",
"chat.cached": "cached",
"chat.collapseWidgets": "Collapse widgets",
"chat.conversations": "Conversations",
"chat.createTask": "Create coding task",
"chat.createTaskTitle": "Create Coding Task",
"chat.editWidgets": "Edit widgets",
"chat.expandWidgets": "Expand widgets",
"chat.inferenceCloudNotConnected": "Eliza Cloud is enabled or your last reply used a cloud-hosted model, but {{appName}} is not connected. Sign in or add an API key under Settings → Cloud.",
"chat.inferenceStreamInterrupted": "The last reply did not finish streaming (connection or model error). Check logs or model settings, or retry.",
"chat.listening": "Listening...",
"chat.messageAriaLabelAgent": "Agent message: {{preview}}",
"chat.messageAriaLabelSystem": "System: {{preview}}",
"chat.messageAriaLabelUser": "Your message: {{preview}}",
"chat.micTitleIdleEnhanced": "Voice input — assistant replies use neural TTS (ElevenLabs). Change under Settings → Voice.",
"chat.micTitleIdleStandard": "Voice input — assistant uses device speech. Neural TTS and billing: Settings → Voice.",
"chat.newMessagesChip": "New messages ↓",
"chat.releaseToSend": "Release to send...",
"chat.removeImage": "Remove image {{name}}",
"chat.setupProviderToChat": "Set up an LLM provider in Settings to start chatting",
"chat.stopGeneration": "Stop generation",
"chat.stopListening": "Stop listening",
"chat.stopSpeaking": "Stop speaking",
"chat.taskDescriptionPlaceholder": "Describe what to build...",
"chat.toolCallChip.ACTIVATE_WORKFLOW": "Activating workflow…",
"chat.toolCallChip.DEACTIVATE_WORKFLOW": "Deactivating workflow…",
"chat.toolCallChip.DELETE_WORKFLOW": "Deleting workflow…",
"chat.toolCallChip.buildingWorkflow": "Building workflow…",
"chat.toolCallChip.default": "Working…",
"chat.uncached": "uncached",
"chat.voiceInput": "Voice input",
"chatmessage.ResponseInterrupte": "(Response interrupted)",
"chatmessage.SaveAndResend": "Save and resend",
"chatsidebar.OpenView": "Open View",
"chatsidebar.launchApp": "Launch {{name}}",
"chatview.NoMessagesYet": "No messages yet.",
"chatview.RemoveImage": "Remove image",
"chatview.SilenceEndFirstTo": "Silence end→first token:",
"chatview.msEndVoiceStart": "ms · end→voice start:",
"chatview.msFirst": "ms\n · first sentence:",
"cloudonboarding.ClickToOpenLogin": "Open login page",
"cloudonboarding.ConnectButton": "Connect to Eliza Cloud",
"cloudonboarding.ConnectToElizaCloud": "Sign in to get started",
"cloudonboarding.ConnectedSetupAgent": "Connected! Setting up your agent...",
"cloudonboarding.WaitingForLogin": "Waiting for login...",
"cloudsourcecontrols.Offline": "Offline",
"codingagentcontrolchip.ActiveSessions": "{{count}} active coding session(s)",
"codingagentcontrolchip.StopAll": "Stop all",
"codingagentcontrolchip.StopAllTitle": "Stop all coding agent sessions",
"codingagentsettingssection.AgentSelectionStra": "Agent Selection Strategy",
"codingagentsettingssection.AgentUsedWhenNoE": "Agent used when no explicit type is specified in a spawn request.",
"codingagentsettingssection.AgentUsedWhenNoEStrategyFixed": "Always use the selected default agent type when none is specified.",
"codingagentsettingssection.AgentUsedWhenNoEStrategyRanked": "Automatically select the best-performing installed agent based on success rate and stall metrics.",
"codingagentsettingssection.AnthropicApiKeyDesc": "For Claude Code and Aider (Anthropic provider).",
"codingagentsettingssection.AppliesToAllNewlySpawned": " — applies to all newly spawned agents unless overridden per-spawn.",
"codingagentsettingssection.AuthenticateAgent": "Authenticate {{agent}}",
"codingagentsettingssection.AuthenticatingAgent": "Authenticating {{agent}}...",
"codingagentsettingssection.AutoSaveFailed": "Failed to save settings: {{error}}",
"codingagentsettingssection.Availability": "Availability:",
"codingagentsettingssection.CloudPaired": "Using your Eliza Cloud account for coding agent LLM calls.",
"codingagentsettingssection.CloudUnpaired": "No Eliza Cloud account connected. Pair your account in the Cloud settings section first.",
"codingagentsettingssection.CodingDirectory": "Coding Directory",
"codingagentsettingssection.CodingDirectoryDesc": "Where task-agent scratch workspaces are created.",
"codingagentsettingssection.DefaultAgentType": "Default Agent Type",
"codingagentsettingssection.DefaultPermissionL": "Default Permission Level",
"codingagentsettingssection.EnterDeviceCodePrefix": "Enter code",
"codingagentsettingssection.EnterDeviceCodeSuffix": "at the sign-in page.",
"codingagentsettingssection.FastModel": "Fast Model",
"codingagentsettingssection.Fixed": "Fixed",
"codingagentsettingssection.GoogleApiKeyDesc": "For Gemini CLI and Aider (Google provider).",
"codingagentsettingssection.InstallWith": "Install with",
"codingagentsettingssection.Installed": "Installed",
"codingagentsettingssection.LlmProvider": "LLM Provider",
"codingagentsettingssection.LlmProviderApiKeys": "API Keys",
"codingagentsettingssection.LlmProviderDescApiKeys": "Provide your own API keys for each provider (Anthropic, OpenAI, Google).",
"codingagentsettingssection.LlmProviderDescCloud": "Route all agent LLM calls through Eliza Cloud. Gemini CLI is not supported.",
"codingagentsettingssection.LlmProviderDescSubscription": "Use each CLI's built-in login (Claude Code, Codex, and Gemini subscriptions).",
"codingagentsettingssection.LlmProviderSubscription": "CLI Subscription",
"codingagentsettingssection.LoadingCodingAgent": "Loading task-agent configuration...",
"codingagentsettingssection.ModelsFetched": "Models fetched from provider API. These are preferences — the CLI may override based on availability.",
"codingagentsettingssection.NoSupportedCLIs": "No supported task-agent CLIs detected. Install at least one of: Claude Code, Gemini CLI, Codex, Aider, or Pi.",
"codingagentsettingssection.OpenSignInPage": "Open sign-in page →",
"codingagentsettingssection.OpenaiApiKeyDesc": "For Codex and Aider (OpenAI provider).",
"codingagentsettingssection.PowerfulModel": "Powerful Model",
"codingagentsettingssection.PresetAutonomous": "Autonomous",
"codingagentsettingssection.PresetAutonomousDesc": "All tools auto-approved",
"codingagentsettingssection.PresetPermissive": "Permissive",
"codingagentsettingssection.PresetPermissiveDesc": "File ops auto-approved, asks for shell",
"codingagentsettingssection.PresetReadOnly": "Read Only",
"codingagentsettingssection.PresetReadOnlyDesc": "Read-only tools only",
"codingagentsettingssection.PresetStandardDesc": "Read + write, asks for shell/network",
"codingagentsettingssection.RankedAutoSelect": "Ranked (auto-select best performer)",
"codingagentsettingssection.RetentionAlwaysKeep": "Always keep",
"codingagentsettingssection.RetentionAskMe": "Ask me",
"codingagentsettingssection.RetentionEphemeral": "Ephemeral",
"codingagentsettingssection.ScratchRetention": "Scratch Retention",
"codingagentsettingssection.ScratchRetentionDesc": "What happens to scratch workspace code when a task finishes.",
"codingagentsettingssection.UsingFallback": "Using fallback model list — configure your API key to see all available models.",
"codingagenttaskspanel.acceptance": "Acceptance",
"codingagenttaskspanel.artifacts": "Artifacts",
"codingagenttaskspanel.artifactsCount": "{{count}} artifacts",
"codingagenttaskspanel.changedFiles": "{{count}} changed files: {{preview}}",
"codingagenttaskspanel.changedFilesMore": "{{count}} changed files: {{preview}}, +{{remaining}} more",
"codingagenttaskspanel.coordinatorDecisions": "Coordinator Decisions",
"codingagenttaskspanel.decisionsCount": "{{count}} decisions",
"codingagenttaskspanel.deleteFailed": "Failed to delete task: {{error}}",
"codingagenttaskspanel.inline": "inline",
"codingagenttaskspanel.kind.coding": "coding",
"codingagenttaskspanel.kind.unknown": "unknown",
"codingagenttaskspanel.loadTaskDetailFailed": "Failed to load task detail: {{error}}",
"codingagenttaskspanel.loadThreadsFailed": "Failed to load task threads: {{error}}",
"codingagenttaskspanel.loadingTasks": "Loading tasks…",
"codingagenttaskspanel.messages": "Messages",
"codingagenttaskspanel.noSessionsRecorded": "No sessions recorded.",
"codingagenttaskspanel.noWorkRunning": "No orchestrator work running",
"codingagenttaskspanel.noWorkspace": "No workspace",
"codingagenttaskspanel.pendingUserInput": "Pending User Input",
"codingagenttaskspanel.prompt": "prompt",
"codingagenttaskspanel.reopen": "Reopen",
"codingagenttaskspanel.reopenFailed": "Failed to reopen task: {{error}}",
"codingagenttaskspanel.searchPlaceholder": "Search tasks",
"codingagenttaskspanel.sessions": "Sessions",
"codingagenttaskspanel.sessionsCount": "{{count}} sessions",
"codingagenttaskspanel.status.active": "active",
"codingagenttaskspanel.status.archived": "archived",
"codingagenttaskspanel.status.blocked": "blocked",
"codingagenttaskspanel.status.done": "done",
"codingagenttaskspanel.status.interrupted": "interrupted",
"codingagenttaskspanel.status.open": "open",
"codingagenttaskspanel.status.validating": "validating",
"codingagenttaskspanel.status.waitingOnUser": "waiting on user",
"codingagenttaskspanel.system": "system",
"codingagenttaskspanel.transcriptEntriesCount": "{{count}} transcript entries",
"codingagenttaskspanel.waitingForNextUserResponse": "Coordinator is waiting for the next user response.",
"commandpalette.Description": "Search commands and jump straight to actions.",
"commandpalette.NoCommandsFound": "No commands found",
"commandpalette.ResultsLabel": "Command results",
"commandpalette.SearchLabel": "Search commands",
"commandpalette.Title": "Command palette",
"commandpalette.TypeToSearchComma": "Type to search commands...",
"common.account": "Account",
"common.actions": "Actions",
"common.active": "Active",
"common.add": "Add",
"common.agent": "Agent",
"common.all": "All",
"common.anthropic": "Anthropic",
"common.audio": "Audio",
"common.available": "Available",
"common.back": "Back",
"common.balance": "Balance",
"common.calendar": "Calendar",
"common.cancel": "Cancel",
"common.capabilities": "Capabilities",
"common.chain": "Chain",
"common.channel": "Channel",
"common.choose": "Choose",
"common.clear": "Clear",
"common.close": "Close",
"common.cloud": "Cloud",
"common.collapse": "Collapse",
"common.completed": "Completed",
"common.configured": "configured",
"common.confirm": "Confirm",
"common.connect": "Connect",
"common.connected": "Connected",
"common.connecting": "Starting…",
"common.continue": "Continue",
"common.create": "Create",
"common.database": "Database",
"common.default": "Default",
"common.delete": "Delete",
"common.description": "Description",
"common.desktop": "Desktop",
"common.details": "Details",
"common.disable": "Disable",
"common.disabled": "Disabled",
"common.disconnect": "Disconnect",
"common.disconnecting": "Disconnecting…",
"common.discord": "Discord",
"common.dismiss": "Dismiss",
"common.done": "Done",
"common.duration": "Duration",
"common.edit": "Edit",
"common.elizaCloud": "Eliza Cloud",
"common.enable": "Enable",
"common.enabled": "Enabled",
"common.error": "Error",
"common.evaluators": "Evaluators",
"common.events": "Events",
"common.expand": "Expand",
"common.export": "Export",
"common.exporting": "Exporting...",
"common.failed": "failed",
"common.features": "Features",
"common.game": "Game",
"common.google": "Google",
"common.heartbeat": "Heartbeat",
"common.hide": "Hide",
"common.hosting": "Hosting",
"common.idle": "Idle",
"common.importing": "Importing...",
"common.inactive": "Inactive",
"common.inbox": "Inbox",
"common.install": "Install",
"common.installing": "Installing...",
"common.item": "item",
"common.label": "Label",
"common.launch": "Launch",
"common.launching": "Launching...",
"common.loading": "Loading",
"common.local": "Local",
"common.location": "Location",
"common.logs": "Logs",
"common.message": "Message",
"common.name": "Name",
"common.needsSetup": "Needs setup",
"common.new": "New",
"common.newChat": "New Chat",
"common.next": "Next",
"common.no": "No",
"common.nodes": "Nodes",
"common.notConnected": "Not connected",
"common.off": "OFF",
"common.offline": "offline",
"common.on": "ON",
"common.open": "Open",
"common.openApps": "Open apps",
"common.openai": "OpenAI",
"common.parameters": "Parameters",
"common.pause": "Pause",
"common.paused": "Paused",
"common.permissions": "Permissions",
"common.plugins": "Plugins",
"common.prev": "Prev",
"common.preview": "Preview",
"common.provider": "Provider",
"common.providers": "Providers",
"common.queued": "Queued",
"common.ready": "Ready",
"common.reconnect": "Reconnect",
"common.refresh": "Refresh",
"common.refreshing": "Refreshing...",
"common.reminders": "Reminders",
"common.remove": "Remove",
"common.reply": "Reply",
"common.reset": "Reset",
"common.restart": "Restart agent",
"common.restarting": "Restarting…",
"common.resume": "Resume",
"common.retry": "Retry",
"common.rows": "rows",
"common.running": "Running...",
"common.runtime": "Runtime",
"common.save": "Save",
"common.saved": "Saved",
"common.saving": "Saving...",
"common.schedule": "Schedule",
"common.search": "Search",
"common.searching": "Searching...",
"common.send": "Send",
"common.server": "Server",
"common.skip": "Skip",
"common.source": "Source:",
"common.status": "Status",
"common.stop": "Stop",
"common.submit": "Submit",
"common.submitting": "Submitting…",
"common.testing": "Testing...",
"common.today": "Today",
"common.tokens": "Tokens",
"common.trajectories": "Trajectories",
"common.type": "Type",
"common.unavailable": "Unavailable",
"common.uninstall": "Uninstall",
"common.unknown": "Unknown",
"common.updating": "Updating...",
"common.user": "User",
"common.validating": "Validating…",
"common.value": "Value",
"common.vectors": "Vectors",
"common.version": "Version",
"common.video": "Video",
"common.voice": "Voice",
"common.workflows": "Workflows",
"common.yes": "Yes",
"companion.avatarPreviewAlt": "Avatar preview",
"companion.exitToApps": "Exit to Apps",
"computeruseapprovaloverlay.Approve": "Approve",
"computeruseapprovaloverlay.ApprovedNotice": "Approved Notice",
"computeruseapprovaloverlay.Body": "Body",
"computeruseapprovaloverlay.Command": "Command",
"computeruseapprovaloverlay.DenyReason": "Deny Reason",
"computeruseapprovaloverlay.DenyReasonPlaceholder": "Deny Reason Placeholder",
"computeruseapprovaloverlay.ModeLine": "Mode Line",
"computeruseapprovaloverlay.PendingApproval": "Pending Approval",
"computeruseapprovaloverlay.Reject": "Reject",
"computeruseapprovaloverlay.RejectedNotice": "Rejected Notice",
"computeruseapprovaloverlay.ResolveFailed": "Resolve Failed",
"computeruseapprovaloverlay.Resolving": "Resolving",
"computeruseapprovaloverlay.Title": "Title",
"config-field.AddItem": "Add item",
"config-field.AddRow": "Add row",
"config-field.Configured": "Configured",
"config-field.CustomComponent": "Custom component:",
"config-field.EnterAFilePathOr": "Enter a file path or paste one here.",
"config-field.Key": "Key",
"config-field.KeyValue": "Key-value JSON",
"config-field.MoveDown": "Move down",
"config-field.MoveUp": "Move up",
"config-field.NoMatches": "No matches",
"config-field.NoOptionsDefined": "No options defined",
"config-field.None": "None",
"config-field.NothingToPreview": "Nothing to preview",
"config-field.RemoveRow": "Remove row",
"config-field.Times": "×",
"config-field.options": "options",
"config-renderer.Rarr": "→",
"config-renderer.attention": "attention",
"config-renderer.requiredFieldsConf": "required fields configured",
"config-renderer.total": "total",
"configpageview.AnkrApiKey": "Ankr API Key",
"configpageview.ApiKeyPlaceholder": "Enter API key",
"configpageview.ApiKeySetPlaceholder": "Already set — leave blank to keep",
"configpageview.BSC": "BSC",
"configpageview.BSCDesc": "BNB Smart Chain",
"configpageview.BirdeyeApiKey": "Birdeye API Key",
"configpageview.CloudLoginRequiredSvgTitle": "Eliza Cloud login required",
"configpageview.CloudModeDesc": "Managed RPC for all chains. No API keys needed.",
"configpageview.CloudModeSvgTitle": "Eliza Cloud managed RPC",
"configpageview.CloudServices": "Cloud Services",
"configpageview.CloudServicesDesc": "Toggle Eliza Cloud services",
"configpageview.Config": "Config",
"configpageview.ConnectedToElizaCloud": "Connected to Eliza Cloud",
"configpageview.Credits": "Credits:",
"configpageview.CustomModeDesc": "Bring your own API keys. Configure per chain.",
"configpageview.CustomModeSvgTitle": "Custom RPC configuration",
"configpageview.CustomModeTitle": "Custom RPC",
"configpageview.CustomRpcProviders": "Custom RPC Providers",
"configpageview.EVM": "EVM",
"configpageview.EVMDesc": "Ethereum, Base, Arbitrum",
"configpageview.ElizaCloudKeyInvalid": "Eliza Cloud key invalid",
"configpageview.FixInCloudSettings": "Fix in Cloud settings",
"configpageview.HeliusApiKey": "Helius API Key",
"configpageview.InfuraApiKey": "Infura API Key",
"configpageview.LegacyRawRpcWarning": "Legacy raw RPC is still active for {{chains}}. Re-save a supported provider selection to migrate fully.",
"configpageview.LogIn": "Log in",
"configpageview.Mainnet": "Mainnet",
"configpageview.ManagedRpcDesc": "Managed RPC for all chains, no API keys needed",
"configpageview.NodeRealBscRpcUrl": "NodeReal BSC RPC URL",
"configpageview.QuickNodeBscRpcUrl": "QuickNode BSC RPC URL",
"configpageview.RequiresElizaCloud": "Requires Eliza Cloud",
"configpageview.RestartRequired": "Restart required",
"configpageview.Secrets": "Secrets",
"configpageview.SecretsVault": "Secrets vault",
"configpageview.SecretsVault1": "Secrets Vault",
"configpageview.Solana": "Solana",
"configpageview.SolanaDesc": "Solana mainnet",
"configpageview.Testnet": "Testnet",
"configpageview.TopUp": "Top up",
"configpageview.WalletNetwork": "Wallet Network",
"configpageview.WalletNetworkDesc": "Mainnet for live funds, Testnet for practice",
"configpageview.WalletProvidersAnd": "Wallet providers and secrets.",
"connectionfailedbanner.ConnectionLostAfte": "Connection lost after",
"connectionfailedbanner.ReconnectingAtt": "Reconnecting... (attempt",
"connectionfailedbanner.attemptsRealTime": "attempts. Real-time updates are paused.",
"connectionlostoverlay.AttemptsExhausted": "Realtime reconnect attempts exhausted: {{attempts}}.",
"connectionlostoverlay.ConnectionLost": "Connection Lost",
"connectionlostoverlay.ConnectionLostBody": "{{appName}} can’t talk to the local backend anymore. Restart the app or retry the connection once the server is back.",
"connectionlostoverlay.LostBackendConnection": "Lost backend connection.",
"connectors.blooioCloud": "Blooio (Cloud)",
"connectors.bluebubbles": "BlueBubbles",
"connectors.botToken": "Bot Token",
"connectors.botToken2": "Bot Token",
"connectors.businessCloudApi": "Business Cloud API",
"connectors.desktopApp": "Desktop App",
"connectors.directChatDb": "Direct (chat.db)",
"connectors.managedElizaCloud": "Managed (Eliza Cloud)",
"connectors.personalAccount": "Personal Account",
"connectors.qrPair": "QR Pair",
"connectors.qrPair2": "QR Pair",
"connectors.signalQrCode": "Signal QR Code",
"connectors.whatsappQrCode": "WhatsApp QR Code",
"conversations.actions": "More actions",
"conversations.bucketDaysAgo": "{{count}} days ago",
"conversations.bucketLastMonth": "Last month",
"conversations.bucketLastWeek": "Last week",
"conversations.bucketLastYear": "Over a year ago",
"conversations.bucketMonthsAgo": "{{count}} months ago",
"conversations.bucketWeeksAgo": "{{count}} weeks ago",
"conversations.bucketYearsAgo": "{{count}} years ago",
"conversations.bucketYesterday": "Yesterday",
"conversations.channels": "Channels",
"conversations.chats": "Chats",
"conversations.daysAgo": "{{count}}d ago",
"conversations.delete": "Delete conversation",
"conversations.deleteConfirm": "Delete?",
"conversations.filterScope": "Channels",
"conversations.filterWorld": "Server / world",
"conversations.hoursAgo": "{{count}}h ago",
"conversations.justNow": "just now",
"conversations.manageConnections": "Manage",
"conversations.minutesAgo": "{{count}}m ago",
"conversations.newChat": "+ New Chat",
"conversations.newTerminal": "New Terminal",
"conversations.newTerminalFailed": "Failed to start terminal: {{message}}",
"conversations.noMatchingChats": "No chats match your search",
"conversations.none": "No conversations yet",
"conversations.noneApp": "No chats yet",
"conversations.rename": "Rename conversation",
"conversations.renameDialogDescription": "Type any title you want, or use Suggest to generate one from this chat (uses your configured model).",
"conversations.renameDialogLabel": "Topic title",
"conversations.renameDialogSaving": "Saving…",
"conversations.renameDialogSuggest": "Suggest",
"conversations.renameDialogSuggesting": "Suggesting…",
"conversations.renameDialogTitle": "Rename chat topic",
"conversations.scopeAllConnectors": "All connectors",
"conversations.scopeApp": "{{appName}}",
"conversations.scopeDms": "DMs",
"conversations.scopeTerminal": "Terminal",
"conversations.scopeUnknownWorld": "Unknown world",
"conversations.searchChats": "Search chats",
"conversations.sectionMessages": "Conversations",
"customactioneditor.Add": "+ Add",
"customactioneditor.AddParameter": "+ Add Parameter",
"customactioneditor.AliasesOptional": "Aliases (optional)",
"customactioneditor.AvailableParams": "// Available: params.paramName, fetch()\\nreturn { result: params.input };",
"customactioneditor.BodyTemplateOptio": "Body Template (optional)",
"customactioneditor.CommaSeparatedAlte": "Comma-separated alternatives the agent can match against.",
"customactioneditor.CommandTemplate": "Command Template",
"customactioneditor.DescribeWhatYouWa": "Describe what you want this action to do",
"customactioneditor.Duration": "Duration:",
"customactioneditor.Error": "Error:",
"customactioneditor.HandlerType": "Handler Type",
"customactioneditor.HeaderName": "Header-Name",
"customactioneditor.HeadersOptional": "Headers (optional)",
"customactioneditor.JavaScriptCode": "JavaScript Code",
"customactioneditor.MYACTION": "MY_ACTION",
"customactioneditor.SYNONYMONESYNONYM": "SYNONYM_ONE, SYNONYM_TWO",
"customactioneditor.Test": "Test",
"customactioneditor.TestAction": "Test Action",
"customactioneditor.TheAgentWillGener": "The agent will generate the action config for you to review and\n edit.",
"customactioneditor.WhatDoesThisActio": "What does this action do?",
"customactioneditor.eGCheckIfAWebs": "e.g. Check if a website is up and return status",
"customactioneditor.echoMessage": "echo {{message}} > /tmp/output.txt",
"customactioneditor.forParameterSubsti": "for parameter substitution",
"customactioneditor.httpsApiExample": "https://api.example.com/{{param}}",
"customactioneditor.paramName": "paramName",
"customactioneditor.valueOrParam": "value or {{param}}",
"customactionspanel.ActionSummary": "{{actionCount}} total · {{enabledCount}} enabled",
"customactionspanel.AliasCountOne": "{{count}} alias",
"customactionspanel.AliasCountOther": "{{count}} aliases",
"customactionspanel.DeleteAction": "Delete action",
"customactionspanel.DeleteFailed": "Couldn't delete this action. Try again.",
"customactionspanel.EditAction": "Edit action",
"customactionspanel.HandlerTypeCode": "Code",
"customactionspanel.HandlerTypeHttp": "HTTP",
"customactionspanel.HandlerTypeShell": "Shell",
"customactionspanel.LoadFailed": "Couldn't load custom actions. Try again.",
"customactionspanel.LoadingYourActions": "Loading your actions...",
"customactionspanel.NewCustomAction": "+ New Custom Action",
"customactionspanel.NoActionsMatchSearch": "Nothing matches that search.",
"customactionspanel.NoActionsYet": "No custom actions yet. Make one to get started.",
"customactionspanel.SearchByNameDesc": "Search by name, description, alias...",
"customactionspanel.UpdateFailed": "Couldn't update this action. Try again.",
"customactionsview.ActionCountOne": "{{count}} action",
"customactionsview.ActionCountOther": "{{count}} actions",
"customactionsview.ActionRegistry": "Action Registry",
"customactionsview.ActionRegistryDescription": "Manage reusable action definitions",
"customactionsview.AllActions": "All actions",
"customactionsview.CreateAction": "Create Action",
"customactionsview.CustomActions": "Custom Actions",
"customactionsview.DeleteCustomActionMessage": "Are you sure you want to delete \"{{name}}\"?",
"customactionsview.DeleteCustomActionTitle": "Delete Custom Action",
"customactionsview.EmptyDescription": "Create and manage custom actions",
"customactionsview.EmptyTitle": "Build reusable actions for power workflows.",
"customactionsview.Filtered": "Filtered",
"customactionsview.Handler": "Handler",
"customactionsview.ImportFailedMessage": "Failed to import actions. Please check the file format.",
"customactionsview.ImportFailedTitle": "Import Failed",
"customactionsview.LoadingActions": "Loading actions...",
"customactionsview.NoActionsMatchFiltersDescription": "Try a different filter or clear search",
"customactionsview.NoActionsMatchFiltersTitle": "No actions match your current filters.",
"customactionsview.NoDescriptionYet": "No description yet",
"customactionsview.ParameterCountOne": "{{count}} parameter",
"customactionsview.ParameterCountOther": "{{count}} parameters",
"customactionsview.SearchActionsByNa": "Search actions by name or description...",
"customactionsview.SearchAndManage": "Search and Manage",
"customactionsview.parameter": "parameter",
"databaseview.CellValue": "Cell Value",
"databaseview.ChooseATableFrom": "Choose a table from the sidebar",
"databaseview.DatabaseNotAvailab": "Database not available",
"databaseview.EditorModes": "Database editor modes",
"databaseview.EmptyTableDescription": "No rows yet",
"databaseview.FailedToLoadTable": "Failed to load table: {{message}}",
"databaseview.FailedToLoadTables": "Failed to load tables: {{message}}",
"databaseview.FilterTables": "Filter tables...",
"databaseview.NULL": "NULL",
"databaseview.QueryFailed": "Query failed: {{message}}",
"databaseview.QueryReturnedNoRo": "Query returned no rows",
"databaseview.QueryWorkspaceInfo": "Write ad-hoc queries and inspect results without leaving the database workspace.",
"databaseview.RecentQueries": "Recent Queries",
"databaseview.RowCountLabel": "{{count}} rows",
"databaseview.RowCountSummary": "{{count}} {{rowLabel}}{{range}}",
"databaseview.SELECTFROMMemori": "SELECT * FROM memories LIMIT 100;",
"databaseview.SQLEditor": "SQL Editor",
"databaseview.SQLWorkspace": "SQL Workspace",
"databaseview.SQLWorkspaceDescription": "Run queries and inspect results",
"databaseview.SelectATable": "Select a table",
"databaseview.ShowingRange": " · showing {{start}}-{{end}}",
"databaseview.TableBrowser": "Table Browser",
"databaseview.TableEditor": "Table Editor",
"databaseview.TableIsEmpty": "Table is empty",
"databaseview.TableWorkspaceDescription": "Browse rows and columns",
"databaseview.Tables": "Tables",
"databaseview.TheDatabaseViewer": "The database viewer is only available when the local agent runtime is running.",
"databaseview.columns": "columns",
"databaseview.hideSidebar": "Hide sidebar",
"databaseview.row": "row",
"databaseview.runQuery": "Run Query",
"databaseview.showSidebar": "Show sidebar",