forked from tinyhumansai/openhuman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.ts
More file actions
3915 lines (3808 loc) · 214 KB
/
Copy pathen.ts
File metadata and controls
3915 lines (3808 loc) · 214 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
import type { TranslationMap } from './types';
const en: TranslationMap = {
// Navigation
'nav.home': 'Home',
'nav.human': 'Human',
'nav.chat': 'Chat',
'nav.connections': 'Connections',
'nav.memory': 'Intelligence',
'nav.alerts': 'Alerts',
'nav.rewards': 'Rewards',
'nav.settings': 'Settings',
// Common
'common.cancel': 'Cancel',
'common.save': 'Save',
'common.confirm': 'Confirm',
'common.delete': 'Delete',
'common.edit': 'Edit',
'common.create': 'Create',
'common.search': 'Search',
'common.loading': 'Loading…',
'common.error': 'Error',
'common.success': 'Success',
'common.back': 'Back',
'common.next': 'Next',
'common.finish': 'Finish',
'common.close': 'Close',
'common.enabled': 'Enabled',
'common.disabled': 'Disabled',
'common.on': 'On',
'common.off': 'Off',
'common.yes': 'Yes',
'common.no': 'No',
'common.ok': 'Got it',
'common.name': 'Name',
'common.retry': 'Try again',
'common.copy': 'Copy',
'common.copied': 'Copied',
'common.learnMore': 'Learn more',
'common.seeAll': 'View',
'common.dismiss': 'Dismiss',
'common.clear': 'Clear',
'common.reset': 'Reset',
'common.refresh': 'Refresh',
'common.export': 'Export',
'common.import': 'Import',
'common.upload': 'Upload',
'common.download': 'Download',
'common.add': 'Add',
'common.remove': 'Remove',
'common.showMore': 'Show more',
'common.showLess': 'Show less',
'common.submit': 'Submit',
'common.continue': 'Continue',
'common.comingSoon': 'Coming Soon',
'common.breadcrumb': 'Breadcrumb',
// Settings Home
'settings.general': 'General',
'settings.featuresAndAI': 'Features & AI',
'settings.billingAndRewards': 'Billing & Rewards',
'settings.support': 'Support',
'settings.advanced': 'Advanced',
'settings.dangerZone': 'Danger Zone',
'settings.account': 'Account',
'settings.accountDesc': 'Recovery phrase, team, connections, and privacy',
'settings.notifications': 'Notifications',
'settings.notificationsDesc': 'Do Not Disturb and per-account notification controls',
'settings.notifications.tabs.preferences': 'Preferences',
'settings.notifications.tabs.routing': 'Routing',
'settings.features': 'Features',
'settings.featuresDesc': 'Screen awareness, messaging, and tools',
'settings.aiModels': 'AI & Models',
'settings.aiModelsDesc': 'Local AI model setup, downloads, and LLM provider',
'settings.ai': 'AI Configuration',
'settings.aiDesc': 'Cloud providers, local Ollama models, and per-workload routing',
'settings.billingUsage': 'Billing & Usage',
'settings.billingUsageDesc': 'Subscription plan, credits, and payment methods',
'settings.rewards': 'Rewards',
'settings.rewardsDesc': 'Referrals, coupons, and earned credits',
'settings.restartTour': 'Restart Tour',
'settings.restartTourDesc': 'Replay the product walkthrough from the beginning',
'settings.about': 'About',
'settings.aboutDesc': 'App version and software updates',
'settings.developerOptions': 'Advanced',
'settings.developerOptionsDesc':
'AI configuration, messaging channels, tools, diagnostics, and debug panels',
'settings.clearAppData': 'Clear App Data',
'settings.clearAppDataDesc': 'Sign out and permanently clear all local app data',
'settings.logOut': 'Log out',
'settings.logOutDesc': 'Sign out of your account',
'settings.exitLocalSession': 'Exit local session',
'settings.exitLocalSessionDesc': 'Return to the sign-in screen',
'settings.language': 'Language',
'settings.betaBuild': 'Beta build - v{version}',
'settings.languageDesc': 'Display language for the app interface',
'settings.alerts': 'Alerts',
'settings.alertsDesc': 'View recent alerts and activity in your inbox',
// Settings: Account
'settings.account.recoveryPhrase': 'Recovery Phrase',
'settings.account.recoveryPhraseDesc': 'View and back up your account recovery phrase',
'settings.account.team': 'Team',
'settings.account.teamDesc': 'Manage team members and permissions',
'settings.account.connections': 'Connections',
'settings.account.connectionsDesc': 'Manage linked accounts and services',
'settings.account.privacy': 'Privacy',
'settings.account.privacyDesc': 'Control what data leaves your computer',
'migration.title': 'Import from another assistant',
'migration.description':
'Migrate memory and notes from another local assistant into this workspace. Start with a Preview to see exactly what would change, then Apply to copy the data over. Your current memory is backed up first.',
'migration.vendorLabel': 'Source vendor',
'migration.vendor.openclaw': 'OpenClaw',
'migration.vendor.hermes': 'Hermes Agent',
'migration.sourceLabel': 'Source workspace path (optional)',
'migration.sourcePlaceholder': 'Leave blank to auto-detect (e.g. ~/.openclaw/workspace)',
'migration.sourcePlaceholderHermes': 'Leave blank to auto-detect (e.g. ~/.hermes)',
'migration.sourceHint':
"Defaults to the vendor's standard location when blank. Set an explicit path if you've moved the workspace elsewhere.",
'migration.previewAction': 'Preview',
'migration.previewRunning': 'Previewing…',
'migration.applyAction': 'Apply import',
'migration.applyRunning': 'Importing…',
'migration.applyDisclaimer':
'Apply is unlocked after a successful Preview of the same source. Existing memory is backed up before any import.',
'migration.reportTitlePreview': 'Preview — nothing imported yet',
'migration.reportTitleApplied': 'Import complete',
'migration.report.source': 'Source workspace',
'migration.report.target': 'Target workspace',
'migration.report.fromSqlite': 'From SQLite (brain.db)',
'migration.report.fromMarkdown': 'From Markdown',
'migration.report.imported': 'Imported',
'migration.report.skippedUnchanged': 'Skipped (unchanged)',
'migration.report.renamedConflicts': 'Renamed on conflict',
'migration.report.warnings': 'Warnings',
'migration.report.previewHint':
'No data has been imported yet. Click Apply import to copy it over.',
'migration.report.appliedHint':
'Imported entries are now in your memory. Re-run Preview if you want to compare again.',
'migration.confirmImport.singular':
'Import {count} entry into the current workspace?\n\nSource: {source}\nTarget: {target}\n\nExisting memory will be backed up before the import runs.',
'migration.confirmImport.plural':
'Import {count} entries into the current workspace?\n\nSource: {source}\nTarget: {target}\n\nExisting memory will be backed up before the import runs.',
// Settings: Notifications
'settings.notifications.doNotDisturb': 'Do Not Disturb',
'settings.notifications.doNotDisturbDesc': 'Pause all notifications for a set period',
'settings.notifications.channelControls': 'Per-Channel Controls',
'settings.notifications.channelControlsDesc':
'Configure notification preferences for each channel',
// Settings: Features
'settings.features.screenAwareness': 'Screen Awareness',
'settings.features.screenAwarenessDesc': 'Let the assistant see your active window',
'settings.features.messaging': 'Messaging',
'settings.features.messagingDesc': 'Channel and messaging integration settings',
'settings.features.tools': 'Tools',
'settings.features.toolsDesc': 'Manage connected tools and integrations',
// Settings: AI & Models
'settings.ai.localSetup': 'Local AI Setup',
'settings.ai.localSetupDesc': 'Download and configure local AI models',
'settings.ai.llmProvider': 'LLM Provider',
'settings.ai.llmProviderDesc': 'Choose and configure your AI provider',
// Clear App Data modal
'clearData.title': 'Clear App Data',
'clearData.warning': 'This will sign you out and permanently delete local app data including:',
'clearData.bulletSettings': 'App settings and conversations',
'clearData.bulletCache': 'All local integration cache data',
'clearData.bulletWorkspace': 'Workspace data',
'clearData.bulletOther': 'All other local data',
'clearData.irreversible': 'This action cannot be undone.',
'clearData.clearing': 'Clearing App Data...',
'clearData.failed': 'Failed to clear data and logout. Please try again.',
'clearData.failedLogout': 'Failed to log out. Please try again.',
'clearData.failedPersist': 'Failed to clear persisted app state. Please try again.',
// Welcome page
'welcome.title': 'Welcome to OpenHuman',
'welcome.subtitle':
'Your personal AI super intelligence. Private, simple and extremely powerful.',
'welcome.connectPrompt': 'Configure RPC URL (Advanced)',
'welcome.selectRuntime': 'Select a Runtime',
'welcome.clearingAppData': 'Clearing app data...',
'welcome.clearAppDataAndRestart': 'Clear app data & restart',
'welcome.clearAppDataWarning':
'This wipes locally stored secrets and accounts on this device. Your cloud account is unaffected - you can sign in again right after.',
'welcome.resetErrorFallback':
'Could not clear app data. Please quit and reopen OpenHuman, then try again.',
'welcome.signingIn': 'Signing you in...',
'welcome.termsIntro': 'By continuing, you agree to the',
'welcome.termsOfUse': 'Terms',
'welcome.termsJoiner': 'and',
'welcome.privacyPolicy': 'Privacy Policy',
'welcome.termsOutro': '.',
'welcome.urlPlaceholder': 'http://localhost:8089',
'welcome.invalidUrl': 'Please enter a valid HTTP or HTTPS URL',
'welcome.connecting': 'Testing',
'welcome.connect': 'Test',
// Home page
'home.greeting': 'Good morning',
'home.greetingAfternoon': 'Good afternoon',
'home.greetingEvening': 'Good evening',
'home.askAssistant': 'Ask your assistant anything...',
'home.statusOk':
'Your device is connected. Keep the app running to keep the connection alive. Message your agent with the button below.',
'home.statusBackendOnly': 'Reconnecting to backend… your agent will be available again shortly.',
'home.statusCoreUnreachable':
"The OpenHuman core isn't responding. The background process may have crashed or failed to start.",
'home.statusInternetOffline':
'Your device is offline right now. Check your network or restart the app to reconnect.',
'home.restartCore': 'Restart Core',
'home.restartingCore': 'Restarting core…',
'home.themeToggle.toLight': 'Switch to light mode',
'home.themeToggle.toDark': 'Switch to dark mode',
'home.usageExhaustedTitle': "You've exhausted your usage",
'home.usageExhaustedBody':
"You're out of included usage for now. Start a subscription to unlock more ongoing capacity.",
'home.usageExhaustedCta': 'Get a subscription',
'home.routinesCard': 'Your Routines',
'home.routinesActive': '{count} active',
// Routines
'routines.title': 'Your Routines',
'routines.subtitle': 'Things your assistant does automatically',
'routines.loading': 'Loading routines…',
'routines.empty': 'No routines yet',
'routines.emptyHint':
'Your assistant can run tasks on a schedule — like morning briefings or daily summaries.',
'routines.refresh': 'Refresh',
'routines.nextRun': 'Next run',
'routines.lastRunSuccess': 'Last run succeeded',
'routines.lastRunFailed': 'Last run failed',
'routines.notRunYet': 'Not run yet',
'routines.runNow': 'Run Now',
'routines.running': 'Running…',
'routines.viewHistory': 'View history',
'routines.loadingHistory': 'Loading…',
'routines.noHistory': 'No run history yet.',
'routines.statusSuccess': 'Success',
'routines.statusError': 'Error',
'routines.showOutput': 'Show output',
'routines.hideOutput': 'Hide output',
'routines.toggleEnabled': 'Enable or disable this routine',
'routines.typeAgent': 'Agent',
'routines.typeCommand': 'Command',
'nav.routines': 'Routines',
// Chat / Conversations
'chat.newThread': 'New thread',
'chat.typeMessage': 'Type a message...',
'chat.send': 'Send message',
'chat.thinking': 'Thinking...',
'chat.noMessages': 'No messages yet',
'chat.startConversation': 'Start a conversation',
'chat.regenerate': 'Regenerate',
'chat.copyResponse': 'Copy response',
'chat.citations': 'Citations',
'chat.toolUsed': 'Tool used',
// Skills / Connections
'scope.legacy': 'Legacy',
'scope.user': 'User',
'scope.project': 'Project',
'skills.title': 'Connections',
'skills.search': 'Search connections...',
'skills.noResults': 'No connections found',
'skills.connect': 'Connect',
'skills.disconnect': 'Disconnect',
'skills.configure': 'Manage',
'skills.connected': 'Connected',
'skills.available': 'Available',
'skills.addAccount': 'Add Account',
'skills.channels': 'Channels',
'skills.integrations': 'Composio Integrations',
'skills.integrationsSubtitle':
'Cloud-based OAuth connections — sign in with your account and Composio brokers the tokens so agents can read and act on your behalf. No API keys to manage.',
'skills.composio.noApiKeyTitle': 'No Composio API Key Configured',
'skills.composio.noApiKeyDescription':
'Local mode uses your own Composio API key. Open Settings → Advanced → Composio to add one before connecting integrations here.',
'skills.composio.noApiKeyCta': 'Open in Settings',
'skills.tabs.composio': 'Composio',
'skills.tabs.channels': 'Channels',
'skills.tabs.mcp': 'MCP Servers',
// Intelligence / Memory
'memory.title': 'Memory',
'memory.search': 'Search memories...',
'memory.noResults': 'No memories found',
'memory.empty': 'No memories yet. Memories are created automatically as you interact.',
'memory.tab.memory': 'Memory',
'memory.tab.gameplay': 'Gameplay',
'gameplay.spoiler.off': 'Spoiler-safe',
'gameplay.spoiler.light': 'Light spoilers',
'gameplay.spoiler.full': 'Full spoilers',
'memory.tab.subconscious': 'Subconscious',
'memory.tab.dreams': 'Dreams',
'memory.tab.calls': 'Calls',
'memory.tab.diagram': 'Diagram',
'memory.tab.settings': 'Settings',
'memory.analyzeNow': 'Analyze Now',
// Memory Tree status panel (#1856 Part 1)
'memoryTree.status.title': 'Memory Tree',
'memoryTree.status.autoSyncLabel': 'Auto-sync',
'memoryTree.status.autoSyncDescription':
'Pause to stop new ingestion. Existing wiki stays queryable.',
'memoryTree.status.statusTile': 'Status',
'memoryTree.status.lastSyncTile': 'Last sync',
'memoryTree.status.totalChunksTile': 'Total chunks',
'memoryTree.status.wikiSizeTile': 'Wiki size',
'memoryTree.status.statusRunning': 'Running',
'memoryTree.status.statusPaused': 'Paused',
'memoryTree.status.statusSyncing': 'Syncing',
'memoryTree.status.statusError': 'Error',
'memoryTree.status.statusIdle': 'Idle',
'memoryTree.status.never': 'Never',
'memoryTree.status.fetchError': "Couldn't fetch Memory Tree status",
'memoryTree.status.retry': 'Retry',
'memoryTree.status.toggleFailed': "Couldn't toggle auto-sync",
// Relative-time buckets surfaced by the last-sync tile. `{count}` is
// replaced client-side at the call site (the runtime `t()` does not
// interpolate — see I18nContext.tsx).
'memoryTree.status.justNow': 'just now',
'memoryTree.status.secondsAgo': '{count}s ago',
'memoryTree.status.minuteAgo': '1 min ago',
'memoryTree.status.minutesAgo': '{count} min ago',
'memoryTree.status.hourAgo': '1 hr ago',
'memoryTree.status.hoursAgo': '{count} hr ago',
'memoryTree.status.dayAgo': '1 day ago',
'memoryTree.status.daysAgo': '{count} days ago',
// Notifications / Alerts
'alerts.title': 'Alerts',
'alerts.empty': 'No alerts yet',
'alerts.markAllRead': 'Mark all as read',
'alerts.unread': 'unread',
// Rewards
'rewards.title': 'Rewards',
'rewards.referrals': 'Referrals',
'rewards.coupons': 'Redeem',
'rewards.localUnavailable':
'Local login does not earn rewards, coupons, or referral credit. To earn rewards, log out and continue by signing in with an OpenHuman account.',
'rewards.localUnavailableCta': 'Open Account Settings',
'rewards.credits': 'Credits',
'rewards.referralCode': 'Your referral code',
'rewards.copyCode': 'Copy code',
'rewards.share': 'Share',
// Onboarding
'onboarding.welcome': "Hi. I'm OpenHuman.",
'onboarding.welcomeDesc':
'Your super-intelligent AI assistant that runs on your computer. Private, simple, and extremely powerful.',
'onboarding.context': 'Context Gathering',
'onboarding.contextDesc': 'Connect the tools and services you use every day.',
'onboarding.localAI': 'Local AI',
'onboarding.localAIDesc': 'Set up a local AI model that runs on your machine.',
'onboarding.chatProvider': 'Chat Provider',
'onboarding.chatProviderDesc': 'Choose how you want to interact with your assistant.',
'onboarding.referral': 'Referral',
'onboarding.referralDesc': 'Apply a referral code if you have one.',
'onboarding.finish': 'Finish Setup',
'onboarding.finishDesc': "You're all set! Start using OpenHuman.",
'onboarding.skip': 'Skip',
'onboarding.getStarted': 'Get Started',
// Onboarding: runtime-choice step (Cloud vs Custom)
'onboarding.runtimeChoice.title': 'How would you like to run OpenHuman?',
'onboarding.runtimeChoice.subtitle':
'Pick how much OpenHuman manages for you. You can change this later in Settings.',
'onboarding.runtimeChoice.cloud.title': 'Simple',
'onboarding.runtimeChoice.cloud.tagline':
'Use OpenHuman-hosted sign-in, model routing, search, and managed integrations.',
'onboarding.runtimeChoice.cloud.f1': 'Backend-brokered OAuth and model routing',
'onboarding.runtimeChoice.cloud.f2': 'Token compression to stretch your usage further',
'onboarding.runtimeChoice.cloud.f3': 'One subscription, every model included',
'onboarding.runtimeChoice.cloud.f4': 'No model, search, or Composio keys to manage',
'onboarding.runtimeChoice.cloud.f5': 'Local Memory Tree, managed network services',
'onboarding.runtimeChoice.custom.title': 'Run Custom',
'onboarding.runtimeChoice.custom.tagline':
'Bring your own keys. Choose which services OpenHuman should call.',
'onboarding.runtimeChoice.custom.f1': "You'll need API keys for almost everything",
'onboarding.runtimeChoice.custom.f2': 'Reuses services you already pay for',
'onboarding.runtimeChoice.custom.f3': 'Keep supported workloads on your machine',
'onboarding.runtimeChoice.custom.f4': 'More setup, more knobs',
'onboarding.runtimeChoice.custom.f5': 'Best for power users and developers',
'onboarding.runtimeChoice.cloud.creditHighlight': '$1 free credit to try it out',
'onboarding.runtimeChoice.continueCloud': 'Continue with Simple',
'onboarding.runtimeChoice.continueCustom': 'Continue with Custom',
'onboarding.runtimeChoice.recommended': 'Recommended',
// Onboarding: API keys step (only when Custom is picked)
'onboarding.apiKeys.title': "Let's Add Your API Keys",
'onboarding.apiKeys.subtitle':
'You can paste them now or skip and add them later in Settings › AI. Keys are stored on this device, encrypted at rest.',
'onboarding.apiKeys.openaiLabel': 'OpenAI API key',
'onboarding.apiKeys.openaiPlaceholder': 'sk-...',
'onboarding.apiKeys.openaiOauthHint':
'Use ChatGPT Plus/Pro (subscription) or an OpenAI API key — not both required.',
'onboarding.apiKeys.openaiOauthOpening': 'Opening sign-in…',
'onboarding.apiKeys.finishSignIn': 'Finish ChatGPT sign-in',
'onboarding.apiKeys.orApiKey': 'or API key',
'onboarding.apiKeys.anthropicLabel': 'Anthropic API key',
'onboarding.apiKeys.anthropicPlaceholder': 'sk-ant-...',
'onboarding.apiKeys.saveError': "Couldn't save that key. Please double-check it and try again.",
'onboarding.apiKeys.skipForNow': 'Skip for now',
'onboarding.apiKeys.continue': 'Save and continue',
'onboarding.apiKeys.saving': 'Saving…',
// Onboarding: Custom wizard (Inference / Voice / OAuth / Search / Memory)
'onboarding.custom.stepperInference': 'Inference',
'onboarding.custom.stepperVoice': 'Voice',
'onboarding.custom.stepperOAuth': 'OAuth',
'onboarding.custom.stepperSearch': 'Search',
'onboarding.custom.stepperEmbeddings': 'Embeddings',
'onboarding.custom.stepperMemory': 'Memory',
'onboarding.custom.stepCounter': 'Step {n} of {total}',
'onboarding.custom.defaultTitle': 'Default',
'onboarding.custom.defaultSubtitle': 'Let OpenHuman manage it for you.',
'onboarding.custom.configureTitle': 'Configure',
'onboarding.custom.configureSubtitle': "I'll pick what to use.",
'onboarding.custom.progressAriaLabel': 'Onboarding progress',
'onboarding.custom.continue': 'Continue',
'onboarding.custom.back': 'Back',
'onboarding.custom.finish': 'Finish Setup',
'onboarding.custom.configureLater':
"You can finish wiring this up after onboarding. We'll drop you on the matching Settings page once you're done.",
'onboarding.custom.openSettings': 'Open in Settings',
// Onboarding: Custom > Inference (text)
'onboarding.custom.inference.title': 'Inference (Text)',
'onboarding.custom.inference.subtitle':
'Which language model should answer your questions and run your agents?',
'onboarding.custom.inference.defaultDesc':
'OpenHuman routes workloads through its managed backend by default. No keys, no setup.',
'onboarding.custom.inference.configureDesc':
'Bring your own OpenAI or Anthropic key. We use it for every text-based workload.',
// Onboarding: Custom > Voice
'onboarding.custom.voice.title': 'Voice',
'onboarding.custom.voice.subtitle': 'Speech-to-text and text-to-speech for voice mode.',
'onboarding.custom.voice.defaultDesc':
'OpenHuman ships with managed STT/TTS providers that may send audio/text to hosted services.',
'onboarding.custom.voice.configureDesc':
'Use your own ElevenLabs / OpenAI Whisper / etc. Configure in Settings › Voice.',
// Onboarding: Custom > OAuth (Composio)
'onboarding.custom.oauth.title': 'Connections (OAuth)',
'onboarding.custom.oauth.subtitle':
'Gmail, Slack, Notion, and other connected services that need OAuth.',
'onboarding.custom.oauth.defaultDesc':
'OpenHuman brokers OAuth and tool calls through a managed Composio workspace.',
'onboarding.custom.oauth.configureDesc':
'Bring your own Composio account / API key. Configure in Settings › Connections.',
// Onboarding: Custom > Search
'onboarding.custom.search.title': 'Web Search',
'onboarding.custom.search.subtitle': 'How OpenHuman searches the web on your behalf.',
'onboarding.custom.search.defaultDesc':
'OpenHuman uses a managed search proxy by default. No search API key needed.',
'onboarding.custom.search.configureDesc':
'Bring your own search provider key (Tavily, Brave, etc.). Configure in Settings › Tools.',
// Onboarding: Custom > Embeddings
'onboarding.custom.embeddings.title': 'Embeddings',
'onboarding.custom.embeddings.subtitle':
'How OpenHuman generates vector embeddings for semantic memory search.',
'onboarding.custom.embeddings.defaultDesc':
'OpenHuman uses a managed embedding service. No API key needed.',
'onboarding.custom.embeddings.configureDesc':
'Bring your own embedding provider (OpenAI, Voyage, Ollama, etc.).',
// Onboarding: Custom > Memory
'onboarding.custom.memory.title': 'Memory',
'onboarding.custom.memory.subtitle':
'How OpenHuman remembers your context, preferences, and prior conversations.',
'onboarding.custom.memory.defaultDesc':
'OpenHuman manages memory storage and retrieval automatically. Nothing to set up.',
'onboarding.custom.memory.configureDesc':
'Inspect, export, or wipe memory yourself. Configure in Settings › Memory.',
// Accounts
'accounts.addAccount': 'Add Account',
'accounts.manageAccounts': 'Manage Accounts',
'accounts.noAccounts': 'No accounts connected',
'accounts.connectAccount': 'Connect an account to get started',
'accounts.agent': 'Agent',
'accounts.respondQueue': 'Respond Queue',
'accounts.disconnect': 'Disconnect',
'accounts.disconnectConfirm': 'Are you sure you want to disconnect this account?',
'accounts.disconnectClearMemory': 'Also delete memory from this source',
'accounts.disconnectClearMemoryHint':
'Permanently removes local memory chunks linked to this connection.',
'accounts.searchAccounts': 'Search accounts...',
// Channels
'channels.title': 'Channels',
'channels.configure': 'Configure Channel',
'channels.setup': 'Setup',
'channels.noChannels': 'No channels configured',
'channels.localManagedUnavailable': 'Managed channels are not available for local users.',
'channels.addChannel': 'Add Channel',
'channels.status.connected': 'Connected',
'channels.status.disconnected': 'Disconnected',
'channels.status.error': 'Error',
'channels.status.configuring': 'Configuring',
'channels.defaultMessaging': 'Default Messaging Channel',
// Webhooks
'webhooks.title': 'Webhooks',
'webhooks.create': 'Create Webhook',
'webhooks.noWebhooks': 'No webhooks configured',
'webhooks.url': 'URL',
'webhooks.secret': 'Secret',
'webhooks.events': 'Events',
'webhooks.archiveDirectory': 'Archive Directory',
'webhooks.todayFile': "Today's File",
// Invites
'invites.title': 'Invites',
'invites.create': 'Create Invite',
'invites.noInvites': 'No pending invites',
'invites.code': 'Invite Code',
'invites.copyLink': 'Copy Link',
'invites.generate': 'Generate Invite',
'invites.generating': 'Generating...',
'invites.refreshing': 'Refreshing invites...',
'invites.loading': 'Loading invites...',
'invites.copyCodeAria': 'Copy invite code',
'invites.revokeAria': 'Revoke invite',
'invites.usedUp': 'Used Up',
'invites.uses': 'Uses: {current}{max}',
'invites.expiresOn': 'Expires {date}',
'invites.empty': 'No invites yet',
'invites.emptyHint': 'Generate an invite code to share with others',
'invites.revokeTitle': 'Revoke Invite Code',
'invites.revokePromptPrefix': 'Are you sure you want to revoke the invite code',
'invites.revokeWarning':
'This invite code will no longer be valid and cannot be used to join the team.',
'invites.revoking': 'Revoking...',
'invites.revokeAction': 'Revoke Invite',
'invites.failedGenerate': 'Failed to generate invite',
'invites.failedRevoke': 'Failed to revoke invite',
'team.refreshingMembers': 'Refreshing members...',
'team.loadingMembers': 'Loading members...',
'team.memberCount': '{count} member',
'team.memberCountPlural': '{count} members',
'team.you': '(You)',
'team.removeAria': 'Remove {name}',
'team.noMembers': 'No members found',
'team.removeTitle': 'Remove Team Member',
'team.removePromptPrefix': 'Are you sure you want to remove',
'team.removePromptSuffix': 'from the team?',
'team.removeWarning': 'They will lose access to the team and all team resources.',
'team.removing': 'Removing...',
'team.removeAction': 'Remove Member',
'team.changeRoleTitle': 'Change Member Role',
'team.changeRolePrompt': "Change {name}'s role from {oldRole} to {newRole}?",
'team.changeRoleAdminGrant':
'This will grant them full admin permissions including the ability to manage team members.',
'team.changeRoleAdminRemove':
'This will remove their admin permissions and they will no longer be able to manage the team.',
'team.changing': 'Changing...',
'team.changeRoleAction': 'Change Role',
'team.failedChangeRole': 'Failed to change role',
'team.failedRemoveMember': 'Failed to remove member',
// Developer Options
'devOptions.title': 'Advanced',
'devOptions.diagnostics': 'Diagnostics',
'devOptions.diagnosticsDesc': 'System health, logs, and performance metrics',
'devOptions.toolPolicyDiagnosticsDesc':
'Tool inventory, policy posture, MCP allowlists, and recent blocks',
'devOptions.toolPolicyDiagnostics.loading': 'Loading…',
'devOptions.toolPolicyDiagnostics.unavailable': 'Diagnostics unavailable',
'devOptions.toolPolicyDiagnostics.posture.title': 'Policy posture',
'devOptions.toolPolicyDiagnostics.posture.autonomy': 'Autonomy:',
'devOptions.toolPolicyDiagnostics.posture.workspaceOnly': 'Workspace only:',
'devOptions.toolPolicyDiagnostics.posture.maxActionsPerHour': 'Max actions/hr:',
'devOptions.toolPolicyDiagnostics.posture.approvalMediumRisk': 'Approval (medium risk):',
'devOptions.toolPolicyDiagnostics.posture.blockHighRisk': 'Block high risk:',
'devOptions.toolPolicyDiagnostics.inventory.title': 'Inventory',
'devOptions.toolPolicyDiagnostics.inventory.totalTools': 'Total tools',
'devOptions.toolPolicyDiagnostics.inventory.enabledTools': 'Enabled tools',
'devOptions.toolPolicyDiagnostics.inventory.mcpStdioTools': 'MCP stdio tools',
'devOptions.toolPolicyDiagnostics.inventory.jsonRpcTools': 'JSON-RPC tools',
'devOptions.toolPolicyDiagnostics.mcpAllowlists.title': 'MCP allowlists',
'devOptions.toolPolicyDiagnostics.mcpAllowlists.summary':
'Enabled: {enabled} · Servers: {enabledCount}/{totalCount}',
'devOptions.toolPolicyDiagnostics.mcpAllowlists.unnamed': '<unnamed>',
'devOptions.toolPolicyDiagnostics.mcpAllowlists.allowDeny': 'allow={allowCount} deny={denyCount}',
'devOptions.toolPolicyDiagnostics.mcpWriteAudit.title': 'MCP write audit',
'devOptions.toolPolicyDiagnostics.mcpWriteAudit.summary':
'Enabled: {enabled} · Recent (24h): {recentRows}',
'devOptions.toolPolicyDiagnostics.recentBlocked.title': 'Recent blocked calls',
'devOptions.toolPolicyDiagnostics.recentBlocked.empty': 'No blocked calls recorded.',
'devOptions.toolPolicyDiagnostics.redactedSurfaces.title': 'Redacted surfaces',
'devOptions.toolPolicyDiagnostics.redactedSurfaces.summary':
'Write-capable: {writeCount} · Policy surfaces: {policyCount}',
'devOptions.debugPanels': 'Debug Panels',
'devOptions.debugPanelsDesc': 'Feature flags, state inspection, and debugging tools',
'devOptions.webhooks': 'Webhooks',
'devOptions.webhooksDesc': 'Configure and test webhook integrations',
'devOptions.memoryInspection': 'Memory Inspection',
'devOptions.memoryInspectionDesc': 'Browse, query, and manage memory entries',
// Voice / Dictation
'voice.pushToTalk': 'Push to Talk',
'voice.recording': 'Recording...',
'voice.processing': 'Processing...',
'voice.languageHint': 'Language',
// Misc
'misc.rehydrating': 'Loading your data...',
'misc.checkingServices': 'Checking services...',
'misc.serviceUnavailable': 'Service Unavailable',
'misc.somethingWentWrong': 'Something went wrong',
'misc.tryAgainLater': 'Please try again later.',
'misc.restartApp': 'Restart App',
'misc.updateAvailable': 'Update Available',
'misc.updateNow': 'Update Now',
'misc.updateLater': 'Later',
'misc.downloading': 'Downloading...',
'misc.installing': 'Installing...',
'misc.beta':
'OpenHuman is in early beta. Feel free to share feedback or report any bugs you run into — every report helps us ship faster.',
'misc.betaFeedback': 'Send feedback',
// Mnemonic / Recovery
'mnemonic.title': 'Recovery Phrase',
'mnemonic.warning': 'Write down these words in order and store them somewhere safe.',
'mnemonic.copyWarning':
'Never share your recovery phrase. Anyone with these words can access your account.',
'mnemonic.copied': 'Recovery phrase copied to clipboard',
'mnemonic.reveal': 'Reveal phrase',
'mnemonic.revealPhrase': 'Reveal recovery phrase',
'mnemonic.hidden': 'Recovery phrase is hidden',
// What Leaves My Computer
'privacy.title': 'Privacy & Security',
'privacy.description': 'Transparency report of data sent to external services.',
'privacy.empty': 'No external data transfers detected.',
'privacy.whatLeavesComputer': 'What leaves your computer',
'privacy.loading': 'Loading privacy details...',
'privacy.loadError': 'Could not load the live privacy list. Analytics controls below still work.',
'privacy.noCapabilities': 'No capabilities currently disclose data movement.',
'privacy.sentTo': 'Sent to',
'privacy.leavesDevice': 'Leaves device',
'privacy.staysLocal': 'Stays local',
'privacy.anonymizedAnalytics': 'Anonymized Analytics',
'privacy.shareAnonymizedData': 'Share Anonymized Usage Data',
'privacy.shareAnonymizedDataDesc':
'Help improve OpenHuman by sharing anonymous crash reports and usage analytics. All data is fully anonymized — no personal data, messages, wallet keys, or session information is ever collected.',
'privacy.meetingFollowUps': 'Meeting follow-ups',
'privacy.autoHandoffMeet': 'Auto-handoff Google Meet transcripts to the orchestrator',
'privacy.autoHandoffMeetDesc':
"When a Google Meet call ends, OpenHuman's orchestrator can read the transcript and may take actions like drafting messages, scheduling follow-ups, or posting summaries to your connected Slack workspace. Off by default.",
'privacy.analyticsDisclaimer':
'All analytics and bug reports are fully anonymized. When enabled, we collect only crash information, device type, and the file location of errors. We never access your messages, session data, wallet keys, API keys, or any personally identifiable information. You can change this setting at any time.',
// Settings: About
'settings.about.version': 'Version',
'settings.about.updateAvailable': 'is available',
'settings.about.softwareUpdates': 'Software updates',
'settings.about.lastChecked': 'Last checked',
'settings.about.checking': 'Checking...',
'settings.about.checkForUpdates': 'Check for updates',
'settings.about.releases': 'Releases',
'settings.about.releasesDesc': 'Browse release notes and earlier builds on GitHub.',
'settings.about.openReleases': 'Open GitHub releases',
'settings.about.connection': 'Connection',
'settings.about.connectionMode': 'Mode',
'settings.about.connectionModeLocal': 'Local',
'settings.about.connectionModeCloud': 'Cloud',
'settings.about.connectionModeUnset': 'Not selected',
'settings.about.serverUrl': 'Server URL',
'settings.about.serverUrlUnavailable': 'Unavailable',
'settings.about.connectionHelperLocal':
'Spawned in-process by the Tauri shell on app launch. The port is chosen at startup, so this URL changes between launches.',
'settings.about.connectionHelperCloud':
'Connected to a remote core. Change this in BootCheck or the cloud mode picker.',
'settings.heartbeat.title': 'Heartbeat & loops',
'settings.heartbeat.desc': 'Control background scheduling cadences and inspect the loop map.',
'settings.ledgerUsage.title': 'Usage ledger',
'settings.ledgerUsage.desc': 'Recent credit spend, budget math, and background API read budget.',
'settings.costDashboard.title': 'Cost dashboard',
'settings.costDashboard.desc':
'7-day spend and token burn across the swarm, with budget pace and per-model breakdown.',
'settings.costDashboard.sevenDayCost': '7-day daily cost',
'settings.costDashboard.sevenDayTokens': '7-day token usage',
'settings.costDashboard.totalSpend': '7-day total',
'settings.costDashboard.monthlyPace': 'Monthly pace',
'settings.costDashboard.budgetLimit': 'Budget limit',
'settings.costDashboard.utilization': 'Utilisation',
'settings.costDashboard.modelBreakdown': 'Per-model breakdown',
'settings.costDashboard.model': 'Model',
'settings.costDashboard.provider': 'Provider',
'settings.costDashboard.cost': 'Cost',
'settings.costDashboard.tokens': 'Tokens',
'settings.costDashboard.requests': 'Requests',
'settings.costDashboard.percentOfTotal': '% of total',
'settings.costDashboard.inputTokens': 'Input',
'settings.costDashboard.outputTokens': 'Output',
'settings.costDashboard.budgetNormal': 'On track',
'settings.costDashboard.budgetWarning': 'Warning',
'settings.costDashboard.budgetExceeded': 'Over budget',
'settings.costDashboard.noBudget': 'No limit set',
'settings.costDashboard.noData': 'No cost recorded yet for the last 7 days.',
'settings.costDashboard.noModels': 'No model activity in the last 7 days.',
'settings.costDashboard.loading': 'Loading cost dashboard…',
'settings.costDashboard.disabledHint':
'Cost dashboard is disabled in config. Set [cost.dashboard] enabled = true in config.toml to re-enable.',
'settings.costDashboard.subtitle':
'Live spend and token burn across the swarm. Bars auto-refresh every few seconds — no page reload needed.',
'settings.costDashboard.summaryAriaLabel': 'Cost summary metrics',
'settings.costDashboard.lastSevenDays': 'last 7 days',
'settings.costDashboard.utilizationOf': 'of',
'settings.costDashboard.thisMonth': 'this month',
'settings.costDashboard.monthlyPaceHint':
'Projected monthly spend at the current daily run-rate (avg × 30).',
'settings.costDashboard.budgetLimitHint':
'Monthly budget read from cost.monthly_limit_usd in config.toml.',
'settings.costDashboard.dailyTarget': 'Daily target',
'settings.costDashboard.today': 'Today',
'settings.costDashboard.todayBadge': 'TODAY',
'settings.costDashboard.unknownProvider': '—',
'settings.costDashboard.justNow': 'Just now',
'settings.costDashboard.secondsAgo': '{value}s ago',
'settings.costDashboard.minutesAgo': '{value}m ago',
'settings.costDashboard.hoursAgo': '{value}h ago',
'settings.costDashboard.daysAgo': '{value}d ago',
'settings.costDashboard.updated': 'Updated',
'settings.costDashboard.refresh': 'Refresh',
'settings.costDashboard.utcNote': 'Days bucketed in UTC',
'settings.costDashboard.stackedNote': 'Input + output stacked',
'settings.costDashboard.modelBreakdownHint': 'Aggregated across the last 7 days.',
'settings.costDashboard.noDataHint':
'Send an agent message — token usage from the next provider call will populate the chart within ~10 seconds.',
'settings.search.title': 'Search engine',
'settings.search.menuDesc':
'Default to OpenHuman-managed search or wire up your own provider with an API key.',
'settings.search.description':
'Pick the search engine the agent uses. Managed uses OpenHuman’s backend (no setup). Parallel and Brave run direct from your machine using your API key.',
'settings.search.engineAria': 'Search engine',
'settings.search.engineManagedLabel': 'OpenHuman Managed',
'settings.search.engineManagedDesc':
'Default. Routed through the OpenHuman backend — no API key required.',
'settings.search.localManagedUnavailable':
'OpenHuman Managed search is not available for local users. Add your own Parallel or Brave API key to enable web search.',
'settings.search.engineParallelLabel': 'Parallel',
'settings.search.engineParallelDesc':
'Direct Parallel API: search, extract, chat, research, enrich, dataset tools.',
'settings.search.engineBraveLabel': 'Brave Search',
'settings.search.engineBraveDesc': 'Direct Brave Search API: web, news, image, and video tools.',
'settings.search.statusConfigured': 'Configured',
'settings.search.statusNeedsKey': 'Needs API key',
'settings.search.fallbackToManaged':
'No key configured — search will fall back to Managed until a key is saved.',
'settings.search.getApiKey': 'Get API key',
'settings.search.save': 'Save',
'settings.search.clear': 'Clear',
'settings.search.show': 'Show',
'settings.search.hide': 'Hide',
'settings.search.statusSaving': 'Saving…',
'settings.search.statusSaved': 'Saved.',
'settings.search.statusError': 'Failed',
'settings.search.parallelKeyLabel': 'Parallel API key',
'settings.search.braveKeyLabel': 'Brave Search API key',
'settings.search.placeholderStored': '•••••••• (stored)',
'settings.search.placeholderParallel': 'pk_...',
'settings.search.placeholderBrave': 'BSA...',
'settings.search.allowedSitesLabel': 'Allowed websites',
'settings.search.allowedSitesHint':
'Hosts the assistant may open and read — via web fetch and the browser tool — one per line, e.g. reuters.com. A host also covers its subdomains. Web search itself is not restricted by this list.',
'settings.search.allowedSitesAllOn':
'The assistant can open any public website. Local and private addresses stay blocked.',
'settings.search.allowedSitesPlaceholder': 'reuters.com\napnews.com\ngithub.com',
'settings.search.allowedSitesSave': 'Save websites',
'settings.search.accessModeAria': 'Web access mode',
'settings.search.accessAllowAll': 'Allow all',
'settings.search.accessCustom': 'Custom',
'settings.search.accessBlockAll': 'Block all',
'settings.search.accessBlockAllHint':
'All web access is blocked — the assistant cannot open or read any website.',
// ─── Embeddings settings ───────────────────────────────────
'settings.embeddings.title': 'Embeddings',
'settings.embeddings.description':
'Choose which embedding provider converts memory into vectors for semantic search. Changing the provider, model, or dimensions invalidates stored vectors and requires a full memory reset.',
'settings.embeddings.providerAria': 'Embedding provider',
'settings.embeddings.statusConfigured': 'Configured',
'settings.embeddings.statusNeedsKey': 'Needs API key',
'settings.embeddings.apiKeyLabel': '{provider} API key',
'settings.embeddings.placeholderStored': '•••••••• (stored)',
'settings.embeddings.placeholderKey': 'Paste your API key…',
'settings.embeddings.keyStoredEncrypted': 'Your API key is stored encrypted on this device.',
'settings.embeddings.show': 'Show',
'settings.embeddings.hide': 'Hide',
'settings.embeddings.save': 'Save',
'settings.embeddings.clear': 'Clear',
'settings.embeddings.model': 'Model',
'settings.embeddings.dimensions': 'Dimensions',
'settings.embeddings.customEndpoint': 'Custom endpoint',
'settings.embeddings.customModelPlaceholder': 'Model name',
'settings.embeddings.customDimsPlaceholder': 'Dims',
'settings.embeddings.applyCustom': 'Apply',
'settings.embeddings.testConnection': 'Test connection',
'settings.embeddings.testing': 'Testing…',
'settings.embeddings.testSuccess': 'Connected — {dims} dimensions',
'settings.embeddings.testFailed': 'Failed: {error}',
'settings.embeddings.saving': 'Saving…',
'settings.embeddings.saved': 'Saved.',
'settings.embeddings.errorPrefix': 'Failed',
'settings.embeddings.wipeTitle': 'Reset memory vectors?',
'settings.embeddings.wipeBody':
'Switching embedding provider, model, or dimensions will erase all stored memory vectors. Memory must be rebuilt before recall works again. This cannot be undone.',
'settings.embeddings.cancel': 'Cancel',
'settings.embeddings.confirmWipe': 'Wipe & apply',
'settings.embeddings.setupTitle': 'Set up {provider}',
'settings.embeddings.saveAndSwitch': 'Save & switch',
'settings.embeddings.optional': 'optional',
'settings.embeddings.vectorSearchDisabled':
'Vector search is disabled. Memory recall will use keyword matching and recency only — no semantic ranking.',
'settings.embeddings.clearKey': 'Clear API key',
'pages.settings.ai.embeddings': 'Embeddings',
'pages.settings.ai.embeddingsDesc': 'Vector encoding model for memory retrieval',
'mcp.alphaBadge': 'Alpha',
'mcp.alphaBannerText':
'MCP server support is in early alpha. The Smithery registry, install flow, and tool wiring may misbehave or change shape between releases.',
'mcp.toolList.noTools': 'No tools available.',
'mcp.setup.secretDialog.title': 'MCP Setup — Enter Secret',
'mcp.setup.secretDialog.bodyPrefix': 'The MCP setup agent needs',
'mcp.setup.secretDialog.bodySuffix':
'. Your value is sent directly to the core process and never enters the AI conversation.',
'mcp.setup.secretDialog.inputLabel': 'Value',
'mcp.setup.secretDialog.inputPlaceholder': 'Paste here',
'mcp.setup.secretDialog.show': 'Show',
'mcp.setup.secretDialog.hide': 'Hide',
'mcp.setup.secretDialog.submit': 'Submit',
'mcp.setup.secretDialog.cancel': 'Cancel',
'mcp.setup.secretDialog.submitting': 'Submitting…',
'mcp.setup.secretDialog.errorPrefix': 'Failed to submit:',
'mcp.setup.secretDialog.privacyNote':
'Stored encrypted in the local MCP secrets table. Never logged or sent to a model.',
'devices.betaBadge': 'Beta',
'devices.betaText':
'This feature is currently in beta. Pair iOS phones with this OpenHuman to use them as a remote client.',
'devices.comingSoonDescription':
'Device pairing is coming soon. This page will be the home for pairing iPhones and managing connected devices.',
'devices.title': 'Devices',
'devices.pairIphone': 'Pair iPhone',
'devices.noPaired': 'No paired devices',
'devices.emptyState': 'Scan a QR code on your iPhone to connect it to this OpenHuman session.',
'devices.devicePairedTitle': 'Device paired',
'devices.devicePairedMessage': 'iPhone connected successfully.',
'devices.deviceRevokedTitle': 'Device revoked',
'devices.deviceRevokedMessage': '{label} removed.',
'devices.revokeFailedTitle': 'Revoke failed',
'devices.online': 'Online',
'devices.offline': 'Offline',
'devices.lastSeenNever': 'Never',
'devices.lastSeenNow': 'Just now',
'devices.lastSeenMinutes': '{count}m ago',
'devices.lastSeenHours': '{count}h ago',
'devices.lastSeenDays': '{count}d ago',
'devices.revoke': 'Revoke',
'devices.revokeAria': 'Revoke {label}',
'devices.confirmRevokeTitle': 'Revoke device?',
'devices.confirmRevokeBody': '{label} will no longer be able to connect. This cannot be undone.',
'devices.loadFailed': 'Failed to load devices: {message}',
'devices.pairModal.title': 'Pair iPhone',
'devices.pairModal.loading': 'Generating pairing code…',
'devices.pairModal.instructions': 'Open the OpenHuman app on your iPhone and scan this code.',
'devices.pairModal.expiresIn': 'Code expires in ~{count} minute',
'devices.pairModal.expiresInPlural': 'Code expires in ~{count} minutes',
'devices.pairModal.showDetails': 'Show details',
'devices.pairModal.hideDetails': 'Hide details',
'devices.pairModal.channelId': 'Channel ID',
'devices.pairModal.pairingUrl': 'Pairing URL',
'devices.pairModal.expiredTitle': 'QR code expired',
'devices.pairModal.expiredBody': 'Generate a new code to continue pairing.',
'devices.pairModal.generateNewCode': 'Generate new code',
'devices.pairModal.successTitle': 'Paired with iPhone',
'devices.pairModal.autoClose': 'Closing automatically…',
'devices.pairModal.errorPrefix': 'Failed to create pairing: {message}',
'devices.pairModal.errorTitle': 'Something went wrong',
'devices.pairModal.copyUrl': 'Copy',
'mcp.catalog.searchAria': 'Search Smithery catalog',
'mcp.catalog.searchPlaceholder': 'Search Smithery catalog...',
'mcp.catalog.loadFailed': 'Failed to load catalog',
'mcp.catalog.noResults': 'No servers found.',
'mcp.catalog.noResultsFor': 'No servers found for "{query}".',
'mcp.catalog.loadMore': 'Load more',
'mcp.configAssistant.title': 'Configuration assistant',
'mcp.configAssistant.empty': 'Ask about configuration, required env vars, or setup steps.',
'mcp.configAssistant.suggestedValues': 'Suggested values:',
'mcp.configAssistant.valueHidden': '(value hidden)',
'mcp.configAssistant.applySuggested': 'Apply suggested values',
'mcp.configAssistant.reinstallHint': 'Re-install with these values to apply them.',
'mcp.configAssistant.thinking': 'Thinking...',
'mcp.configAssistant.inputPlaceholder': 'Ask a question (Enter to send, Shift+Enter for newline)',
'mcp.configAssistant.send': 'Send',
'mcp.configAssistant.failedResponse': 'Failed to get response',
'mcp.toolList.availableSingular': '{count} tool available',
'mcp.toolList.availablePlural': '{count} tools available',
'mcp.toolList.tryTool': 'Try',
'mcp.toolList.tryToolAria': 'Open execution playground for {name}',
'mcp.playground.title': 'Run {name}',
'mcp.playground.close': 'Close playground',
'mcp.playground.inputSchema': 'Input schema',
'mcp.playground.argsLabel': 'Arguments (JSON)',
'mcp.playground.argsHelp': 'Type JSON matching the input schema. Empty input is treated as {}.',
'mcp.playground.runShortcut': '⌘/Ctrl + Enter to run',
'mcp.playground.format': 'Format',
'mcp.playground.invalidJson': 'Invalid JSON',
'mcp.playground.run': 'Run tool',
'mcp.playground.running': 'Running…',
'mcp.playground.result': 'Result',
'mcp.playground.resultError': 'Tool returned an error',
'mcp.playground.copyResult': 'Copy result',
'mcp.playground.copied': 'Copied',
'mcp.playground.history': 'History',
'mcp.playground.historyEmpty': 'No invocations yet in this session.',
'mcp.playground.historyLoad': 'Load',
'mcp.playground.unexpectedError': 'Unexpected error invoking tool.',
'mcp.catalog.deployed': 'Deployed',
'mcp.catalog.installCount': '{count} installs',
'app.update.dismissNotification': 'Dismiss update notification',
'bootCheck.rpcAuthSuffix': 'on every RPC.',
'app.localAiDownload.expandAria': 'Expand download progress',
'app.localAiDownload.collapseAria': 'Collapse download progress',
'app.localAiDownload.dismissAria': 'Dismiss download notification',
'mobile.nav.ariaLabel': 'Mobile navigation',
'progress.stepsAria': 'Progress steps',
'progress.stepAria': 'Step {current} of {total}',
'workspace.vaultsTitle': 'Knowledge vaults',
'workspace.vaultsDesc': 'Point at a local folder; files are chunked and mirrored into memory.',
'calls.title': 'Calls',
'calls.comingSoonBody': 'AI-assisted calls are coming soon. Stay tuned.',
'art.rotatingTetrahedronAria': 'Rotating inverted tetrahedron spacecraft',
'mcp.installed.title': 'Installed',
'mcp.installed.browseCatalog': 'Browse catalog',
'mcp.installed.empty': 'No MCP servers installed yet.',
'mcp.installed.toolSingular': '{count} tool',
'mcp.installed.toolPlural': '{count} tools',
'mcp.installed.search.landmarkAria': 'Search installed MCP servers',
'mcp.installed.search.inputAria': 'Filter installed MCP servers by name',
'mcp.installed.search.placeholder': 'Filter servers…',
'mcp.installed.search.clearAria': 'Clear filter',
'mcp.installed.search.countMatches': '{shown} of {total} servers',
'mcp.installed.search.noMatches': 'No servers match "{query}".',
'mcp.inventory.openButton': 'Inventory',
'mcp.inventory.openAria': 'Open the sharable MCP inventory panel',
'mcp.inventory.title': 'Sharable MCP Inventory',
'mcp.inventory.subtitle':
'Export your installed MCP servers as a portable, secret-free manifest, or import one from a teammate. Secret env values are never included or imported.',
'mcp.inventory.close': 'Close inventory panel',
'mcp.inventory.tablistAria': 'Inventory sections',
'mcp.inventory.tab.export': 'Export',
'mcp.inventory.tab.import': 'Import',
'mcp.inventory.export.empty':
'No MCP servers installed yet — nothing to export. Install one from the catalog first.',
'mcp.inventory.export.privacyTitle': 'What is in this manifest',
'mcp.inventory.export.privacyBody':
'Server names, qualified names, env-variable KEY NAMES, and non-secret config only. Secret values, your machine identifiers, and per-install timestamps are intentionally stripped.',
'mcp.inventory.export.serverCount': '{count} servers in this manifest',
'mcp.inventory.export.copy': 'Copy',
'mcp.inventory.export.copied': 'Copied',
'mcp.inventory.export.copyAria': 'Copy the manifest JSON to the clipboard',
'mcp.inventory.export.download': 'Download',
'mcp.inventory.export.downloadAria': 'Download the manifest as a JSON file',
'mcp.inventory.import.trustTitle': 'Treat imported manifests as untrusted code',
'mcp.inventory.import.trustBody':
'An MCP server is a tool you grant your agent. Only import manifests from sources you trust. Each install requires your explicit click; nothing is auto-installed.',
'mcp.inventory.import.pasteLabel': 'Paste manifest JSON',
'mcp.inventory.import.pastePlaceholder': 'Paste a manifest here, or upload a .json file below.',
'mcp.inventory.import.preview': 'Preview',
'mcp.inventory.import.clear': 'Clear',
'mcp.inventory.import.uploadFile': 'or upload a .json file',
'mcp.inventory.import.uploadFileAria': 'Upload a manifest .json file',
'mcp.inventory.import.fileTooLarge': 'File is too large (over 1 MB). Refusing to load.',
'mcp.inventory.import.fileReadFailed': 'Could not read file.',
'mcp.inventory.import.parseErrorPrefix': 'Could not parse manifest:',
'mcp.inventory.import.previewHeading': 'Preview',
'mcp.inventory.import.previewCounts':
'{total} servers — {newly} new, {already} already installed',
'mcp.inventory.import.previewEmpty': 'Manifest contains no servers.',
'mcp.inventory.import.exportedFrom': 'Exported from {exporter}',
'mcp.inventory.import.exportedAt': 'at {when}',
'mcp.inventory.import.statusNew': 'New',
'mcp.inventory.import.statusAlreadyInstalled': 'Already installed',
'mcp.inventory.import.envKeysLabel': 'Env keys',
'mcp.inventory.import.install': 'Install',
'mcp.inventory.import.installAria': 'Install {name} from this manifest',
'mcp.inventory.import.skipped': 'skipped',
'mcp.inventory.parseError.empty': 'Manifest is empty.',