-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathen-us.json
More file actions
7822 lines (7822 loc) · 291 KB
/
Copy pathen-us.json
File metadata and controls
7822 lines (7822 loc) · 291 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
{
"agent": {
"add": {
"description": "Handle complex tasks with various tools",
"error": {
"failed": "Failed to add a agent",
"invalid_agent": "Invalid Agent"
},
"model": {
"supported_providers": "Supported Providers",
"tooltip": "Most chat models are available for Agents. Gemini providers are not supported yet.",
"view_providers": "View supported providers"
},
"title": "Add Agent",
"type": {
"placeholder": "Select an agent type"
}
},
"askUserQuestion": {
"answered": "answered",
"close": "Close",
"customPlaceholder": "Enter your answer...",
"loading": "Loading questions...",
"multiSelect": "Multi-select",
"next": "Next",
"noQuestions": "No questions available",
"other": "Other",
"previous": "Previous",
"progress": "{{current}} of {{total}}",
"skip": "Skip",
"submit": "Submit",
"title": "Questions from Agent"
},
"cherryClaw": {
"channels": {
"add": "Add",
"bindAgent": "Bind Agent",
"chatIdsAutoTrackHint": "When left empty, the system will auto-track: you need to send a message to the Bot on the platform first, then the system will record the Chat ID for future notifications.",
"comingSoon": "Coming soon",
"connected": "Connected",
"connecting": "Connecting",
"createError": "Failed to create channel",
"deleteConfirm": "Delete channel \"{{name}}\"?",
"deleteError": "Failed to delete channel",
"description": "Connect your agent to messaging platforms.",
"disconnected": "Disconnected",
"discord": {
"botToken": "Bot Token",
"botTokenPlaceholder": "Enter your Discord bot token",
"channelIds": "Allowed Channel IDs",
"channelIdsHint": "Format: channel:id or dm:id. Leave empty to allow all.",
"channelIdsPlaceholder": "channel:123456789, dm:987654321",
"description": "Receive and respond to messages via a Discord bot using WebSocket gateway.",
"title": "Discord",
"whoamiTip": "💡 Tip: Send /whoami to the bot to get your channel ID in the correct format."
},
"error": "Error",
"feishu": {
"appId": "App ID",
"appIdPlaceholder": "Enter your Feishu app ID",
"appSecret": "App Secret",
"appSecretPlaceholder": "Enter your Feishu app secret",
"chatIds": "Allowed Chat IDs",
"chatIdsHint": "Comma-separated chat IDs. Leave empty to allow all chats.",
"chatIdsPlaceholder": "oc_xxxxx, oc_yyyyy",
"connected": "Connected",
"description": "Receive and respond to messages via a Feishu/Lark bot using WebSocket.",
"domain": "Domain",
"domainFeishu": "Feishu (China)",
"domainLark": "Lark (International)",
"encryptKey": "Encrypt Key",
"encryptKeyPlaceholder": "Enter the Encrypt Key from your Feishu app",
"loginHint": "No credentials configured. Enable the channel to start QR code registration, or enter App ID and App Secret manually.",
"qrExpired": "QR code expired. Please retry by toggling the channel.",
"qrHint": "Waiting for QR code scan...",
"qrScanHint": "Open Feishu on your phone and scan the QR code to create a bot app.",
"qrTitle": "Feishu QR Registration",
"title": "Feishu",
"verificationToken": "Verification Token",
"verificationTokenPlaceholder": "Enter the Verification Token from your Feishu app"
},
"logs": "Logs",
"noInstances": "No {{type}} channels configured. Click \"+ Add\" to create one.",
"noLogs": "No logs yet",
"notifyReceiver": "Receive task notifications",
"notifyReceiverHint": "Send scheduler task results to this channel.",
"qq": {
"appId": "App ID",
"appIdPlaceholder": "Enter your QQ Bot App ID",
"chatIds": "Allowed Chat IDs",
"chatIdsHint": "Format: c2c:openid, group:groupid, channel:channelid. Leave empty to allow all.",
"chatIdsPlaceholder": "c2c:abc123, group:xyz789",
"clientSecret": "Client Secret",
"clientSecretPlaceholder": "Enter your QQ Bot client secret",
"description": "Receive and respond to messages via QQ Bot official API.",
"title": "QQ",
"whoamiTip": "💡 Tip: Send /whoami to the bot to get your chat ID in the correct format."
},
"security": {
"inheritFromAgent": "Inherit from agent",
"permissionMode": "Channel Permission Mode",
"permissionModeHint": "Override the agent's permission mode for messages from this channel. \"Inherit\" uses the agent's default."
},
"selectAgent": "Select an agent to bind",
"slack": {
"appToken": "App-Level Token",
"appTokenPlaceholder": "xapp-...",
"botToken": "Bot Token",
"botTokenPlaceholder": "xoxb-...",
"channelIds": "Allowed Channel IDs",
"channelIdsHint": "Slack channel IDs. Leave empty to allow all.",
"channelIdsPlaceholder": "C01234567, D89012345",
"description": "Receive and respond to messages via a Slack bot using Socket Mode.",
"title": "Slack",
"whoamiTip": "💡 Tip: Send /whoami to the bot to get the channel ID."
},
"soulModeRequired": "This agent does not have Autonomous Mode enabled. Channel features will not work. Please enable it in agent settings.",
"tab": "Channels",
"telegram": {
"botToken": "Bot Token",
"botTokenPlaceholder": "Enter your Telegram bot token",
"chatIds": "Allowed Chat IDs",
"chatIdsHint": "Comma-separated. Leave empty to allow all chats.",
"chatIdsPlaceholder": "123456789, 987654321",
"description": "Receive and respond to messages via a Telegram bot using long polling.",
"title": "Telegram"
},
"title": "Channels",
"updateError": "Failed to update channel",
"wechat": {
"addAccount": "Add WeChat Account",
"chatIds": "Allowed User IDs",
"chatIdsHint": "Comma-separated. Leave empty to allow all users.",
"chatIdsPlaceholder": "wxid_abc123, wxid_def456",
"connected": "Logged in",
"description": "Receive and respond to messages via WeChat using the iLink Bot API.",
"disconnected": "Not logged in",
"loginHint": "First login requires scanning a QR code. A QR code will appear automatically when the channel connects.",
"qrHint": "Open WeChat on your phone, scan the QR code to log in.",
"qrTitle": "WeChat QR Login",
"title": "WeChat",
"whoamiTip": "Tip: Send /whoami in WeChat to get a user's ID."
}
},
"heartbeat": {
"enabled": "Enable Heartbeat",
"enabledHelper": "When enabled and heartbeat.md exists in the workspace, the scheduler reads its content and sends it to the main session at the configured interval.",
"interval": "Interval (minutes)",
"intervalHelper": "How often the heartbeat runs, in minutes."
},
"sandbox": {
"description": "Restricts the agent's filesystem and network access to the workspace directory using OS-level sandboxing.",
"helper": "Restrict filesystem and command access to the workspace path.",
"label": "Sandbox Mode"
},
"scheduler": {
"cron": {
"helper": "Standard cron expression (e.g., '*/30 * * * *' for every 30 minutes).",
"label": "Cron Expression",
"placeholder": "*/30 * * * *"
},
"description": "The scheduler triggers the agent autonomously on a schedule.",
"enabled": "Enable Scheduler",
"enabledHelper": "When enabled, the agent will run automatically based on the configured schedule.",
"errors": {
"invalidCron": "Invalid cron expression",
"invalidDelay": "Delay must be a positive number",
"invalidInterval": "Interval must be a positive number"
},
"interval": {
"helper": "How often the agent should run, in seconds.",
"label": "Interval (seconds)"
},
"lastRun": "Last Run",
"never": "Never",
"nextRun": "Next Run",
"oneTime": {
"helper": "One-time delay in seconds before the agent runs.",
"label": "Delay (seconds)"
},
"status": {
"running": "Running",
"stopped": "Stopped",
"tickInProgress": "Tick in progress"
},
"tab": "Scheduler",
"title": "Scheduler Configuration",
"type": {
"cron": "Cron Expression",
"interval": "Fixed Interval",
"label": "Schedule Type",
"one-time": "One-Time Delay"
}
},
"soul": {
"description": "The soul defines the agent's personality and base behavior. It is read from soul.md in the workspace root.",
"empty": "No soul.md found in the workspace root. Create one to define the agent's personality.",
"enabled": "Enable Soul",
"enabledHelper": "When enabled, the agent reads soul.md from the workspace root and prepends it to the system prompt.",
"fileLabel": "soul.md",
"preview": "Soul Preview",
"tab": "Soul",
"title": "Soul Configuration"
},
"tasks": {
"add": "Add Task",
"cancel": "Cancel",
"channels": {
"label": "Send to Channels",
"noActiveChatIds": "The selected channels have no available recipients (Chat ID). Task results may not be delivered. Please send a message to the Bot on the platform first.",
"placeholder": "Select channels to receive results"
},
"cronPlaceholder": "e.g. 0 9 * * * (every day at 9 AM)",
"delete": {
"confirm": "Are you sure you want to delete this task?",
"label": "Delete"
},
"edit": "Edit",
"empty": "No scheduled tasks. Add one to get started.",
"error": {
"createFailed": "Failed to create task",
"deleteFailed": "Failed to delete task",
"loadFailed": "Failed to load tasks",
"runFailed": "Failed to run task",
"updateFailed": "Failed to update task"
},
"frequency": {
"everyPrefix": "Every",
"everySuffix": "minutes",
"label": "Execution Frequency"
},
"intervalPlaceholder": "At least 1",
"intervalUnit": "minutes",
"lastRun": "Last Run",
"logs": {
"cancelled": "Cancelled",
"completed": "Completed",
"duration": "Duration",
"empty": "No run history yet.",
"failed": "Failed",
"justNow": "just now",
"label": "Run History",
"loadError": "Failed to load run history",
"result": "Result",
"runAt": "Run At",
"running": "Running...",
"search": "Search logs...",
"status": "Status",
"viewSession": "View session"
},
"name": {
"label": "Name",
"placeholder": "e.g. Daily code review"
},
"nextRun": "Next Run",
"oncePlaceholder": "Select date and time",
"pause": "Pause",
"prompt": {
"expand": "Expand editor",
"label": "Prompt",
"placeholder": "What should the agent do when this task runs?"
},
"resume": "Resume",
"run": "Run",
"runTriggered": "Task triggered",
"save": "Save",
"scheduleType": {
"cron": "Cron",
"interval": "Interval",
"once": "Once"
},
"status": {
"active": "Active",
"completed": "Completed",
"paused": "Paused"
},
"tab": "Tasks",
"time": {
"hoursAgo": "{{count}}h ago",
"minutesAgo": "{{count}}m ago"
},
"timeout": {
"label": "Maximum Execution Time",
"placeholder": "No limit"
},
"title": "Scheduled Tasks"
},
"warning": {
"bypassPermissions": "CherryClaw agents run with Full Auto Mode by default. All tools execute without asking for approval."
}
},
"delete": {
"content": "Deleting the agent will forcibly stop and delete all sessions associated with the agent. Are you sure?",
"error": {
"failed": "Failed to delete the agent"
},
"title": "Delete Agent"
},
"edit": {
"title": "Edit Agent"
},
"empty": {
"description": "Create an agent to handle complex tasks with AI-powered tools",
"title": "No agents yet"
},
"get": {
"error": {
"failed": "Failed to get the agent.",
"null_id": "Agent ID is null."
}
},
"gitBash": {
"autoDetected": "Using auto-detected Git Bash",
"autoDiscoveredHint": "Auto-discovered",
"clear": {
"button": "Clear custom path"
},
"customPath": "Using custom path: {{path}}",
"error": {
"description": "Git Bash is required to run agents on Windows. The agent cannot function without it. Please install Git for Windows from",
"recheck": "Recheck Git Bash Installation",
"required": "Git Bash path is required on Windows",
"title": "Git Bash Required"
},
"found": {
"title": "Git Bash configured"
},
"notFound": "Git Bash not found. Please install it first.",
"pick": {
"button": "Select Git Bash Path",
"failed": "Failed to set Git Bash path",
"invalidPath": "Selected file is not a valid Git Bash executable (bash.exe).",
"title": "Select Git Bash executable"
},
"placeholder": "Select bash.exe path",
"success": "Git Bash detected successfully!",
"tooltip": "Git Bash is required to run agents on Windows. Install from git-scm.com if not available."
},
"home": {
"welcome_title": "What shall we talk about today?"
},
"input": {
"placeholder": "Type a message. Press {{key}} to send. Type / to search paths or commands.",
"soul_placeholder": "Help me connect to Telegram"
},
"list": {
"error": {
"failed": "Failed to list agents."
}
},
"pin": {
"title": "Pin Agent"
},
"preview_pane": {
"close": "Close preview",
"code": "Code",
"code_unavailable": "Source view not available for binary files",
"default_app": "Default app",
"empty": {
"description": "Start chatting with the agent; generated code and live previews will appear here.",
"title": "Ready"
},
"excel": {
"errors": {
"file_too_large": "This Excel file exceeds the preview size limit.",
"invalid_request": "The Excel preview request is invalid.",
"parse_failed": "Unable to read this Excel file.",
"too_complex": "This Excel file is too complex to preview.",
"unsupported_extension": "Only .xlsx and .xlsm files can be previewed.",
"unsupported_xls": "Legacy .xls files are not supported by Excel preview."
},
"warnings": {
"generic": "Some workbook content may not be fully shown.",
"title": "Preview notice",
"unsupported_images": "Images are not shown in Excel preview yet."
}
},
"file_tree": "File tree",
"items_one": "{{count}} item",
"items_other": "{{count}} items",
"maximize": "Maximize",
"minimize": "Minimize",
"no_search_results": "No files match your search",
"office": {
"description": "This file type needs to be opened with the system default app.",
"title": "Opening {{extension}} files here is not supported yet"
},
"preview": "Preview",
"refresh": "Refresh",
"search_placeholder": "Search files...",
"select_file": "Select a file to preview",
"toggle": "Show preview panel",
"too_large": {
"description": "File exceeds the {{limit}} preview limit.",
"title": "File too large to preview"
},
"unavailable": {
"description": "This file couldn't be opened — it may have been moved or deleted.",
"title": "File unavailable"
},
"word": {
"errors": {
"parse_failed": "Unable to render this Word document.",
"read_failed": "Unable to read this Word document."
}
}
},
"reorder": {
"error": {
"failed": "Failed to reorder agents"
}
},
"right_pane": {
"close": "Close",
"flow": {
"empty": {
"description": "Select an agent tool call to inspect its child message flow.",
"title": "No tool selected"
},
"no_messages": {
"description": "This tool call has no captured child message flow.",
"title": "No messages"
}
},
"info": {
"artifacts": "Deliverables",
"context_categories": {
"autocompact_buffer": "Autocompact buffer",
"custom_agents": "Custom agents",
"free_space": "Free space",
"mcp_tools": "MCP tools",
"memory_files": "Memory files",
"messages": "Messages",
"plugins": "Plugins",
"skills": "Skills",
"system_prompt": "System prompt",
"system_tools": "System tools"
},
"context_usage": "Context usage",
"label": "Session information",
"more": "+{{count}} more",
"no_artifacts": "No declared deliverables",
"no_subagents": "No sub-agents",
"subagents": "Sub-agents"
},
"status": {
"activity": "Activity",
"agent": "Agent",
"context": "Context",
"no_tasks": "No active tasks",
"selected_tool": "Selected tool",
"task_count": "{{completed}} / {{total}} complete",
"tasks": "Tasks",
"tools_active": "Active",
"tools_done": "Done",
"tools_failed": "Failed",
"tools_total": "Total",
"workspace": "Workspace"
},
"tabs": {
"files": "Files",
"flow": "Flow",
"status": "Status"
}
},
"server": {
"error": {
"not_running": "The API server is enabled but not running properly."
}
},
"session": {
"accessible_paths": {
"add": "Add directory",
"default_hint": "A default workspace will be created automatically if not specified.",
"duplicate": "This directory is already included.",
"empty": "Select at least one directory that the agent can access.",
"error": {
"at_least_one": "Please select at least one accessible directory."
},
"label": "Accessible directories",
"select_failed": "Failed to select directory."
},
"add": {
"title": "Add a session"
},
"agent": {
"delete": {
"content": "Deleting this agent's tasks will delete all tasks associated with this agent. The agent itself will not be deleted.",
"error": {
"failed": "Failed to delete agent tasks"
},
"title": "Delete agent tasks",
"trigger": "Delete agent tasks"
}
},
"allowed_tools": {
"empty": "No tools available for this agent.",
"helper": "Pre-approved tools run without manual approval. Unselected tools require approval before use.",
"label": "Pre-approved tools",
"placeholder": "Select pre-approved tools"
},
"create": {
"error": {
"failed": "Failed to add a session"
}
},
"delete": {
"content": "Are you sure to delete this session?",
"error": {
"failed": "Failed to delete the session",
"last": "At least one session must be kept"
},
"title": "Delete session"
},
"display": {
"agent": "Agent",
"time": "Time",
"title": "Display mode",
"workdir": "Work directory"
},
"edit": {
"title": "Edit session"
},
"empty": {
"description": "Tasks will appear here after you start one.",
"title": "No tasks yet"
},
"file_manager": {
"file_explorer": "File Explorer",
"files": "Files",
"finder": "Finder"
},
"get": {
"error": {
"failed": "Failed to get the session",
"not_found": "Task not found",
"null_id": "Session ID is null"
}
},
"group": {
"collapse": "Collapse display",
"collapse_all": "Collapse all",
"conversation": "Conversations",
"drag_hint": "Drag to reorder. Drag tasks to adjust display and hidden groups.",
"earlier": "Earlier",
"expand_all": "Expand all",
"no_workdir": "No work directory",
"show_more": "Expand display",
"this_week": "This week",
"today": "Today",
"unknown_agent": "Unknown agent",
"yesterday": "Yesterday"
},
"label_one": "Session",
"label_other": "Sessions",
"list": {
"title": "Tasks"
},
"new": "New task",
"pin": {
"title": "Pin task"
},
"reorder": {
"error": {
"failed": "Failed to reorder sessions"
}
},
"search": {
"placeholder": "Search tasks",
"title": "Search tasks"
},
"unpin": {
"title": "Unpin task"
},
"update": {
"error": {
"failed": "Failed to update the session"
}
},
"workdir": {
"delete": {
"content": "Deleting this work directory will also delete all tasks under it. Only database records are removed; the actual folder on disk will not be deleted.",
"error": {
"failed": "Failed to delete the work directory"
},
"title": "Delete work directory",
"trigger": "Delete work directory"
},
"rename": {
"error": {
"failed": "Failed to rename the work directory"
},
"title": "Rename work directory",
"trigger": "Rename work directory"
}
},
"workspace_selector": {
"create_failed": "Failed to add work directory.",
"create_new": "Add new work directory",
"empty_text": "No work directories",
"no_project": "No work directory",
"placeholder": "Select work directory",
"search_placeholder": "Search work directories",
"select_failed": "Failed to select folder."
},
"workspace_status": {
"inaccessible": "Workspace path is not accessible: {{path}}",
"missing": "Workspace path does not exist: {{path}}",
"not_directory": "Workspace path is not a directory: {{path}}"
}
},
"settings": {
"advance": {
"envVars": {
"description": "Set custom environment variables for the agent runtime.",
"helper": "Enter custom environment variables (one per line, format: KEY=value)",
"label": "Environment Variables"
},
"maxTurns": {
"description": "Define how many request/response cycles the agent may complete automatically.",
"helper": "Higher values enable longer autonomous runs; lower values keep sessions short.",
"label": "Conversation turn limit"
},
"permissionMode": {
"description": "Control how the agent handles actions that require approval.",
"label": "Permission mode",
"options": {
"acceptEdits": "Accept edits automatically",
"bypassPermissions": "Bypass permission checks",
"default": "Default (ask before continuing)",
"plan": "Planning mode (requires plan approval)"
},
"placeholder": "Choose a permission behavior"
},
"title": "Advanced Settings"
},
"essential": "Essential Settings",
"permissionMode": {
"tab": "Permission Mode",
"title": "Permission Mode"
},
"plugins": {
"available": {
"title": "Available Plugins"
},
"confirm": {
"uninstall": "Are you sure you want to uninstall this plugin?"
},
"empty": {
"available": "No plugins found matching your filters. Try adjusting your search or category filters."
},
"error": {
"install": "Failed to install plugin",
"load": "Failed to load plugins",
"load_more": "Failed to load more plugins",
"uninstall": "Failed to uninstall plugin"
},
"filter": {
"all": "All Categories"
},
"install": {
"button": "Install",
"title": "Install Plugins"
},
"installed": {
"empty": "No skills installed yet. Browse available skills to get started.",
"title": "Installed Skills"
},
"installing": "Installing...",
"plugin_upload": {
"all_failed": "All {{failed}} components failed to install",
"error": "Installation failed",
"format_hint": "Supports skill packages (.claude-plugin/plugin.json)",
"hint": "Drag and drop skill ZIP here, or click to select",
"invalid_format": "Please upload a ZIP file",
"partial_success": "Installed {{installed}} components, {{failed}} failed",
"select_folder": "Select Folder",
"select_folder_title": "Select Plugin Folder",
"success": "Plugin \"{{name}}\" installed successfully ({{count}} components)",
"success_multi": "Installed {{count}} components from {{packages}} packages",
"uploading": "Uploading and installing..."
},
"results": "{{count}} plugin(s) found",
"search": {
"placeholder": "Search plugins..."
},
"standalone_plugins": "Standalone Plugins",
"success": {
"install": "Plugin installed successfully",
"uninstall": "Plugin uninstalled successfully",
"uninstall_package": "Package \"{{name}}\" uninstalled successfully"
},
"tab": "Plugins",
"type": {
"agent": "Agent",
"agents": "Agents",
"all": "All",
"command": "Command",
"commands": "Commands",
"skills": "Skills"
},
"uninstall": "Uninstall",
"uninstall_package": "Uninstall Package",
"uninstall_package_confirm": "Are you sure you want to uninstall the entire \"{{name}}\" package? This will remove {{count}} component(s).",
"uninstalling": "Uninstalling..."
},
"prompt": "Prompt Settings",
"skills": {
"addMore": "Add More Skills",
"builtin": "Built-in",
"noFilterResults": "No matching skills",
"noSkills": "No skills installed. Install skills from Settings > Skills.",
"searchPlaceholder": "Search skills...",
"tab": "Skills",
"title": "Installed Skills"
},
"soulMode": {
"description": "When enabled, the agent uses a custom system prompt from workspace soul files, injects autonomous task management tools, and disables interactive tools not suited for autonomous operation.",
"disabledBadge": "Disabled by Autonomous Mode",
"disabledTooltip": "This tool is automatically disabled when Autonomous Mode is active",
"title": "Autonomous Mode"
},
"tooling": {
"mcp": {
"description": "Connect MCP servers to unlock additional tools you can approve above.",
"empty": "No MCP servers detected. Add one from the MCP settings page.",
"inactiveTooltip": "This MCP server is not active. Please start it first.",
"manageHint": "Need advanced configuration? Visit Settings → MCP Servers.",
"toggle": "Toggle {{name}}"
},
"permissionMode": {
"acceptEdits": {
"description": "Can read and edit files freely. Asks before running commands.",
"title": "Auto-edit Mode"
},
"bypassPermissions": {
"description": "Can do everything without asking. Use with caution.",
"title": "Full Auto Mode",
"warning": "Use with caution — all tools will run without asking for approval."
},
"confirmChange": {
"description": "Switching modes updates the automatically approved tools.",
"title": "Change permission mode?"
},
"default": {
"description": "Can read files freely. Asks before editing or running commands.",
"title": "Normal Mode"
},
"helper": "Choose how the agent handles tool approvals.",
"placeholder": "Select permission mode",
"plan": {
"description": "Can only read files and make plans. Cannot edit files or run commands.",
"title": "Plan Mode"
},
"title": "Permission mode"
},
"preapproved": {
"autoBadge": "Added by mode",
"autoDescription": "This tool is auto-approved by the current permission mode.",
"autoDisabledTooltip": "Auto-approved by \"{{mode}}\" and cannot be disabled.",
"empty": "No tools match your filters.",
"mcpBadge": "MCP tool",
"requiresApproval": "Requires approval when disabled",
"search": "Search tools",
"toggle": "Toggle {{name}}"
}
},
"tools": {
"approved": "approved",
"caution": "Pre-approved tools bypass human review. Enable only trusted tools.",
"description": "Choose which tools can run without manual approval.",
"requiresPermission": "Requires permission when not pre-approved.",
"tab": "Pre-approved tools",
"title": "Pre-approved tools",
"toggle": "{{defaultValue}}"
},
"toolsMcp": {
"mcp": {
"tab": "MCP",
"title": "MCP Servers"
},
"tab": "Tools",
"tools": {
"title": "Pre-approved Tools"
}
}
},
"sidebar_title": "Agents",
"todo": {
"mock": {
"actions": {
"complete": "Complete",
"dismiss": "Dismiss"
},
"details": {
"addRouter": {
"summary": "Configuring client routing with react-router-dom v6...",
"title": "Add React Router"
},
"configureProject": {
"resources": {
"createdMeta": "created",
"postcssConfig": "postcss.config.js",
"tailwindConfig": "tailwind.config.js",
"updatedMeta": "updated",
"viteConfig": "vite.config.ts - port 3001"
},
"title": "Configure project"
},
"installDependencies": {
"resources": {
"dependenciesMeta": "dependencies",
"devDependenciesMeta": "devDependencies",
"reactDeps": "react@18.3.1, react-dom@18.3.1",
"tailwindDeps": "tailwindcss@3.4.4, postcss@8.4.38",
"typescriptDeps": "typescript@5.4.5, vite@5.3.0"
},
"summary": "Installed react, react-dom, tailwindcss, postcss, autoprefixer, and TypeScript.",
"title": "Install dependencies"
},
"reviewReferences": {
"collectionTitle": "Reviewed references",
"resources": {
"npmCreateVite": "npm create vite - Official Scaffolding",
"npmMeta": "npmjs.com",
"reactDocs": "React Documentation - Quick Start",
"reactMeta": "react.dev",
"tailwindDocs": "Tailwind CSS - Installation Guide",
"tailwindMeta": "tailwindcss.com",
"viteDocs": "Vite - Next Generation Frontend Tooling",
"viteMeta": "vitejs.dev"
},
"title": "Review references"
},
"searchWeb": {
"resources": {
"reactViteQuery": "React Vite TypeScript starter 2025 best practices"
},
"summary": "Collected current references for React + Vite scaffolding and best practices.",
"title": "Search web references"
},
"title": "Execution details",
"writeComponents": {
"collectionTitle": "Created files",
"resources": {
"app": "src/App.tsx",
"button": "src/components/Button.tsx",
"card": "src/components/Card.tsx",
"footer": "src/components/Footer.tsx",
"header": "src/components/Header.tsx",
"layout": "src/components/Layout.tsx",
"modifiedMeta": "modified",
"newMeta": "new",
"updatedMeta": "updated"
},
"title": "Write components"
},
"writePages": {
"resources": {
"about": "src/pages/About.tsx",
"home": "src/pages/Home.tsx",
"newMeta": "new"
},
"title": "Write pages"
}
},
"progress": "{{completed}}/{{total}} tasks completed",
"tasks": {
"addLinting": "Add ESLint + Prettier",
"addRouter": "Add React Router",
"buildDeploy": "Build and deploy",
"configureProject": "Configure project",
"finish": "Finish",
"installDependencies": "Install dependencies",
"reviewReferences": "Review references",
"searchWeb": "Search web references",
"writeComponents": "Write components",
"writePages": "Write pages"
},
"title": "Tasks"
},
"panel": {
"title": "{{completed}}/{{total}} tasks completed"
},
"status": {
"completed": "Completed",
"in_progress": "In Progress",
"pending": "Pending"
}
},
"toolPermission": {
"aria": {
"allowAllRequest": "Always allow this tool",
"allowRequest": "Allow tool request",
"denyRequest": "Deny tool request",
"hideDetails": "Hide tool details",
"runWithOptions": "Run with additional options",
"showDetails": "Show tool details"
},
"button": {
"allow": "Allow",
"allowAll": "Always Allow",
"cancel": "Cancel",
"deny": "Deny",
"run": "Run"
},
"confirmation": "Are you sure you want to run this Claude tool?",
"defaultDenyMessage": "User denied permission for this tool.",
"defaultDescription": "Executes code or system actions in your environment. Make sure the command looks safe before running it.",
"error": {
"sendFailed": "Failed to send your decision. Please try again."
},
"executing": "Executing...",
"expired": "Expired",
"inputPreview": "Tool input preview",
"pending": "Waiting for approval",
"permissionExpired": "Permission request expired. Waiting for new instructions...",
"requiresElevatedPermissions": "This tool requires elevated permissions.",
"suggestion": {
"permissionUpdateMultiple": "Approving may update multiple session permissions if you chose to always allow this tool.",
"permissionUpdateSingle": "Approving may update your session permissions if you chose to always allow this tool."
},
"toast": {
"denied": "Tool request was denied.",
"timeout": "Tool request timed out before receiving approval."
},
"toolPendingFallback": "Tool",
"waiting": "Waiting for tool permission decision..."
},
"tools": {
"builtin": {
"AgentMemory": {
"description": "Stores and recalls cross-session memory",
"label": "Memory"
},
"Bash": {
"description": "Executes shell commands in your environment",
"label": "Bash"
},
"CherryKbManage": {
"description": "Adds, deletes, or refreshes documents in your knowledge bases",
"label": "Manage Knowledge"
},
"CherryKbSearch": {
"description": "Searches your knowledge bases",
"label": "Knowledge Search"
},
"CherryWebFetch": {
"description": "Fetches and reads a web page",
"label": "Web Fetch"
},
"CherryWebSearch": {
"description": "Searches the web via your configured provider",
"label": "Web Search"
},
"ClawCron": {
"description": "Manages the in-app scheduler",
"label": "Scheduler"
},
"Edit": {
"description": "Makes targeted edits to specific files",
"label": "Edit"
},
"Glob": {
"description": "Finds files based on pattern matching",
"label": "Glob"
},
"Grep": {
"description": "Searches for patterns in file contents",
"label": "Grep"
},
"MultiEdit": {
"description": "Performs multiple edits on a single file atomically"
},
"NotebookEdit": {
"description": "Modifies Jupyter notebook cells"
},
"NotebookRead": {
"description": "Reads and displays Jupyter notebook contents"
},
"Read": {
"description": "Reads the contents of files",
"label": "Read"
},
"Task": {
"description": "Runs a sub-agent to handle complex, multi-step tasks"
},
"TodoWrite": {
"description": "Creates and manages structured task lists"
},
"ToolSearch": {
"description": "Discovers deferred tools from large libraries"
},
"WebFetch": {
"description": "Fetches content from a specified URL"
},
"WebSearch": {
"description": "Performs web searches with domain filtering"
},
"Workflow": {