-
-
Notifications
You must be signed in to change notification settings - Fork 344
Expand file tree
/
Copy pathlocale.en.ini
More file actions
1842 lines (1842 loc) · 109 KB
/
Copy pathlocale.en.ini
File metadata and controls
1842 lines (1842 loc) · 109 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
[LOCALE]
about.btn.github = GitHub
about.btn.support = Donate
about.btn.website = Website
about.thanks = Special thanks to:
about.thanks.contributors = GitHub community
about.thanks.sponsors = Sponsors
about.thanks.supporters = Supporters
action.add = Add
action.clear = Clear
action.close = Close
action.cmd.expand = JSON output
action.copy = Copy
action.ctx_copy_id = Copy ID
action.ctx.indexed = Last indexed at
action.ctx.new = New context...
action.ctx.new.in_group = New context in: {group}...
action.ctx_reset = Reset (clear)
action.cut = Cut
action.delete = Delete
action.download = Download
action.duplicate = Duplicate
action.edit = Edit
action.group.delete.all = Delete all (with items)
action.group.delete.only = Delete (group only)
action.group.new = New group
action.group.remove = Remove from group
action.idx = Index with LlamaIndex...
action.idx.remove = Remove from
action.import = Import
action.mark = Mark
action.mkdir = Create directory...
action.move_to = Move to
action.new = New...
action.open = Open
action.open_dir = Open in directory...
action.open_dir_dest = Open Destination Directory
action.open_dir_src = Open Source Directory
action.open_dir_storage = Open storage directory
action.open_new_tab = Open in a new tab
action.open_new_window = Open (new window)
action.pack = Pack
action.paste = Paste
action.pin = Pin on top
action.preview = Preview
action.profile.delete = Remove profile (from list only)
action.profile.delete_all = Delete profile (with all user files)
action.redo = Redo
action.refresh = Refresh
action.reload = Reload
action.rename = Rename
action.reset = Reset
action.restore = Restore
action.save = Save
action.save_as = Save as...
action.save_selection_as = Save selection as...
action.select_all = Select all
action.select_unselect_all = Select/Unselect All
action.tab.add.chat = Add a new chat
action.tab.add.chat.tooltip = Add a new chat (right-click for more options...)
action.tab.add.notepad = Add a new notepad
action.tab.add.tool = Add a new tool
action.tab.close = Close
action.tab.close_all.chat = Close all chats
action.tab.close_all.notepad = Close all notepads
action.tab.move.left = Move to left column
action.tab.move.right = Move to right column
action.touch = Create file...
action.truncate = Truncate
action.undo = Undo
action.unmark = Unmark
action.unpack = Unpack
action.unpin = Unpin
action.upload = Upload files here...
action.use = Use
action.use.attachment = As attachment
action.use.copy_sys_path = Copy system path
action.use.copy_work_path = Copy working path
action.use.image = As image...
action.use.read_cmd = Ask to read this file...
action.video.open = Open video or audio...
action.video.play = Play video or audio...
action.video.transcribe = Transcribe audio...
agent.builder.confirm.clear.msg = Do you really want to clear the graph?
agent.builder.confirm.clear.title = Clear
agent.builder.confirm.delete.msg = Do you really want to delete the agent?
agent.builder.title = Agent Builder
agent.coder.additional.label = Additional prompt
agent.coder.additional.prompt.desc = Additional prompt for agent (will be added to the base prompt)
agent.coder.base.label = Base prompt
agent.coder.base.prompt.desc = Code execution prompt (initial)
agent.eval.feedback = Feedback
agent.eval.next = Re-running with feedback
agent.eval.score = Evaluator score
agent.eval.score.good = Response is good enough, exiting.
agent.evolve.generation = Generation
agent.evolve.maxgen_limit = Max generations reached, exiting.
agent.evolve.option.max_generations = Max generations
agent.evolve.option.num_parents = Number of parents
agent.evolve.running = Running agent
agent.evolve.winner = Winner: Agent
agent.infinity.confirm.content = WARNING: You are attempting to run an infinite loop! This may cause heavy token usage. Are you sure you want to continue?
agent.name.supervisor = Supervisor
agent.name.worker = Worker
agent.option.debug.trace_id = Trace ID
agent.option.debug.trace_id.desc = Optional Trace ID for tracing in OpenAI panel: https://platform.openai.com/logs?api=traces (OpenAI agents only)
agent.option.model = Model
agent.option.name = Name
agent.option.prompt = Prompt
agent.option.prompt.b1.desc = Prompt for bot 1
agent.option.prompt.b2.desc = Prompt for bot 2
agent.option.prompt.base.desc = Prompt for Base Agent
agent.option.prompt.chooser.desc = Prompt for Chooser agent
agent.option.prompt.desc = Prompt for agent
agent.option.prompt.feedback.desc = Prompt for feedback evaluation
agent.option.prompt.planner.desc = Prompt for Planner agent
agent.option.prompt.refine.desc = Prompt for plan refining
agent.option.prompt.search.desc = Prompt for search agent
agent.option.prompt.supervisor.desc = Prompt for Supervisor
agent.option.prompt.worker.desc = Prompt for Worker
agent.option.refine.after_each = After each step
agent.option.refine.after_each.desc = Refine plan after each step
agent.option.role = Short description of the agent's operation for instructing the model (optional)
agent.option.role.label = Role
agent.option.section.base = Base agent
agent.option.section.chooser = Chooser
agent.option.section.feedback = Feedback
agent.option.section.planner = Planner
agent.option.section.refine = Refine plan
agent.option.section.search = Search
agent.option.section.supervisor = Supervisor
agent.option.section.worker = Worker
agent.option.section.writer = Writer
agent.option.tools.local = Allow local tools
agent.option.tools.local.desc = Allow usage of local tools for this agent
agent.option.tools.remote = Allow remote tools
agent.option.tools.remote.desc = Allow usage of remote tools for this agent
agent.planner.display.executor = Executor
agent.planner.display.executor_agent = FunctionAgent
agent.planner.display.planner = PlannerWorkflow
agent.planner.label.execute = Execute
agent.planner.label.plan = Plan
agent.planner.label.refine = Refine
agent.planner.label.refine.index = Refine {index}
agent.planner.label.refine.index_total = Refine {index}/{total}
agent.planner.label.step = Step
agent.planner.label.subtask = Sub-task
agent.planner.label.subtask.index = Sub-task {index}
agent.planner.label.subtask.index_total = Sub-task {index}/{total}
agent.planner.label.with_name = {base}: {name}
agent.planner.plan.label = Planner (initial)
agent.planner.plan.prompt.desc = Initial plan prompt
agent.planner.refine.label = Planner (refine)
agent.planner.refine.prompt.desc = Plan refinement prompt
agent.planner.step.label = Execute prompt
agent.planner.step.prompt.desc = Step execution prompt
agent.planner.ui.current_plan = Current plan:
agent.planner.ui.dependencies = Dependencies:
agent.planner.ui.executing_plan = Executing plan...
agent.planner.ui.execution_stopped = Plan execution stopped.
agent.planner.ui.expected_output = Expected output:
agent.planner.ui.plan_execution_finished = Plan execution finished.
agent.planner.ui.plan_finished = Plan finished.
agent.planner.ui.plan_marked_complete = Planner marked the plan as complete: {reason}
agent.planner.ui.refine_failed_parse = Refine step failed to parse; continuing without changes.
agent.planner.ui.refining_remaining_plan = Refining remaining plan...
agent.planner.ui.subtask_failed = Sub-task failed: {error}
agent.planner.ui.subtask_finished = Finished sub-task {index}/{total}: {name}
agent.planner.ui.subtask_header.one = **===== Sub-task {index}: {name} =====**
agent.planner.ui.subtask_header.progress = **===== Sub-task {index}/{total}: {name} =====**
agent.planner.ui.updated_remaining_plan = Updated remaining plan:
agent.tab.debug = Debug
alert.preset.empty_id = Name is required.
alert.preset.no_chat_completion = At least one of: chat, completion, img, or vision option is required!
alert.snap.file_manager = Snap detected. Please open the directory manually in your file manager:
alert.title = Info
assistant.action.delete = Delete
assistant.action.duplicate = Duplicate
assistant.action.edit = Edit
assistant.api.tip = Help: https://platform.openai.com/assistants
assistant.description = Description
assistant.form.empty.fields = Name and model are required fields.
assistant.func.add = + Function
assistant.functions.label = Functions
assistant.id = ID
assistant.import = Import
assistant.instructions = Instructions (system prompt)
assistant.model = Model
assistant.name = Name
assistant.new = Create
assistant.new.id_tip = Leave the ID empty if you are creating a new Assistant.\n...or provide the ID from OpenAI if the Assistant already exists on the server.
assistant.run.completed = Run: Completed
assistant.run.failed = Run: Failed
assistant.run.func.call = Run: func call...
assistant.run.listening = Run: in progress...
assistant.tool.code_interpreter = Code Interpreter
assistant.tool.file_search = Chat with Files
assistant.tool.function = Function
assistant.tool.retrieval = Retrieval
assistant.vector_store = Vector Store
attachments.auto_index = Auto-index on upload
attachments.btn.add = Add file
attachments.btn.add_url = Web
attachments.btn.clear = Clear
attachments.btn.input.add = Add attachment
attachments.capture_clear = Clear on capture
attachments.clear.confirm = Clear list?
attachments.ctx.indexed = Yes
attachments.ctx.label = Extra context
attachments.ctx.mode.full = Full context
attachments.ctx.mode.off = Off (disable)
attachments.ctx.mode.query = RAG
attachments.ctx.mode.summary = Summary
attachments.ctx.tooltip.list = {num} attachment(s)
attachments.delete.confirm = Remove file from list?
attachments.header.ctx = Ctx
attachments.header.idx = Idx
attachments.header.length = Length (chars / tokens)
attachments.header.name = Name
attachments.header.path = Path
attachments.header.size = Size
attachments.header.store = Vector Store(s)
attachments.options.label = Options
attachments.paste.file = Clipboard attachment
attachments.paste.img = Clipboard image
attachments.paste.success = Added attachment from clipboard
attachments.send_clear = Clear list after sending
attachments.tab = Attachments
attachments_uploaded.btn.clear = Clear
attachments_uploaded.btn.sync = Sync
attachments_uploaded.btn.sync.all = All stores
attachments_uploaded.btn.sync.current = Current only
attachments_uploaded.clear.confirm = WARNING: Are you sure you want to delete all these files from the remote server?
attachments_uploaded.delete.confirm = WARNING: Are you sure you want to delete this file from the remote server?
attachments_uploaded.sync.tip = Tip: click on 'Sync' to retrieve the file list from OpenAI
attachments_uploaded.tab = Uploaded
audio.auto_turn = Auto (VAD)
audio.cache.clear.confirm = Are you sure you want to delete all cached audio files?
audio.cache.clear.success = OK. All audio cache files cleared.
audio.control.btn = Voice control
audio.loop = Loop
audio.magic_word.detected = Magic word detected!
audio.magic_word.invalid = Not a magic word :(
audio.magic_word.please = Magic word, please...
audio.speak.btn = Microphone
audio.speak.btn.continuous = Continuous recording
audio.speak.btn.stop = Stop
audio.speak.btn.stop.tooltip = Click to stop microphone listening
audio.speak.btn.tooltip = Click to start microphone listening
audio.speak.energy = Mic volume
audio.speak.ignoring = Ignored (no prefix)
audio.speak.now = Speak now...
audio.speak.sending = Sending...
audio.speak.wait = Wait...
audio.transcribe.auto_convert = Always convert video to mp3 before transcription (ffmpeg required)
audio.transcribe.clear.confirm = Clear current transcription?
audio.transcribe.confirm = Are you sure you want to transcribe this audio/video file?
audio.transcribe.open = Open audio/video file and transcribe...
audio.transcribe.result.finished = Finished: {path}
audio.transcribe.result.selected = Selected file: {path}
audio.transcribe.tip = Tip: click on "Open..." to begin transcribing the audio from the file. The audio input provider from the plugin settings will be utilized.
audio.transcribe.title = Audio transcription
calendar.day.label = Set label color...
calendar.day.label.color.blue = Blue
calendar.day.label.color.default = Default
calendar.day.label.color.green = Green
calendar.day.label.color.indigo = Indigo
calendar.day.label.color.orange = Orange
calendar.day.label.color.red = Red
calendar.day.label.color.violet = Violet
calendar.day.label.color.yellow = Yellow
calendar.day.search = Show conversations
calendar.note.label = Day note
changed.confirm = Do you want to save your changes before continuing?
chatbox.label = Chat
chatbox.plugins = plugin(s)
chat.name.bot = AI
chat.name.user = You
chat.prefix.attachment = Attachment
chat.prefix.doc = Sources (LlamaIndex)
chat.prefix.file = File
chat.prefix.img = Image
chat.prefix.url = Link
clipboard.copied = Copied to clipboard.
clipboard.copied_to = Copied to clipboard:
cmd.enabled = + Tools
cmd.tip = Tip: To enable the execution of tools from plugins, you must enable the "+ Tools" option.
coming_soon = Coming soon...
common.down = Move down
common.up = Move up
computer_use.sandbox = Sandbox (Playwright)
computer_use.sandbox.tooltip = Run web automation in a sandboxed environment using Playwright - recommended for better security.\nINFO: Playwright must be installed and set up properly.
confirm.assistant.delete = Delete assistant?
confirm.assistant.files.clear = Clear files (local only)?
confirm.assistant.functions.clear = Are you sure you want to clear the functions list?
confirm.assistant.functions.import = Import functions from ACTIVE plugins?\nINFO: All functions in the list with the same names will be replaced!
confirm.assistant.import = Import all assistants from API?
confirm.ctx.delete = Delete group?
confirm.ctx.delete.all = Delete group and all items?
confirm.img.delete = Delete file from disk?
confirm.preset.avatar.delete = Are you sure you want to delete the avatar?
confirm.preset.clear = Are you sure you want to clear the preset?
confirm.preset.delete = Are you sure you want to delete this preset?
confirm.preset.overwrite = Preset exists. Overwrite?
confirm.preset.restore = Restore default preset for this mode?
confirm.profile.delete = Are you sure you want to delete the profile? It will only be removed from the list.
confirm.profile.delete_all = Are you sure you want to delete the profile with all config files and user data files in the profile working directory?
confirm.profile.reset = Are you sure you want to restore the profile to default settings? WARNING: All configuration files and context database will be removed! The data directory will be kept - to remove it, you must delete it manually or use the delete option.
confirm.remote_store.clear = Clear vector stores (local only)?
confirm.remote_store.file.delete = Delete selected file in API?
confirm.remote_store.files.truncate = Are you sure you want to remove all files from all Assistants?
confirm.remote_store.files.truncate.store = Are you sure you want to remove all files from the selected store?
confirm.remote_store.import = Import all vector stores from API?
confirm.remote_store.import_files = Import all files from API?
confirm.remote_store.import_files.store = Import current store files from API?
confirm.remote_store.refresh = Refresh all stores?
confirm.remote_store.truncate = Delete all vector stores in API?
context.btn.clear = Clear memory
context.items = items
context.label = Context
context_menu.zoom = Zoom
context_menu.zoom.in = Zoom In
context_menu.zoom.out = Zoom Out
context.tokens = tokens
ctx.delete.all.confirm = Are you sure you want to delete ALL history contexts?
ctx.delete.confirm = Are you sure you want to delete?
ctx.delete.item.confirm = Delete conversation item?
ctx.delete.item.link = delete
ctx.extra.audio = Read response (audio)
ctx.extra.collapse = Collapse
ctx.extra.copied = Copied
ctx.extra.copy = Copy
ctx.extra.copy_code = Copy
ctx.extra.delete = Delete this item
ctx.extra.edit = Edit and regenerate (from this point)
ctx.extra.expand = Expand
ctx.extra.join = Append to previous response (merge)
ctx.extra.preview = Preview
ctx.extra.reply = Regenerate response (from this point)
ctx.extra.run = Run
ctx.join.item.confirm = Append this response to the previous response (merge items)?
ctx.list.label = Context and history
ctx.list.search.placeholder = Search...
ctx.new = New
ctx.new.prefix = New
ctx.replay.item.confirm = Regenerate response from this point?
ctx.reset_meta.confirm = Are you sure you want to reset this context? All items will be deleted!
ctx.tokens = tokens
db.backup = Auto backup
db.backup.tip = Create a backup before every delete/truncate/update
db.limit = Limit
db.next = Next
db.order = Order
db.page = Page
db.prev = Prev
db.refresh = Refresh
db.search = Search
db.search_in = in
db.search.placeholder = Search...
db.sort = Sort by
db.table = Table:
db.time_convert = Convert time()
db.time_convert.tip = Convert timestamp columns to YYYY-MM-DD HH:MM:SS format
dialog.about.build = Build
dialog.about.docs = Documentation
dialog.about.email = Email
dialog.about.github = GitHub
dialog.about.title = About
dialog.about.version = Version
dialog.about.website = Official website
dialog.agent.not_selected = Please select or add an agent first.
dialog.assistant = Create / Edit assistant
dialog.assistant.btn.clear_func = Clear
dialog.assistant.btn.close = Cancel
dialog.assistant.btn.current = Use current
dialog.assistant.btn.import_func = Import functions
dialog.assistant.btn.save = Save
dialog.assistant.btn.store = Vector Stores
dialog.changelog.title = Changelog
dialog.confirm.no = No
dialog.confirm.title = Confirmation
dialog.confirm.yes = Yes
dialog.create.dismiss = Cancel
dialog.create.title = Name
dialog.create.update = Create
dialog.css.restore.confirm = Restore default CSS? (all changes in custom CSS files will be moved to .backup files)
dialog.css.restore.confirm.success = OK. Restored to default CSS styles.
dialog.editor.btn.defaults = Restore
dialog.editor.btn.defaults.app = Load defaults
dialog.editor.btn.save = Save
dialog.editor.label = Editing config file - restart is required to reload changes.
dialog.editor.title = Edit JSON/CSS file
dialog.find.btn.clear = Clear
dialog.find.btn.find_next = Find Next
dialog.find.btn.find_prev = Find Prev
dialog.find.title = Find...
dialog.html_canvas.title = HTML/JS Canvas (Chromium)
dialog.image.title = Generated image
dialog.interpreter.title = Python Code Interpreter
dialog.license.accept = I agree
dialog.license.label = By using this Software you are accepting the following terms:
dialog.license.title = License
dialog.logger.btn.clear = Clear
dialog.logger.title = Logger
dialog.models.editor = Models editor
dialog.models.editor.btn.defaults.app = Load defaults
dialog.models.editor.btn.defaults.user = Undo changes
dialog.models.editor.btn.new = Create
dialog.models.editor.btn.save = Save
dialog.models.editor.defaults.app.confirm = Load models factory settings?
dialog.models.editor.defaults.app.result = Restored to models factory settings.
dialog.models.editor.defaults.user.confirm = Undo current changes?
dialog.models.editor.defaults.user.result = Restored models user config
dialog.models.editor.delete.confirm = Are you sure you want to delete the model?
dialog.models.importer = Import models...
dialog.models.importer.btn.cancel = Cancel
dialog.models.importer.btn.refresh = Refresh
dialog.models.importer.btn.save = Save
dialog.ollama.model_not_found = The requested model ({model}) is not available in your Ollama.\nPlease download the model first by executing the command:\nollama pull {model}
dialog.ollama.not_installed = Ollama is not installed or not running.\nPlease install Ollama first by visiting:\nhttps://ollama.com/download
dialog.plugin_settings = Plugin settings
dialog.plugin.settings.btn.defaults.app = Load defaults
dialog.plugin.settings.btn.defaults.user = Undo changes
dialog.plugin.settings.btn.save = Save
dialog.plugin.settings.defaults.app.confirm = Load factory plugin settings?
dialog.plugin.settings.defaults.app.result = Restored to plugin factory settings.
dialog.plugin.settings.defaults.user.confirm = Undo current changes?
dialog.plugin.settings.defaults.user.result = Restored plugin user config
dialog.preset = Preset editor
dialog.preset.btn.current = Use current
dialog.preset.btn.save = Save
dialog.preset.plugins.editor = Plugins preset editor
dialog.profile.alert.delete.current = Cannot delete the current active profile!
dialog.profile.alert.duplicate.not_empty = Directory is not empty and there is no previous config inside! Aborting.\n\nTip: choose an existing workdir or an empty directory to create a new workdir in it.
dialog.profile.alert.name.empty = Name cannot be empty!
dialog.profile.alert.path.empty = Workdir path cannot be empty!
dialog.profile.alert.path.not_exists = Directory does not exist!
dialog.profile.alert.path.same = Source and destination paths are the same! Aborted.
dialog.profile.alert.src.empty = Source profile not found! Aborted.
dialog.profile.checkbox.include_datadir = + "data" directory
dialog.profile.checkbox.include_db = + database
dialog.profile.checkbox.switch = Switch to created profile
dialog.profile.editor = Profiles
dialog.profile.item.btn.create = Create
dialog.profile.item.btn.dismiss = Cancel
dialog.profile.item.btn.duplicate = Duplicate here
dialog.profile.item.btn.update = Update
dialog.profile.item.editor = Profile
dialog.profile.name.label = Profile name
dialog.profile.new = New profile
dialog.profile.status.changed = Profile changed to
dialog.profile.status.created = Profile created.
dialog.profile.status.deleted = Profile deleted
dialog.profile.status.duplicated = Profile duplicated.
dialog.profile.status.removed = Profile removed from list
dialog.profile.status.updated = Profile updated.
dialog.profile.tip = By creating new profiles, you can use separate settings, different context histories, and user data, and quickly switch between them.
dialog.profile.workdir.label = Workdir (directory for config files and user data)
dialog.remote_store = Remote vector stores (OpenAI, Google, xAI)
dialog.remote_store.alert.assign = Please assign a vector store for the Assistant first.
dialog.remote_store.alert.select = Please select a vector store first.
dialog.remote_store.btn.close = Cancel
dialog.remote_store.btn.new = Create
dialog.remote_store.btn.refresh_status = Refresh status
dialog.remote_store.btn.save = Save
dialog.remote_store.btn.upload.dir = + Directory
dialog.remote_store.btn.upload.files = + Files
dialog.remote_store.delete.confirm = Are you sure you want to delete the OpenAI Vector Store?
dialog.remote_store.google = Google Vector Stores
dialog.remote_store.menu.all = All stores...
dialog.remote_store.menu.all.clear_files = Clear files (all, local only)
dialog.remote_store.menu.all.clear_store = Clear vector stores (all, local only)
dialog.remote_store.menu.all.import_all = Import everything (all, stores + files)
dialog.remote_store.menu.all.import_files = Import files only (all)
dialog.remote_store.menu.all.refresh_store = Refresh all statuses
dialog.remote_store.menu.all.truncate_files = Truncate files (all, local + remote)
dialog.remote_store.menu.all.truncate_store = Truncate vector stores (all, local + remote)
dialog.remote_store.menu.current = Current store...
dialog.remote_store.menu.current.clear_files = Clear files (local only)
dialog.remote_store.menu.current.delete = Delete store (+ files, local + remote)
dialog.remote_store.menu.current.import_files = Import files
dialog.remote_store.menu.current.refresh_store = Refresh status
dialog.remote_store.menu.current.truncate_files = Truncate files (local + remote)
dialog.remote_store.openai = OpenAI Vector Stores
dialog.rename.dismiss = Cancel
dialog.rename.title = Change name
dialog.rename.update = Update name
dialog.settings = Settings
dialog.settings.btn.defaults.app = Load defaults
dialog.settings.btn.defaults.user = Undo changes
dialog.settings.btn.save = Save
dialog.settings.defaults.app.result = Restored to factory settings. Previous settings saved in: config.json.backup.
dialog.settings.defaults.user.result = Restored user config
dialog.start.btn = Go to settings...
dialog.start.link = https://platform.openai.com/account/api-keys
dialog.start.settings.text = If you already have an API key, you can configure it in the settings window.\nClick the "Go to Settings" button, and then paste your API key into the API key field.
dialog.start.title = API key is not configured
dialog.start.title.text = Your API key for this provider is not configured yet.\n\nPlease go to the menu Config -> Settings -> API Keys,\nand paste your API key into the API Key field in provider's tab:
dialog.translator.title = Translator
dialog.url.dismiss = Cancel
dialog.url.tip = Provide the URL of the web page you want to attach as additional context, e.g., https://pl.wikipedia.org/wiki/Elon_Musk, or a YouTube video to transcribe, e.g., https://www.youtube.com/watch?v=CRRlbK5w8AE.
dialog.url.title = Add web or external content to provide additional context.
dialog.url.update = Add
dialog.workdir.change.confirm = Are you sure you want to change/move workdir to:\n{path}?
dialog.workdir.change.empty.alert = Directory is not empty! Aborting.
dialog.workdir.reset.btn = Current
dialog.workdir.result.directory_not_exists = Destination directory does not exist!
dialog.workdir.result.failed = An error occurred while moving the working directory.
dialog.workdir.result.no_free_space = Not enough disk space! Required: {required}, Free space: {free}.
dialog.workdir.result.same_directory = Nothing to move.
dialog.workdir.result.success = [OK] The working directory is currently set to: {path}
dialog.workdir.result.wait = Please wait... moving the current working directory... This may take a while...
dialog.workdir.tip = Choose a directory from the disk and click 'Change/Move...' to move the current working directory to a new location, or to set the current working directory to an existing one. Required disk space (for move): {size}
dialog.workdir.title = Change working directory
dialog.workdir.update.btn = Change/Move...
dialog.workdir.update.confirm = EXISTING WORKDIR: The directory "{path}" is not empty and already contains data from another workdir. Would you like to ONLY set this existing directory as the current workdir (without moving any data)?
dictionary.assistant.tool.function.desc = Description (optional)
dictionary.assistant.tool.function.name = Function name
dictionary.assistant.tool.function.params = Function params (JSON object)
dictionary.cmd.param.description = Description (optional)
dictionary.cmd.param.name = Param name
dictionary.cmd.param.required = Required (optional)
dictionary.cmd.param.type = Param type
dictionary.config.access.audio.event.speech.disabled.muted_action = Muted action
dictionary.config.access.shortcuts.action = Action to trigger
dictionary.config.access.shortcuts.key = Keyboard key
dictionary.config.access.shortcuts.key_modifier = Keyboard modifier
dictionary.config.llama.hub.loaders.args.loader = Data loader
dictionary.config.llama.hub.loaders.args.name = Name of keyword argument
dictionary.config.llama.hub.loaders.args.type = Type: for dict use JSON string, for list: item1,item2,etc.
dictionary.config.llama.hub.loaders.args.value = Value of keyword argument
dictionary.config.llama.hub.loaders.ext = File extensions (separated by comma if more than one)
dictionary.config.llama.hub.loaders.loader = Loader name on LlamaHub (name is passed to download_loader())
dictionary.config.llama.idx.custom_meta.extensions = File extension(s), separated by comma. Use * (asterisk) as an extension if you want to apply field to all files
dictionary.config.llama.idx.custom_meta.key = Metadata key (field name)
dictionary.config.llama.idx.custom_meta.value = Metadata value. Allowed placeholders: {path}, {relative_path} {filename}, {dirname}, {relative_dir} {ext}, {size}, {mtime}, {date}, {date_time}, {time}, {timestamp}. Set an empty value to remove the field with the specified key from metadata.
dictionary.config.llama.idx.custom_meta.web.key = Metadata key (field name)
dictionary.config.llama.idx.custom_meta.web.loader = Data type (loader)
dictionary.config.llama.idx.custom_meta.web.value = Metadata value. Allowed placeholders: {mtime}, {date}, {date_time}, {time}, {timestamp} + {data loader args}
dictionary.config.llama.idx.embeddings.args.name = Name of keyword argument
dictionary.config.llama.idx.embeddings.args.type = Type: for dict use JSON string, for list: item1,item2,etc.
dictionary.config.llama.idx.embeddings.args.value = Value of keyword argument
dictionary.config.llama.idx.embeddings.env.name = ENV name (to set with os.environ)
dictionary.config.llama.idx.embeddings.env.value = ENV value, use {config_key} as a placeholder to use the value from the application configuration.
dictionary.config.llama.idx.list.id = ID (directory name for index)
dictionary.config.llama.idx.list.model_embed = Model to use for embedding (indexing), default: %MODEL_DEFAULT_MINI%
dictionary.config.llama.idx.list.model_query = Model for querying
dictionary.config.llama.idx.list.name = Name
dictionary.config.llama.idx.storage.args.name = Name of keyword argument
dictionary.config.llama.idx.storage.args.type = Type: for dict use JSON string, for list: item1,item2,etc.
dictionary.config.llama.idx.storage.args.value = Value of keyword argument
dictionary.model.langchain.args.name = Name of keyword argument
dictionary.model.langchain.args.type = Type: for dict use JSON string, for list: item1,item2,etc.
dictionary.model.langchain.args.value = Value of keyword argument
dictionary.model.langchain.env.name = ENV name (to set with os.environ)
dictionary.model.langchain.env.value = ENV value, use {config_key} as a placeholder to use the value from the application configuration.
dictionary.model.llama_index.args.name = Name of keyword argument
dictionary.model.llama_index.args.type = Type: for dict use JSON string, for list: item1,item2,etc.
dictionary.model.llama_index.args.value = Value of keyword argument
dictionary.model.llama_index.env.name = ENV name (to set with os.environ)
dictionary.model.llama_index.env.value = ENV value, use {config_key} as a placeholder to use the value from the application configuration.
dictionary.plugin.agent.prompts.enabled = Enabled (on/off)
dictionary.plugin.agent.prompts.name = Name
dictionary.plugin.agent.prompts.prompt = Prompt to handle autonomous mode
dictionary.plugin.audio_input.bing_args.name = Keyword argument name
dictionary.plugin.audio_input.bing_args.type = Type: for dict use JSON string, for list: item1,item2,etc.
dictionary.plugin.audio_input.bing_args.value = Keyword argument value
dictionary.plugin.audio_input.google_args.name = Keyword argument name
dictionary.plugin.audio_input.google_args.type = Type: for dict use JSON string, for list: item1,item2,etc.
dictionary.plugin.audio_input.google_args.value = Keyword argument value
dictionary.plugin.audio_input.google_cloud_args.name = Keyword argument name
dictionary.plugin.audio_input.google_cloud_args.type = Type: for dict use JSON string, for list: item1,item2,etc.
dictionary.plugin.audio_input.google_cloud_args.value = Keyword argument value
dictionary.plugin.cmd_api.cmds.enabled = Enabled (True/False)
dictionary.plugin.cmd_api.cmds.endpoint = Endpoint: API endpoint URL, use {param} as GET param placeholders
dictionary.plugin.cmd_api.cmds.get_params = GET params: list, separated by comma; GET params to append to endpoint URL
dictionary.plugin.cmd_api.cmds.headers = Headers: provide the JSON object with a dictionary of extra request headers, like Authorization, API keys, etc.
dictionary.plugin.cmd_api.cmds.instruction = Instruction: description for the model on when and how to use this API call
dictionary.plugin.cmd_api.cmds.name = Name: unique API call name (ID)
dictionary.plugin.cmd_api.cmds.post_json = POST JSON: provide the JSON object, template to send in POST JSON request, use %param% as POST param placeholders
dictionary.plugin.cmd_api.cmds.post_params = POST params: list, separated by comma; POST params to send in POST request
dictionary.plugin.cmd_api.cmds.type = Request type: use GET for basic GET request, POST to send encoded POST params, or POST_JSON to send JSON-encoded object as body
dictionary.plugin.cmd_custom.cmds.cmd = Command to execute
dictionary.plugin.cmd_custom.cmds.enabled = Enabled (True/False)
dictionary.plugin.cmd_custom.cmds.instruction = Instruction prompt
dictionary.plugin.cmd_custom.cmds.name = Command name
dictionary.plugin.cmd_custom.cmds.params = Params list (separated by comma)
dictionary.plugin.crontab.crontab.crontab = Crontab (cron-syntax)
dictionary.plugin.crontab.crontab.enabled = Enabled (True/False)
dictionary.plugin.crontab.crontab.preset = Preset to use
dictionary.plugin.crontab.crontab.prompt = Prompt to send
dictionary.plugin.extra_prompt.prompts.enabled = Active (True/False)
dictionary.plugin.extra_prompt.prompts.name = Name
dictionary.plugin.extra_prompt.prompts.prompt = Prompt to append to the system prompt
dictionary.plugin.self_loop.prompts.enabled = Active (True/False)
dictionary.plugin.self_loop.prompts.name = Name
dictionary.plugin.self_loop.prompts.prompt = Prompt (system instruction)
dictionary.preset.tool.function.desc = Description (optional)
dictionary.preset.tool.function.name = Function name
dictionary.preset.tool.function.params = Function params (JSON object)
docker.build.finish = Success! The Docker image has been built. You can now request the execution of the previous command again.
docker.build.start = Building Docker image... please wait...
docker.image.build = The Docker image has not been built yet. This will happen now, and it may take a while (but it's a one-time procedure). The execution of the command has been paused. Once the image is built, please execute the command again.
docker.install = Sandbox requires Docker to be installed. Docker was not detected on this system. Please install Docker first; you can find the instructions here: https://docs.docker.com/engine/install/. The execution of the current command has been paused.
docker.install.snap = \n\nSNAP VERSION: \nYou are not connected to the built-in Docker daemon. Please connect the slots with:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...and restart the application.
dt.days_ago = days ago
dt.month = month ago
dt.today = today
dt.week = week ago
dt.weeks = weeks ago
dt.yesterday = yesterday
error.assistant_not_selected = Please create, import, or select an assistant first!
eval.score = Score
event.audio.app.started = Welcome!
event.audio.app.status = Current mode: {mode}.\nCurrent conversation: {ctx}, last updated {last}.\nTotal conversations: {total}.
event.audio.calendar.add = Memo added to calendar.
event.audio.calendar.clear = Memos cleared in the calendar.
event.audio.camera.captured = Image has been captured from the camera.
event.audio.camera.disabled = Camera disabled.
event.audio.camera.enabled = Camera enabled.
event.audio.cmd = Voice command: {cmd}
event.audio.cmd.unrecognized = Voice command not recognized.
event.audio.confirm = Confirm this command by sending voice input again with the text "I confirm the command".
event.audio.ctx.attachments.clear = Attachments list empty.
event.audio.ctx.created = New context has been created.
event.audio.ctx.current = Current conversation: {ctx}, last updated: {last}.
event.audio.ctx.end = Finished.
event.audio.ctx.last = Your input: {input}. AI response: {output}.
event.audio.ctx.rename = Context renamed to {ctx}.
event.audio.ctx.search.clear = Search string cleared.
event.audio.ctx.search.string = Found records: {num}.
event.audio.ctx.selected = Selected context: {ctx}.
event.audio.input.append = Text appended to input.
event.audio.input.call = Input call.
event.audio.input.disable = Audio input disabled.
event.audio.input.enable = Audio input enabled.
event.audio.input.error = An error occurred during sending input.
event.audio.input.sent = Input sent.
event.audio.input.stopped = Input stopped.
event.audio.input.voice.listen.started = Listening. Please speak now.
event.audio.input.voice.listen.stopped = Listening has been stopped.
event.audio.model.selected = Selected model: {model}
event.audio.mode.selected = Selected mode: {mode}
event.audio.note.add = Note added to notepad.
event.audio.notepad.clear = Notepad cleared.
event.audio.output.disable = Audio output disabled.
event.audio.output.enable = Audio output enabled.
event.audio.preset.selected = Selected preset: {preset}
event.audio.tab.switch = Selected Tab is: {tab}.
event.audio.voice.control.sent = OK.
event.audio.voice.control.started = Voice control activated.
event.audio.voice.control.stopped = Voice control deactivated.
event.audio.voice.control.toggle = Voice control has been toggled.
event.audio.voice.control.unrecognized = Unrecognized command.
event.control.app.exit = App: Exit
event.control.app.status = App: Status
event.control.audio.input.disable = Audio input: Disable
event.control.audio.input.enable = Audio input: Enable
event.control.audio.output.disable = Audio output: Disable
event.control.audio.output.enable = Audio output: Enable
event.control.calendar.add = Memo added to calendar.
event.control.calendar.clear = Memos cleared in the calendar.
event.control.calendar.read = Calendar: Read
event.control.camera.capture = Camera: Capture
event.control.camera.disable = Camera: Disable
event.control.camera.enable = Camera: Enable
event.control.cmd.confirm = Confirmed.
event.control.cmd.list = Commands list (help).
event.control.ctx.attachments.clear = Attachments: Clear
event.control.ctx.current = Context: Current
event.control.ctx.input.append = Input: Append
event.control.ctx.input.clear = Input: Clear
event.control.ctx.input.focus = Input: Focus
event.control.ctx.input.send = Input: Send
event.control.ctx.last = Context: Last
event.control.ctx.new = Context: New
event.control.ctx.next = Context: Next
event.control.ctx.prev = Context: Prev
event.control.ctx.read.all = Context: Read (all)
event.control.ctx.read.last = Context: Read (latest)
event.control.ctx.rename = Context: Rename
event.control.ctx.search.clear = Search string cleared.
event.control.ctx.search.string = Search for conversation.
event.control.ctx.stop = Input: Stop
event.control.input.sent = Input sent.
event.control.input.stopped = Input stopped.
event.control.mode.chat = Mode: Chat
event.control.mode.llama_index = Mode: Chat with Files
event.control.model.next = Model: Next
event.control.model.prev = Model: Prev
event.control.mode.next = Mode: Next
event.control.mode.prev = Mode: Prev
event.control.note.add = Note added to notepad.
event.control.notepad.clear = Notepad cleared.
event.control.notepad.read = Notepad: Read
event.control.preset.next = Preset: Next
event.control.preset.prev = Preset: Prev
event.control.tab.calendar = Tab: Calendar
event.control.tab.chat = Tab: Chat
event.control.tab.draw = Tab: Draw
event.control.tab.files = Tab: Files
event.control.tab.next = Tab: Next
event.control.tab.notepad = Tab: Notepad
event.control.tab.prev = Tab: Prev
event.control.voice_cmd.start = Voice control: Start
event.control.voice_cmd.stop = Voice control: Stop
event.control.voice_cmd.toggle = Voice control: Toggle
event.control.voice_msg.start = Voice input: Start
event.control.voice_msg.stop = Voice input: Stop
event.control.voice_msg.toggle = Voice input: Toggle
exit.msg = Support PyGPT development:
expert.wait.failed = Failed to call expert
expert.wait.status = Waiting for expert...
files.delete.confirm = Delete file/directory?
files.delete.recursive.confirm = Directory is not empty! Are you sure you want to delete the directory and all the files in it?
files.explorer.header.indexed = Indexed at
files.explorer.header.modified = Date modified
files.explorer.header.name = Name
files.explorer.header.size = Size
files.explorer.header.type = Type
files.local.dir.prefix = Path
files.local.upload = Upload files
filter.ctx.counters.all = All counters
filter.ctx.label = Context list display filter
filter.ctx.label.colors = Display by labels
filter.ctx.radio.all = All
filter.ctx.radio.indexed = Indexed (LlamaIndex)
filter.ctx.radio.labeled = Labeled
filter.ctx.radio.pinned = Pinned
header.assistant.tool.function.desc = Description
header.assistant.tool.function.name = Name
header.assistant.tool.function.params = Parameters (JSON)
html_canvas.btn.clear = Clear
html_canvas.btn.edit = Edit source
html_canvas.clear.confirm = Clear HTML canvas output?
icon.audio.input = Enable/disable audio input
icon.audio.output = Enable/disable audio output
icon.remote_tool.web = Web Search (remote tool, not a local tool)
icon.remote_tool.web.disabled = Web Search (remote tool, not a local tool) - disabled
icon.remote_tool.web.enabled = Web Search (remote tool, not a local tool) - enabled
icon.video.capture = Enable/disable camera capture
idx.btn.clear = Clear index
idx.btn.index_all = Index all
idx.btn.truncate = Clear index (all)
idx.confirm.clear.content = Are you sure you want to delete all data in the index?\nThis will delete the entire index directory from disk!
idx.confirm.db.content = Are you sure you want to index records from the database?
idx.confirm.file.content = Are you sure you want to index this file/directory:\n{dir}?
idx.confirm.file.remove.content = Are you sure you want to delete this file/directory from the index:\n{dir}?
idx.confirm.files.content = Are you sure you want to index all the files in the directory:\n{dir}?
idx.index_now = Index
idx.last = Last DB auto-indexing
idx.new = New
idx.query.raw = Query index only (without chat)
idx.status.empty = Nothing indexed.
idx.status.error = [ERROR] Nothing indexed.
idx.status.indexing = Indexing... please wait...
idx.status.success = [OK] Indexed items:
idx.status.truncate.error = [ERROR] Index not truncated.
idx.status.truncate.success = [OK] Index truncated.
idx.status.truncating = Removing index... please wait...
idx.token.warn = This will consume additional tokens to embed the data.
img.action.open = Open full size
img.action.save = Save As...
img.raw = Raw
img.remix = Remix/Extend
img.remix.tooltip = Enable remix/extend from the previous image in context.\nIf enabled, the previous image will be used as a reference instead of creating a new one from scratch.
img.save.title = Save image
img.status.downloading = Downloading...
img.status.error = Image generation error
img.status.finished = Image generated and downloaded.
img.status.generating = Please wait... generating image from
img.status.prompt.error = Image prompt generation by model error
img.status.prompt.wait = Asking for image prompt... please wait...
img.status.save.error = Image save error
info.settings.all.saved = All settings saved
info.settings.saved = Settings saved
inline.vision = + Vision
input.btn.cancel = Cancel
input.btn.send = Send
input.btn.stop = Stop
input.btn.update = Update
input.label = Input (Your prompt)
input.placeholder = Press Ctrl + Up/Down arrows for prompt history...
input.radio.enter = Enter
input.radio.enter_shift = Shift+Enter
input.radio.none = Off
input.search.placeholder = Search...
input.send_clear = Clear on send
input.stream = Stream
input.tab = Input
input.tab.extra = Extra Input
input.tab.extra.negative_prompt = Negative prompt
input.tab.tooltip = {chars} chars (~{tokens} tokens)
interpreter.all = Execute history (all)
interpreter.auto_clear = Clear output on send
interpreter.btn.clear = Clear output
interpreter.btn.send = Send / execute
interpreter.clear.confirm = Clear the current window?
interpreter.edit = Edit mode
interpreter.edit_label.edit = Code (history)
interpreter.edit_label.output = Output
interpreter.input.placeholder = Python code to execute...\n\n/restart - restart kernel\n/clear - clear output
interpreter.menu.file = File
interpreter.menu.file.clear_all = Clear all
interpreter.menu.file.clear_history = Clear history
interpreter.menu.file.clear_output = Clear output
interpreter.menu.kernel = Kernel
interpreter.menu.kernel.restart = IPython: restart kernel
ipython.docker.build.finish = Success! The Docker image for IPython has been built.
ipython.docker.build.start = Building Docker image... please wait...
ipython.docker.install = Running IPython requires Docker to be installed. Docker was not detected on this system. Please install Docker first; you can find the instructions here: https://docs.docker.com/engine/install/. The execution of the current command has been paused.
ipython.docker.install.snap = \n\nSNAP VERSION: \nYou are not connected to the built-in Docker daemon. Please connect the slots with:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...and restart the application.
ipython.image.build = The Docker image for IPython has not been built yet. This will happen now, and it may take a while (but it's a one-time procedure). The execution of the command has been paused. Once the image is built, please execute the command again.
layout.split = Split screen
list.all = --- ALL ---
menu.audio = Audio / Voice
menu.audio.cache.clear = Clear audio cache...
menu.audio.control.global = Voice control (global)
menu.audio.control.plugin = Voice control (inline)
menu.audio.input = Input: Speech recognition
menu.audio.output = Output: Speech synthesis
menu.audio.stop = Stop audio playback
menu.config = Config
menu.config.access = Accessibility
menu.config.change_dir = Change working directory...
menu.config.edit.config = Edit config.json...
menu.config.edit.css = Edit CSS stylesheets...
menu.config.edit.css.restore = Restore default CSS...
menu.config.edit.json = Edit JSON configs...
menu.config.edit.models = Edit models.json...
menu.config.models = Models...
menu.config.models.edit = Edit models
menu.config.models.import.ollama = Import from Ollama
menu.config.models.import.provider = Import...
menu.config.open_dir = Open working directory...
menu.config.profile = Profile
menu.config.profile.edit = Edit profiles...
menu.config.profile.new = New profile...
menu.config.save = Save config
menu.config.settings = Settings...
menu.debug = Debug
menu.debug.agent = Agent...
menu.debug.agent_builder = Agents Builder
menu.debug.app.log = View log file (app.log)
menu.debug.assistants = Assistants...
menu.debug.attachments = Files / attachments...
menu.debug.config = Config...
menu.debug.context = Context...
menu.debug.db = DB Viewer
menu.debug.events = Events...
menu.debug.fixtures.stream = Fixture: stream
menu.debug.indexes = Indexes...
menu.debug.kernel = Kernel...
menu.debug.logger = Open Logger
menu.debug.models = Models...
menu.debug.plugins = Plugins...
menu.debug.presets = Presets...
menu.debug.render = Render...
menu.debug.tabs = Tabs...
menu.debug.ui = UI...
menu.file = File
menu.file_clear_history = Clear history
menu.file_clear_history_groups = Clear history (+ groups)
menu.file.current = Select current
menu.file.exit = Exit
menu.file.group.new = New group...
menu.file.new = New context...
menu.info = About
menu.info.about = About
menu.info.changelog = Changelog
menu.info.discord = Discord
menu.info.docs = Documentation
menu.info.donate = Donate PyGPT
menu.info.github = GitHub
menu.info.license = License
menu.info.ms_store = Microsoft Store
menu.info.pypi = PyPI
menu.info.report = Report a bug
menu.info.snap = Snap Store
menu.info.updates = Check for updates...
menu.info.website = Project Website - pygpt.net
menu.lang = Language
menu.plugins = Plugins
menu.plugins.presets = Presets...
menu.plugins.presets.edit = Edit presets...
menu.plugins.presets.new = New preset...
menu.plugins.settings = Settings...
menu.theme = Theme
menu.theme.blocks = Display blocks
menu.theme.dark = Dark color...
menu.theme.density = Layout size
menu.theme.light = Light color...
menu.theme.settings = Settings...
menu.theme.style = Style...
menu.theme.syntax = Code syntax highlight...
menu.theme.tooltips = Show tooltips
menu.tools = Tools
menu.tools.agent.builder = Agents Builder
menu.tools.audio.transcribe = Transcribe Audio/Video Files
menu.tools.html_canvas = HTML/JS Canvas
menu.tools.image.viewer = Image Viewer
menu.tools.interpreter = Python Code Interpreter
menu.tools.media.player = Media Player
menu.tools.text.editor = Text Editor
menu.tools.translator = Translator
menu.tools.web_browser = Web Browser (Chromium)
menu.tray.notepad = Open Notepad...
menu.tray.scheduled = Scheduled tasks
menu.tray.screenshot = Ask with screenshot...
menu.video = Video
menu.video.capture = Input: camera
menu.video.capture.auto = Auto capture
mode.agent = Agent (Autonomous)
mode.agent_llama = Agent (LlamaIndex)
mode.agent_llama.tooltip = Advanced agents (LlamaIndex)
mode.agent_openai = Agent (OpenAI)
mode.agent_openai.tooltip = Advanced agents (OpenAI)
mode.agent.tooltip = Simple agents (legacy)
mode.assistant = Assistants
mode.assistant.tooltip = Chat using Assistants API
mode.audio = Realtime + audio
mode.chat = Chat
mode.chat.tooltip = Chat mode (default)
mode.completion = Completion
mode.completion.tooltip = Completion mode
mode.computer = Computer use
mode.computer.tooltip = Computer use (mouse, keyboard, navigation)
mode.expert = Experts (Co-op)
mode.expert.tooltip = Experts to call in the background
mode.img = Image and video
mode.img.image = Image
mode.img.music = Music
mode.img.tooltip = Image generation
mode.img.video = Video
mode.langchain = Langchain
mode.langchain.tooltip = Chat with models provided by Langchain
model.ctx = Context tokens
model.ctx.desc = Max model input tokens
model.default = Default in mode
model.extra = Extra parameters (JSON)
model.extra.desc = A JSON object containing additional parameters for the model (such as reasoning effort, etc.).
model.id = Model ID
model.id.desc = Enter the exact model ID provided by the provider
model.input = Input
mode.llama_index = Chat with Files
mode.llama_index.tooltip = Chat with additional context provided by LlamaIndex
model.langchain.args = [Langchain] LLM provider extra **kwargs
model.langchain.args.desc = Keyword arguments to pass into Langchain provider instance (config, API keys, model, etc.)
model.langchain.env = [Langchain] ENV vars (for os.environ)
model.langchain.env.desc = Environment variables to set for Langchain provider (API keys, etc.)
model.langchain.mode = [Langchain] Mode(s)
model.langchain.mode.desc = Available sub-modes: chat, completion
model.langchain.provider = [Langchain] Provider
model.langchain.provider.desc = LLM provider to use in "Langchain" mode
model.llama_index.args = [LlamaIndex] LLM provider extra **kwargs
model.llama_index.args.desc = Keyword arguments to pass into LlamaIndex provider instance (config, API keys, model, etc.)
model.llama_index.env = [LlamaIndex] ENV vars (for os.environ)
model.llama_index.env.desc = Environment variables to set for LlamaIndex provider (API keys, etc.)
model.llama_index.mode = [LlamaIndex] Mode(s)
model.llama_index.mode.desc = Available sub-modes: chat
model.llama_index.provider = [LlamaIndex] Provider
model.llama_index.provider.desc = LLM provider to use in "Chat with Files" mode
model.mode = Mode(s)
model.mode.desc = Available modes: chat, llama_index, audio, research, completion, img, vision, assistant, agent_llama, agent, expert
model.multimodal = Multimodal
model.name = Name
model.name.desc = Display name on the list, can be anything
model.openai = OpenAI API
model.openai.desc = Supports OpenAI API (or compatible)
model.output = Output
model.provider = Provider
model.provider.desc = Choose the provider for the model
models.importer.all = Show all
models.importer.available.label = Available models
models.importer.current.default = Please select a provider from the list.
models.importer.current.label = PyGPT models
models.importer.error.add.no_model = No model selected to add
models.importer.error.add.not_exists = Model already exists in current list
models.importer.error.no_connection = Ollama is not running or not available! Please start Ollama server and click REFRESH button.
models.importer.error.no_models = No Ollama models available! Please install models using Ollama CLI and click REFRESH button.
models.importer.error.remove.no_model = No model selected to remove
models.importer.error.remove.not_exists = Model already exists in current list
models.importer.list.select = --- Select provider ---
models.importer.loaded = {provider} models loaded successfully.
models.importer.status.imported = Models imported successfully.
models.importer.status.wait = Fetching models list...
model.tokens = Output tokens
model.tokens.desc = Max model output tokens
model.tool_calls = Tool calls (function calling)
model.tool_calls.desc = Enable native API function calling - not every model supports this; if disabled, then system prompt with tools will be used
mode.research = Research
mode.research.tooltip = Web research with Perplexity
mode.vision = Vision
mode.vision.tooltip = Image analysis with GPT-4 Vision
msg.agent.plan = Plan
msg.agent.plan.current = Current plan
msg.agent.plan.deps = Dependencies
msg.agent.plan.expected = Expected output
msg.agent.plan.num_subtasks = Number of sub-tasks
msg.agent.plan.subtask = Sub-task