pygpt-net 2.6.56__py3-none-any.whl → 2.6.58__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygpt_net/CHANGELOG.txt +10 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/app.py +30 -25
- pygpt_net/config.py +44 -0
- pygpt_net/controller/chat/remote_tools.py +5 -3
- pygpt_net/controller/debug/debug.py +3 -3
- pygpt_net/controller/dialogs/info.py +6 -2
- pygpt_net/controller/ui/mode.py +5 -3
- pygpt_net/controller/ui/tabs.py +17 -0
- pygpt_net/core/filesystem/url.py +5 -2
- pygpt_net/core/models/models.py +2 -1
- pygpt_net/core/plugins/plugins.py +60 -0
- pygpt_net/data/config/config.json +4 -2
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/config/settings.json +55 -2
- pygpt_net/data/js/app/ui.js +1 -1
- pygpt_net/data/js/app.min.js +2 -2
- pygpt_net/data/locale/locale.de.ini +7 -1
- pygpt_net/data/locale/locale.en.ini +12 -7
- pygpt_net/data/locale/locale.es.ini +6 -0
- pygpt_net/data/locale/locale.fr.ini +6 -0
- pygpt_net/data/locale/locale.it.ini +6 -0
- pygpt_net/data/locale/locale.pl.ini +7 -1
- pygpt_net/data/locale/locale.uk.ini +7 -1
- pygpt_net/data/locale/locale.zh.ini +6 -0
- pygpt_net/data/locale/plugin.agent.de.ini +0 -0
- pygpt_net/data/locale/plugin.agent.en.ini +0 -0
- pygpt_net/data/locale/plugin.agent.es.ini +0 -0
- pygpt_net/data/locale/plugin.agent.fr.ini +0 -0
- pygpt_net/data/locale/plugin.agent.it.ini +0 -0
- pygpt_net/data/locale/plugin.agent.pl.ini +0 -0
- pygpt_net/data/locale/plugin.agent.uk.ini +0 -0
- pygpt_net/data/locale/plugin.agent.zh.ini +0 -0
- pygpt_net/data/locale/plugin.audio_input.de.ini +0 -0
- pygpt_net/data/locale/plugin.audio_input.en.ini +0 -0
- pygpt_net/data/locale/plugin.audio_input.es.ini +0 -0
- pygpt_net/data/locale/plugin.audio_input.fr.ini +0 -0
- pygpt_net/data/locale/plugin.audio_input.it.ini +0 -0
- pygpt_net/data/locale/plugin.audio_input.pl.ini +0 -0
- pygpt_net/data/locale/plugin.audio_input.uk.ini +0 -0
- pygpt_net/data/locale/plugin.audio_input.zh.ini +0 -0
- pygpt_net/data/locale/plugin.audio_output.de.ini +0 -0
- pygpt_net/data/locale/plugin.audio_output.en.ini +0 -0
- pygpt_net/data/locale/plugin.audio_output.es.ini +0 -0
- pygpt_net/data/locale/plugin.audio_output.fr.ini +0 -0
- pygpt_net/data/locale/plugin.audio_output.it.ini +0 -0
- pygpt_net/data/locale/plugin.audio_output.pl.ini +0 -0
- pygpt_net/data/locale/plugin.audio_output.uk.ini +0 -0
- pygpt_net/data/locale/plugin.audio_output.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_api.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_api.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_api.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_api.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_api.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_api.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_api.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_api.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_code_interpreter.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_custom.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_custom.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_custom.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_custom.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_custom.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_custom.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_custom.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_custom.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_files.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_files.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_files.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_files.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_files.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_files.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_files.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_files.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_history.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_history.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_history.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_history.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_history.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_history.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_history.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_history.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_mouse_control.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_mouse_control.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_mouse_control.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_mouse_control.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_mouse_control.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_mouse_control.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_mouse_control.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_mouse_control.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_serial.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_serial.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_serial.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_serial.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_serial.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_serial.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_serial.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_serial.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_system.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_system.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_system.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_system.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_system.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_system.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_system.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_system.zh.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_web.de.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_web.en.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_web.es.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_web.fr.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_web.it.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_web.pl.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_web.uk.ini +0 -0
- pygpt_net/data/locale/plugin.cmd_web.zh.ini +0 -0
- pygpt_net/data/locale/plugin.crontab.de.ini +0 -0
- pygpt_net/data/locale/plugin.crontab.en.ini +0 -0
- pygpt_net/data/locale/plugin.crontab.es.ini +0 -0
- pygpt_net/data/locale/plugin.crontab.fr.ini +0 -0
- pygpt_net/data/locale/plugin.crontab.it.ini +0 -0
- pygpt_net/data/locale/plugin.crontab.pl.ini +0 -0
- pygpt_net/data/locale/plugin.crontab.uk.ini +0 -0
- pygpt_net/data/locale/plugin.crontab.zh.ini +0 -0
- pygpt_net/data/locale/plugin.experts.de.ini +0 -0
- pygpt_net/data/locale/plugin.experts.en.ini +0 -0
- pygpt_net/data/locale/plugin.experts.es.ini +0 -0
- pygpt_net/data/locale/plugin.experts.fr.ini +0 -0
- pygpt_net/data/locale/plugin.experts.it.ini +0 -0
- pygpt_net/data/locale/plugin.experts.pl.ini +0 -0
- pygpt_net/data/locale/plugin.experts.uk.ini +0 -0
- pygpt_net/data/locale/plugin.experts.zh.ini +0 -0
- pygpt_net/data/locale/plugin.extra_prompt.de.ini +0 -0
- pygpt_net/data/locale/plugin.extra_prompt.en.ini +0 -0
- pygpt_net/data/locale/plugin.extra_prompt.es.ini +0 -0
- pygpt_net/data/locale/plugin.extra_prompt.fr.ini +0 -0
- pygpt_net/data/locale/plugin.extra_prompt.it.ini +0 -0
- pygpt_net/data/locale/plugin.extra_prompt.pl.ini +0 -0
- pygpt_net/data/locale/plugin.extra_prompt.uk.ini +0 -0
- pygpt_net/data/locale/plugin.extra_prompt.zh.ini +0 -0
- pygpt_net/data/locale/plugin.idx_llama_index.de.ini +0 -0
- pygpt_net/data/locale/plugin.idx_llama_index.en.ini +0 -0
- pygpt_net/data/locale/plugin.idx_llama_index.es.ini +0 -0
- pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +0 -0
- pygpt_net/data/locale/plugin.idx_llama_index.it.ini +0 -0
- pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +0 -0
- pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +0 -0
- pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +0 -0
- pygpt_net/data/locale/plugin.mailer.en.ini +0 -0
- pygpt_net/data/locale/plugin.mcp.en.ini +0 -0
- pygpt_net/data/locale/plugin.openai_dalle.de.ini +0 -0
- pygpt_net/data/locale/plugin.openai_dalle.en.ini +0 -0
- pygpt_net/data/locale/plugin.openai_dalle.es.ini +0 -0
- pygpt_net/data/locale/plugin.openai_dalle.fr.ini +0 -0
- pygpt_net/data/locale/plugin.openai_dalle.it.ini +0 -0
- pygpt_net/data/locale/plugin.openai_dalle.pl.ini +0 -0
- pygpt_net/data/locale/plugin.openai_dalle.uk.ini +0 -0
- pygpt_net/data/locale/plugin.openai_dalle.zh.ini +0 -0
- pygpt_net/data/locale/plugin.openai_vision.de.ini +0 -0
- pygpt_net/data/locale/plugin.openai_vision.en.ini +0 -0
- pygpt_net/data/locale/plugin.openai_vision.es.ini +0 -0
- pygpt_net/data/locale/plugin.openai_vision.fr.ini +0 -0
- pygpt_net/data/locale/plugin.openai_vision.it.ini +0 -0
- pygpt_net/data/locale/plugin.openai_vision.pl.ini +0 -0
- pygpt_net/data/locale/plugin.openai_vision.uk.ini +0 -0
- pygpt_net/data/locale/plugin.openai_vision.zh.ini +0 -0
- pygpt_net/data/locale/plugin.osm.en.ini +24 -24
- pygpt_net/data/locale/plugin.real_time.de.ini +0 -0
- pygpt_net/data/locale/plugin.real_time.en.ini +0 -0
- pygpt_net/data/locale/plugin.real_time.es.ini +0 -0
- pygpt_net/data/locale/plugin.real_time.fr.ini +0 -0
- pygpt_net/data/locale/plugin.real_time.it.ini +0 -0
- pygpt_net/data/locale/plugin.real_time.pl.ini +0 -0
- pygpt_net/data/locale/plugin.real_time.uk.ini +0 -0
- pygpt_net/data/locale/plugin.real_time.zh.ini +0 -0
- pygpt_net/data/locale/plugin.voice_control.de.ini +0 -0
- pygpt_net/data/locale/plugin.voice_control.en.ini +0 -0
- pygpt_net/data/locale/plugin.voice_control.es.ini +0 -0
- pygpt_net/data/locale/plugin.voice_control.fr.ini +0 -0
- pygpt_net/data/locale/plugin.voice_control.it.ini +0 -0
- pygpt_net/data/locale/plugin.voice_control.pl.ini +0 -0
- pygpt_net/data/locale/plugin.voice_control.uk.ini +0 -0
- pygpt_net/data/locale/plugin.voice_control.zh.ini +0 -0
- pygpt_net/data/locale/plugin.wolfram.en.ini +9 -9
- pygpt_net/js_rc.py +5 -5
- pygpt_net/plugin/base/plugin.py +3 -5
- pygpt_net/plugin/cmd_web/config.py +17 -17
- pygpt_net/plugin/cmd_web/worker.py +325 -171
- pygpt_net/provider/api/x_ai/__init__.py +2 -0
- pygpt_net/provider/core/config/patch.py +23 -1
- pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +1 -0
- pygpt_net/provider/llms/anthropic.py +4 -0
- pygpt_net/provider/llms/base.py +2 -0
- pygpt_net/provider/llms/deepseek_api.py +2 -0
- pygpt_net/provider/llms/google.py +2 -0
- pygpt_net/provider/llms/hugging_face_api.py +4 -0
- pygpt_net/provider/llms/hugging_face_router.py +2 -0
- pygpt_net/provider/llms/mistral.py +4 -0
- pygpt_net/provider/llms/perplexity.py +2 -0
- pygpt_net/provider/llms/x_ai.py +2 -0
- pygpt_net/tools/html_canvas/ui/widgets.py +19 -18
- pygpt_net/tools/web_browser/__init__.py +12 -0
- pygpt_net/tools/web_browser/tool.py +232 -0
- pygpt_net/tools/web_browser/ui/__init__.py +0 -0
- pygpt_net/tools/web_browser/ui/dialogs.py +123 -0
- pygpt_net/tools/web_browser/ui/widgets.py +351 -0
- pygpt_net/ui/layout/chat/output.py +5 -5
- pygpt_net/ui/widget/dialog/base.py +4 -1
- pygpt_net/ui/widget/textarea/html.py +173 -24
- pygpt_net/ui/widget/textarea/input.py +19 -3
- pygpt_net/ui/widget/textarea/web.py +2 -1
- {pygpt_net-2.6.56.dist-info → pygpt_net-2.6.58.dist-info}/METADATA +26 -2
- {pygpt_net-2.6.56.dist-info → pygpt_net-2.6.58.dist-info}/RECORD +59 -54
- {pygpt_net-2.6.56.dist-info → pygpt_net-2.6.58.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.56.dist-info → pygpt_net-2.6.58.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.56.dist-info → pygpt_net-2.6.58.dist-info}/entry_points.txt +0 -0
|
@@ -833,6 +833,7 @@ menu.tools.interpreter = Python-Code-Interpreter
|
|
|
833
833
|
menu.tools.media.player = Mediaplayer
|
|
834
834
|
menu.tools.text.editor = Texteditor
|
|
835
835
|
menu.tools.translator = Übersetzer
|
|
836
|
+
menu.tools.web_browser = Webbrowser (Chromium)
|
|
836
837
|
menu.tray.notepad = Notepad öffnen...
|
|
837
838
|
menu.tray.scheduled = Geplante Aufträge
|
|
838
839
|
menu.tray.screenshot = Fragen mit Screenshot...
|
|
@@ -1106,8 +1107,10 @@ settings.api_key.perplexity = Perplexity API-SCHLÜSSEL
|
|
|
1106
1107
|
settings.api_key.perplexity.desc = Erforderlich für die Perplexity API.
|
|
1107
1108
|
settings.api_key.xai = xAI API-SCHLÜSSEL
|
|
1108
1109
|
settings.api_key.xai.desc = Erforderlich für die xAI API und Grok-Modelle.
|
|
1109
|
-
settings.api_proxy = Proxy
|
|
1110
|
+
settings.api_proxy = Proxy verwenden
|
|
1110
1111
|
settings.api_proxy.desc = Optional, Proxy für API SDK, z.B. http://proxy.example.com oder socks5://user:pass@host:port
|
|
1112
|
+
settings.api_proxy.enabled = Proxy-Adresse
|
|
1113
|
+
settings.api_proxy.enabled.desc = Aktivieren Sie diese Option, um einen Proxy für Verbindungen zu APIs zu verwenden
|
|
1111
1114
|
settings.api_use_responses = Verwenden Sie die Responses API im Chat-Modus
|
|
1112
1115
|
settings.api_use_responses.desc = Verwenden Sie die Responses API anstelle der ChatCompletions API im Chat-Modus
|
|
1113
1116
|
settings.api_use_responses_llama = Verwenden Sie die Responses API im Chat mit Dateien Modus (LlamaIndex)
|
|
@@ -1180,6 +1183,8 @@ settings.ctx.search_content = Suche auch im Inhalt der Gespräche, nicht nur in
|
|
|
1180
1183
|
settings.ctx.search.desc = Aktiviere die Suche auch im Inhalt der Kontextelemente
|
|
1181
1184
|
settings.ctx.sources = Zeige Llama-Indexquellen
|
|
1182
1185
|
settings.ctx.sources.desc = Falls aktiviert, werden die genutzten Quellen in der Antwort angezeigt (falls verfügbar, funktioniert nicht im gestreamten Chat)
|
|
1186
|
+
settings.ctx.urls.internal = Öffne URLs im integrierten Browser
|
|
1187
|
+
settings.ctx.urls.internal.desc = Aktivieren Sie diese Option, um alle URLs im integrierten Browser (Chromium) und nicht in einem externen Browser zu öffnen.
|
|
1183
1188
|
settings.ctx.use_extra = Verwenden Sie zusätzlichen Kontextoutput
|
|
1184
1189
|
settings.ctx.use_extra.desc = Wenn aktiviert, wird die einfache Textausgabe (falls verfügbar) aus den Befehlsausgaben zusätzlich zur JSON-Ausgabe angezeigt.
|
|
1185
1190
|
settings.debug.show_menu = Debug-Menü anzeigen
|
|
@@ -1544,6 +1549,7 @@ tool.indexer.tab.web.loader = Datenlader
|
|
|
1544
1549
|
tool.indexer.tab.web.source = Datenquelle
|
|
1545
1550
|
tool.indexer.tab.web.tip = Wählen Sie einen Datenlader aus und definieren Sie die Laderparameter, um externe Daten aus dem Web einzubetten.
|
|
1546
1551
|
tool.indexer.title = Indexierer
|
|
1552
|
+
tool.web_browser.security.footer = SICHERHEITSHINWEIS: Zu Ihrem Schutz vermeiden Sie die Verwendung des integrierten Browsers für sensible oder kritische Aufgaben. Er ist nur für grundlegende Nutzung gedacht.
|
|
1547
1553
|
translator.btn.left = Übersetzen >>
|
|
1548
1554
|
translator.btn.right = << Übersetzen
|
|
1549
1555
|
translator.clear.confirm = Übersetzerausgabe löschen (beide Spalten)?
|
|
@@ -72,6 +72,10 @@ action.use.read_cmd = Ask for reading this file...
|
|
|
72
72
|
action.video.open = Open video or audio...
|
|
73
73
|
action.video.play = Play video or audio...
|
|
74
74
|
action.video.transcribe = Transcribe audio...
|
|
75
|
+
agent.builder.confirm.clear.msg = Do you really want to clear the graph?
|
|
76
|
+
agent.builder.confirm.clear.title = Clear
|
|
77
|
+
agent.builder.confirm.delete.msg = Do you really want to delete the agent?
|
|
78
|
+
agent.builder.title = Agent Builder
|
|
75
79
|
agent.coder.additional.label = Additional prompt
|
|
76
80
|
agent.coder.additional.prompt.desc = Additional prompt for agent (will be added to the base prompt)
|
|
77
81
|
agent.coder.base.label = Base prompt
|
|
@@ -776,6 +780,7 @@ menu.config.save = Save config
|
|
|
776
780
|
menu.config.settings = Settings...
|
|
777
781
|
menu.debug = Debug
|
|
778
782
|
menu.debug.agent = Agent...
|
|
783
|
+
menu.debug.agent_builder = Agent Builder
|
|
779
784
|
menu.debug.app.log = View log file (app.log)
|
|
780
785
|
menu.debug.assistants = Assistants...
|
|
781
786
|
menu.debug.attachments = Files / attachments...
|
|
@@ -830,6 +835,7 @@ menu.theme.style = Style...
|
|
|
830
835
|
menu.theme.syntax = Code syntax highlight...
|
|
831
836
|
menu.theme.tooltips = Show tooltips
|
|
832
837
|
menu.tools = Tools
|
|
838
|
+
menu.tools.agent.builder = Agent Builder
|
|
833
839
|
menu.tools.audio.transcribe = Transcribe Audio/Video Files
|
|
834
840
|
menu.tools.html_canvas = HTML/JS Canvas
|
|
835
841
|
menu.tools.image.viewer = Image Viewer
|
|
@@ -837,6 +843,7 @@ menu.tools.interpreter = Python Code Interpreter
|
|
|
837
843
|
menu.tools.media.player = Media Player
|
|
838
844
|
menu.tools.text.editor = Text Editor
|
|
839
845
|
menu.tools.translator = Translator
|
|
846
|
+
menu.tools.web_browser = Web Browser (Chromium)
|
|
840
847
|
menu.tray.notepad = Open Notepad...
|
|
841
848
|
menu.tray.scheduled = Scheduled tasks
|
|
842
849
|
menu.tray.screenshot = Ask with screenshot...
|
|
@@ -1144,6 +1151,8 @@ settings.api_native_xai = Use native API SDK
|
|
|
1144
1151
|
settings.api_native_xai.desc = Use native xAI SDK instead of compatible OpenAI client
|
|
1145
1152
|
settings.api_proxy = Proxy address
|
|
1146
1153
|
settings.api_proxy.desc = Optional, proxy for API SDKs, e.g. http://proxy.example.com or socks5://user:pass@host:port
|
|
1154
|
+
settings.api_proxy.enabled = Use proxy
|
|
1155
|
+
settings.api_proxy.enabled.desc = Enable this option to use a proxy for connections to APIs
|
|
1147
1156
|
settings.api_use_responses = Use Responses API in Chat mode
|
|
1148
1157
|
settings.api_use_responses.desc = Use Responses API instead of ChatCompletions API in Chat mode
|
|
1149
1158
|
settings.api_use_responses_llama = Use Responses API in Chat with Files mode (LlamaIndex)
|
|
@@ -1216,6 +1225,8 @@ settings.ctx.search_content = Search also in conversation content, not only in t
|
|
|
1216
1225
|
settings.ctx.search.desc = Enable search also in context items' content
|
|
1217
1226
|
settings.ctx.sources = Show LlamaIndex sources
|
|
1218
1227
|
settings.ctx.sources.desc = If enabled, sources used will be displayed in the response (if available, it will not work in streamed chat)
|
|
1228
|
+
settings.ctx.urls.internal = Open URLs in built-in browser
|
|
1229
|
+
settings.ctx.urls.internal.desc = Enable this option to open all URLs in the built-in browser (Chromium) instead of an external browser.
|
|
1219
1230
|
settings.ctx.use_extra = Use extra context output
|
|
1220
1231
|
settings.ctx.use_extra.desc = If enabled, plain text output (if available) from command results will be displayed alongside the JSON output.
|
|
1221
1232
|
settings.debug.show_menu = Show debug menu
|
|
@@ -1614,6 +1625,7 @@ tool.indexer.tab.web.loader = Data type
|
|
|
1614
1625
|
tool.indexer.tab.web.source = Data source
|
|
1615
1626
|
tool.indexer.tab.web.tip = Select a data loader and define the loader parameters to embed external data from the web.
|
|
1616
1627
|
tool.indexer.title = Indexer
|
|
1628
|
+
tool.web_browser.security.footer = SECURITY NOTICE: For your protection, avoid using the built-in browser for sensitive or critical tasks. It is intended for basic usage only.
|
|
1617
1629
|
translator.btn.left = Translate >>
|
|
1618
1630
|
translator.btn.right = << Translate
|
|
1619
1631
|
translator.clear.confirm = Clear translator output (both columns)?
|
|
@@ -1652,10 +1664,3 @@ vision.capture.manual.captured.success = Image captured from the camera:
|
|
|
1652
1664
|
vision.capture.name.prefix = Camera capture:
|
|
1653
1665
|
vision.capture.options.title = Video capture
|
|
1654
1666
|
vision.checkbox.tooltip = If checked, the vision model is active. It will be automatically activated upon image upload. You can deactivate it in real-time.
|
|
1655
|
-
|
|
1656
|
-
menu.tools.agent.builder = Agent Builder
|
|
1657
|
-
agent.builder.title = Agent Builder
|
|
1658
|
-
agent.builder.confirm.clear.title = Clear
|
|
1659
|
-
agent.builder.confirm.clear.msg = Do you really want to clear the graph?
|
|
1660
|
-
agent.builder.confirm.delete.msg = Do you really want to delete the agent?
|
|
1661
|
-
menu.debug.agent_builder = Agent Builder
|
|
@@ -834,6 +834,7 @@ menu.tools.interpreter = Intérprete de código Python
|
|
|
834
834
|
menu.tools.media.player = Reproductor de medios
|
|
835
835
|
menu.tools.text.editor = Editor de texto
|
|
836
836
|
menu.tools.translator = Traductor
|
|
837
|
+
menu.tools.web_browser = Navegador Web (Chromium)
|
|
837
838
|
menu.tray.notepad = Abrir Bloc de notas...
|
|
838
839
|
menu.tray.scheduled = Trabajos programados
|
|
839
840
|
menu.tray.screenshot = Preguntar con captura de pantalla...
|
|
@@ -1109,6 +1110,8 @@ settings.api_key.xai = CLAVE API xAI
|
|
|
1109
1110
|
settings.api_key.xai.desc = Requerido para la API xAI y modelos Grok.
|
|
1110
1111
|
settings.api_proxy = Dirección proxy
|
|
1111
1112
|
settings.api_proxy.desc = Opcional, proxy para API SDK, por ej. http://proxy.example.com o socks5://user:pass@host:port
|
|
1113
|
+
settings.api_proxy.enabled = Usar proxy
|
|
1114
|
+
settings.api_proxy.enabled.desc = Habilita esta opción para usar un proxy para las conexiones a las API
|
|
1112
1115
|
settings.api_use_responses = Usar API de Respuestas en modo Chat
|
|
1113
1116
|
settings.api_use_responses.desc = Usar API de Respuestas en lugar de ChatCompletions API en modo Chat
|
|
1114
1117
|
settings.api_use_responses_llama = Usar Responses API en modo Chat con Archivos (LlamaIndex)
|
|
@@ -1181,6 +1184,8 @@ settings.ctx.search_content = Buscar también en el contenido de las conversacio
|
|
|
1181
1184
|
settings.ctx.search.desc = Habilitar la búsqueda también en el contenido de los elementos de contexto
|
|
1182
1185
|
settings.ctx.sources = Mostrar fuentes del índice Llama
|
|
1183
1186
|
settings.ctx.sources.desc = Si está habilitado, las fuentes utilizadas se mostrarán en la respuesta (si están disponibles, no funcionará en el chat en vivo)
|
|
1187
|
+
settings.ctx.urls.internal = Abrir las URL en el navegador integrado
|
|
1188
|
+
settings.ctx.urls.internal.desc = Active esta opción para abrir todas las URL en el navegador integrado (Chromium) en lugar de un navegador externo.
|
|
1184
1189
|
settings.ctx.use_extra = Usar salida de contexto extra
|
|
1185
1190
|
settings.ctx.use_extra.desc = Si está habilitado, la salida de texto sin formato (si está disponible) de los resultados de los comandos se mostrará junto con la salida JSON.
|
|
1186
1191
|
settings.debug.show_menu = Mostrar menú de depuración
|
|
@@ -1545,6 +1550,7 @@ tool.indexer.tab.web.loader = Cargador
|
|
|
1545
1550
|
tool.indexer.tab.web.source = Fuente de datos
|
|
1546
1551
|
tool.indexer.tab.web.tip = Seleccione un cargador de datos y defina los parámetros del cargador para incrustar datos externos de la web.
|
|
1547
1552
|
tool.indexer.title = Indexador
|
|
1553
|
+
tool.web_browser.security.footer = AVISO DE SEGURIDAD: Para su protección, evite usar el navegador integrado para tareas sensibles o críticas. Está diseñado solo para uso básico.
|
|
1548
1554
|
translator.btn.left = Traducir >>
|
|
1549
1555
|
translator.btn.right = << Traducir
|
|
1550
1556
|
translator.clear.confirm = Borrar salida del traductor (ambas columnas)?
|
|
@@ -833,6 +833,7 @@ menu.tools.interpreter = Interpréteur de code Python
|
|
|
833
833
|
menu.tools.media.player = Lecteur multimédia
|
|
834
834
|
menu.tools.text.editor = Éditeur de texte
|
|
835
835
|
menu.tools.translator = Traducteur
|
|
836
|
+
menu.tools.web_browser = Navigateur Web (Chromium)
|
|
836
837
|
menu.tray.notepad = Ouvrir le Bloc-notes...
|
|
837
838
|
menu.tray.scheduled = Tâches planifiées
|
|
838
839
|
menu.tray.screenshot = Demander avec une capture d'écran...
|
|
@@ -1108,6 +1109,8 @@ settings.api_key.xai = Clé API xAI
|
|
|
1108
1109
|
settings.api_key.xai.desc = Requis pour l'API xAI et les modèles Grok.
|
|
1109
1110
|
settings.api_proxy = Adresse proxy
|
|
1110
1111
|
settings.api_proxy.desc = Optionnel, proxy pour l'API SDK, par ex. http://proxy.example.com ou socks5://user:pass@host:port
|
|
1112
|
+
settings.api_proxy.enabled = Utiliser un proxy
|
|
1113
|
+
settings.api_proxy.enabled.desc = Activez cette option pour utiliser un proxy pour les connexions aux API
|
|
1111
1114
|
settings.api_use_responses = Utiliser l'API Responses en mode chat
|
|
1112
1115
|
settings.api_use_responses.desc = Utiliser l'API Responses au lieu de l'API ChatCompletions en mode chat
|
|
1113
1116
|
settings.api_use_responses_llama = Utiliser Responses API en mode Chat avec des Fichiers (LlamaIndex)
|
|
@@ -1180,6 +1183,8 @@ settings.ctx.search_content = Rechercher également dans le contenu des conversa
|
|
|
1180
1183
|
settings.ctx.search.desc = Activer la recherche également dans le contenu des éléments de contexte
|
|
1181
1184
|
settings.ctx.sources = Afficher les sources de l'index Llama
|
|
1182
1185
|
settings.ctx.sources.desc = Si activé, les sources utilisées seront affichées dans la réponse (si disponibles, cela ne fonctionnera pas dans le chat en continu)
|
|
1186
|
+
settings.ctx.urls.internal = Ouvrez les URL dans le navigateur intégré
|
|
1187
|
+
settings.ctx.urls.internal.desc = Activez cette option pour ouvrir toutes les URL dans le navigateur intégré (Chromium) au lieu d'un navigateur externe.
|
|
1183
1188
|
settings.ctx.use_extra = Utiliser une sortie de contexte supplémentaire
|
|
1184
1189
|
settings.ctx.use_extra.desc = Si activé, la sortie en texte brut (si disponible) des résultats de commande sera affichée aux côtés de la sortie JSON.
|
|
1185
1190
|
settings.debug.show_menu = Afficher le menu de débogage
|
|
@@ -1544,6 +1549,7 @@ tool.indexer.tab.web.loader = Chargeur de données
|
|
|
1544
1549
|
tool.indexer.tab.web.source = Source de données
|
|
1545
1550
|
tool.indexer.tab.web.tip = Sélectionnez un chargeur de données et définissez les paramètres du chargeur pour intégrer des données externes provenant du web.
|
|
1546
1551
|
tool.indexer.title = Indexeur
|
|
1552
|
+
tool.web_browser.security.footer = AVIS DE SÉCURITÉ : Pour votre protection, évitez d'utiliser le navigateur intégré pour des tâches sensibles ou critiques. Il est destiné uniquement à un usage basique.
|
|
1547
1553
|
translator.btn.left = Traduire >>
|
|
1548
1554
|
translator.btn.right = << Traduire
|
|
1549
1555
|
translator.clear.confirm = Effacer la sortie du traducteur (les deux colonnes) ?
|
|
@@ -833,6 +833,7 @@ menu.tools.interpreter = Interprete del codice Python
|
|
|
833
833
|
menu.tools.media.player = Riproduttore multimediale
|
|
834
834
|
menu.tools.text.editor = Editor di testo
|
|
835
835
|
menu.tools.translator = Traduttore
|
|
836
|
+
menu.tools.web_browser = Browser Web (Chromium)
|
|
836
837
|
menu.tray.notepad = Apri Blocco note...
|
|
837
838
|
menu.tray.scheduled = Lavori programmati
|
|
838
839
|
menu.tray.screenshot = Chiedi con uno screenshot...
|
|
@@ -1108,6 +1109,8 @@ settings.api_key.xai = Chiave API xAI
|
|
|
1108
1109
|
settings.api_key.xai.desc = Necessario per l'API xAI e i modelli Grok.
|
|
1109
1110
|
settings.api_proxy = Indirizzo proxy
|
|
1110
1111
|
settings.api_proxy.desc = Opzionale, proxy per l'API SDK, es. http://proxy.example.com o socks5://user:pass@host:port
|
|
1112
|
+
settings.api_proxy.enabled = Usa proxy
|
|
1113
|
+
settings.api_proxy.enabled.desc = Abilita questa opzione per utilizzare un proxy per le connessioni alle API
|
|
1111
1114
|
settings.api_use_responses = Utilizzare l'API delle Risposte in modalità chat
|
|
1112
1115
|
settings.api_use_responses.desc = Utilizzare l'API delle Risposte invece dell'API ChatCompletions in modalità chat
|
|
1113
1116
|
settings.api_use_responses_llama = Usa il Responses API in modalità Chat con File (LlamaIndex)
|
|
@@ -1180,6 +1183,8 @@ settings.ctx.search_content = Cerca anche nel contenuto delle conversazioni, non
|
|
|
1180
1183
|
settings.ctx.search.desc = Abilita la ricerca anche nel contenuto degli elementi di contesto
|
|
1181
1184
|
settings.ctx.sources = Mostra le fonti dell'indice Llama
|
|
1182
1185
|
settings.ctx.sources.desc = Se abilitato, le fonti utilizzate saranno mostrate nella risposta (se disponibili, non funzionerà nella chat in streaming)
|
|
1186
|
+
settings.ctx.urls.internal = Apri gli URL nel browser integrato
|
|
1187
|
+
settings.ctx.urls.internal.desc = Abilita questa opzione per aprire tutti gli URL nel browser integrato (Chromium) anziché in un browser esterno.
|
|
1183
1188
|
settings.ctx.use_extra = Usa output di contesto extra
|
|
1184
1189
|
settings.ctx.use_extra.desc = Se abilitato, l'output di testo normale (se disponibile) dai risultati dei comandi sarà visualizzato accanto all'output JSON.
|
|
1185
1190
|
settings.debug.show_menu = Mostra menu debug
|
|
@@ -1544,6 +1549,7 @@ tool.indexer.tab.web.loader = Caricatore di dati
|
|
|
1544
1549
|
tool.indexer.tab.web.source = Fonte dati
|
|
1545
1550
|
tool.indexer.tab.web.tip = Seleziona un caricatore di dati e definisci i parametri del caricatore per incorporare dati esterni dal web.
|
|
1546
1551
|
tool.indexer.title = Indicizzatore
|
|
1552
|
+
tool.web_browser.security.footer = AVVISO DI SICUREZZA: Per la tua protezione, evita di utilizzare il browser integrato per compiti sensibili o critici. È destinato solo all'uso di base.
|
|
1547
1553
|
translator.btn.left = Traduci >>
|
|
1548
1554
|
translator.btn.right = << Traduci
|
|
1549
1555
|
translator.clear.confirm = Cancella output traduttore (entrambe le colonne)?
|
|
@@ -678,7 +678,7 @@ html_canvas.btn.edit = Edytuj kod źródłowy
|
|
|
678
678
|
html_canvas.clear.confirm = Wyczyścić wynik płótna HTML?
|
|
679
679
|
icon.audio.input = Włącz/wyłącz wejście audio
|
|
680
680
|
icon.audio.output = Włącz/wyłącz wyjście audio
|
|
681
|
-
icon.remote_tool.web = Wyszukiwanie w sieci (narzędzie zdalne, nie lokalne)
|
|
681
|
+
icon.remote_tool.web = Wyszukiwanie w sieci (narzędzie zdalne, nie lokalne)
|
|
682
682
|
icon.video.capture = Włącz/wyłącz przechwytywanie wideo z kamery
|
|
683
683
|
idx.btn.clear = Wyczyść indeks
|
|
684
684
|
idx.btn.index_all = Indeksuj wszystko
|
|
@@ -834,6 +834,7 @@ menu.tools.interpreter = Interpreter kodu Python
|
|
|
834
834
|
menu.tools.media.player = Odtwarzacz multimedialny
|
|
835
835
|
menu.tools.text.editor = Edytor tekstu
|
|
836
836
|
menu.tools.translator = Tłumacz
|
|
837
|
+
menu.tools.web_browser = Przeglądarka internetowa (Chromium)
|
|
837
838
|
menu.tray.notepad = Otwórz Notatnik...
|
|
838
839
|
menu.tray.scheduled = Zaplanowane zadania
|
|
839
840
|
menu.tray.screenshot = Zapytaj ze zrzutem ekranu...
|
|
@@ -1109,6 +1110,8 @@ settings.api_key.xai = Klucz API xAI
|
|
|
1109
1110
|
settings.api_key.xai.desc = Wymagane do xAI API i modeli Grok.
|
|
1110
1111
|
settings.api_proxy = Adres proxy
|
|
1111
1112
|
settings.api_proxy.desc = Opcjonalnie, proxy dla API SDK, np. http://proxy.example.com lub socks5://user:pass@host:port
|
|
1113
|
+
settings.api_proxy.enabled = Użyj proxy
|
|
1114
|
+
settings.api_proxy.enabled.desc = Włącz tę opcję, aby używać proxy do połączeń z API
|
|
1112
1115
|
settings.api_use_responses = Używaj Responses API w trybie czatu
|
|
1113
1116
|
settings.api_use_responses.desc = Używaj Responses API zamiast ChatCompletions API w trybie czatu
|
|
1114
1117
|
settings.api_use_responses_llama = Używaj Responses API w trybie Chat z Plikami (LlamaIndex)
|
|
@@ -1181,6 +1184,8 @@ settings.ctx.search_content = Szukaj również w treści rozmów, nie tylko w ty
|
|
|
1181
1184
|
settings.ctx.search.desc = Włącz wyszukiwanie również w treści elementów kontekstu
|
|
1182
1185
|
settings.ctx.sources = Pokaż źródła LlamaIndex
|
|
1183
1186
|
settings.ctx.sources.desc = Jeśli opcja jest włączona, wykorzystane źródła będą wyświetlane w odpowiedzi (jeśli dostępne, nie zadziała w czacie z wł. opcją stream)
|
|
1187
|
+
settings.ctx.urls.internal = Otwieraj adresy URL w wbudowanej przeglądarce
|
|
1188
|
+
settings.ctx.urls.internal.desc = Włącz tę opcję, aby otwierać wszystkie adresy URL we wbudowanej przeglądarce (Chromium) zamiast w zewnętrznej przeglądarce.
|
|
1184
1189
|
settings.ctx.use_extra = Używaj dodatkowego kontekstu outputu
|
|
1185
1190
|
settings.ctx.use_extra.desc = Jeśli włączone, zwykły tekst outputu (jeśli dostępny) z wyników poleceń będzie wyświetlany obok outputu JSON.
|
|
1186
1191
|
settings.debug.show_menu = Pokaż menu debugowania
|
|
@@ -1545,6 +1550,7 @@ tool.indexer.tab.web.loader = Ładowarka danych
|
|
|
1545
1550
|
tool.indexer.tab.web.source = Źródło danych
|
|
1546
1551
|
tool.indexer.tab.web.tip = Wybierz ładowarkę danych i zdefiniuj parametry ładowarki, aby osadzić zewnętrzne dane z internetu.
|
|
1547
1552
|
tool.indexer.title = Indeksator
|
|
1553
|
+
tool.web_browser.security.footer = UWAGA BEZPIECZEŃSTWA: Dla Twojego bezpieczeństwa, unikaj używania wbudowanej przeglądarki do zadań wrażliwych lub krytycznych. Jest przeznaczona tylko do podstawowego użytku.
|
|
1548
1554
|
translator.btn.left = Tłumacz >>
|
|
1549
1555
|
translator.btn.right = << Tłumacz
|
|
1550
1556
|
translator.clear.confirm = Wyczyść dane wyjściowe tłumacza (obie kolumny)?
|
|
@@ -833,6 +833,7 @@ menu.tools.interpreter = Інтерпретатор коду Python
|
|
|
833
833
|
menu.tools.media.player = Медіаплеєр
|
|
834
834
|
menu.tools.text.editor = Редактор текстів
|
|
835
835
|
menu.tools.translator = Перекладач
|
|
836
|
+
menu.tools.web_browser = Веб-браузер (Chromium)
|
|
836
837
|
menu.tray.notepad = Відкрити Блокнот...
|
|
837
838
|
menu.tray.scheduled = Заплановані завдання
|
|
838
839
|
menu.tray.screenshot = Запитати зі скріншотом...
|
|
@@ -1106,8 +1107,10 @@ settings.api_key.perplexity = КЛЮЧ API Perplexity
|
|
|
1106
1107
|
settings.api_key.perplexity.desc = Обов'язковий для Perplexity API.
|
|
1107
1108
|
settings.api_key.xai = КЛЮЧ API xAI
|
|
1108
1109
|
settings.api_key.xai.desc = Обов'язковий для xAI API та моделей Grok.
|
|
1109
|
-
settings.api_proxy =
|
|
1110
|
+
settings.api_proxy = Використовувати проксі
|
|
1110
1111
|
settings.api_proxy.desc = Опціонально, проксі для API SDK, наприклад, http://proxy.example.com або socks5://user:pass@host:port
|
|
1112
|
+
settings.api_proxy.enabled = Проксі-адреса
|
|
1113
|
+
settings.api_proxy.enabled.desc = Увімкніть цю опцію, щоб використовувати проксі для підключень до API
|
|
1111
1114
|
settings.api_use_responses = Використовувати API відповідей у режимі чату
|
|
1112
1115
|
settings.api_use_responses.desc = Використовувати API відповідей замість API ChatCompletions у режимі чату
|
|
1113
1116
|
settings.api_use_responses_llama = Використовувати Responses API в режимі Чат з Файлами (LlamaIndex)
|
|
@@ -1180,6 +1183,8 @@ settings.ctx.search_content = Шукати також у вмісті розмо
|
|
|
1180
1183
|
settings.ctx.search.desc = Увімкнути пошук також у вмісті елементів контексту
|
|
1181
1184
|
settings.ctx.sources = Показати джерела індексу Llama
|
|
1182
1185
|
settings.ctx.sources.desc = Якщо включено, використані джерела будуть відображатися в відповіді (якщо доступно, не працюватиме в потоковому чаті)
|
|
1186
|
+
settings.ctx.urls.internal = Відкривайте URL-адреси у вбудованому браузері
|
|
1187
|
+
settings.ctx.urls.internal.desc = Увімкніть цю опцію, щоб відкривати всі URL-адреси у вбудованому браузері (Chromium) замість зовнішнього браузера.
|
|
1183
1188
|
settings.ctx.use_extra = Використовувати додатковий контекст виводу
|
|
1184
1189
|
settings.ctx.use_extra.desc = Якщо увімкнено, звичайний текстовий вивід (якщо доступний) з результатів команд буде відображений поруч з JSON виводом.
|
|
1185
1190
|
settings.debug.show_menu = Показати меню налагодження
|
|
@@ -1544,6 +1549,7 @@ tool.indexer.tab.web.loader = Завантажувач даних
|
|
|
1544
1549
|
tool.indexer.tab.web.source = Джерело даних
|
|
1545
1550
|
tool.indexer.tab.web.tip = Виберіть завантажувач даних та визначте параметри завантажувача для вбудовування зовнішніх даних з вебу.
|
|
1546
1551
|
tool.indexer.title = Індексатор
|
|
1552
|
+
tool.web_browser.security.footer = ПОВІДОМЛЕННЯ ПРО БЕЗПЕКУ: Для вашого захисту уникайте використання вбудованого браузера для чутливих або критичних завдань. Він призначений лише для базового використання.
|
|
1547
1553
|
translator.btn.left = Перекласти >>
|
|
1548
1554
|
translator.btn.right = << Перекласти
|
|
1549
1555
|
translator.clear.confirm = Очистити вихідні дані перекладача (обидві колонки)?
|
|
@@ -833,6 +833,7 @@ menu.tools.interpreter = Python 代码解释器
|
|
|
833
833
|
menu.tools.media.player = 媒体播放器
|
|
834
834
|
menu.tools.text.editor = 文本编辑器
|
|
835
835
|
menu.tools.translator = 翻译
|
|
836
|
+
menu.tools.web_browser = 网络浏览器 (Chromium)
|
|
836
837
|
menu.tray.notepad = 打開記事本...
|
|
837
838
|
menu.tray.scheduled = 已排程任務
|
|
838
839
|
menu.tray.screenshot = 使用截圖提問...
|
|
@@ -1108,6 +1109,8 @@ settings.api_key.xai = xAI API 密钥
|
|
|
1108
1109
|
settings.api_key.xai.desc = xAI API 和 Grok 模型所需。
|
|
1109
1110
|
settings.api_proxy = 代理地址
|
|
1110
1111
|
settings.api_proxy.desc = 可选,用于 API SDK 的代理,例如 http://proxy.example.com 或 socks5://user:pass@host:port
|
|
1112
|
+
settings.api_proxy.enabled = 使用代理
|
|
1113
|
+
settings.api_proxy.enabled.desc = 启用此选项以使用代理进行 API 连接
|
|
1111
1114
|
settings.api_use_responses = 在聊天模式中使用 Responses API
|
|
1112
1115
|
settings.api_use_responses.desc = 在聊天模式中使用 Responses API 而不是 ChatCompletions API
|
|
1113
1116
|
settings.api_use_responses_llama = 在Chat with Files模式(LlamaIndex)下使用Responses API
|
|
@@ -1180,6 +1183,8 @@ settings.ctx.search_content = 也在對話內容中搜索,而不僅僅是標
|
|
|
1180
1183
|
settings.ctx.search.desc = 啟用在上下文項目內容中進行搜索的功能
|
|
1181
1184
|
settings.ctx.sources = 显示Llama索引源
|
|
1182
1185
|
settings.ctx.sources.desc = 如果启用,使用的源将在回应中显示(如果可用,不适用于流式聊天)
|
|
1186
|
+
settings.ctx.urls.internal = 在内置浏览器中打开网址
|
|
1187
|
+
settings.ctx.urls.internal.desc = 启用此选项以在内置浏览器 (Chromium) 中打开所有网址,而不是外部浏览器。
|
|
1183
1188
|
settings.ctx.use_extra = 使用额外的上下文输出
|
|
1184
1189
|
settings.ctx.use_extra.desc = 如果启用,将在命令结果的 JSON 输出旁边显示纯文本输出(如果有)。
|
|
1185
1190
|
settings.debug.show_menu = 显示调试菜单
|
|
@@ -1544,6 +1549,7 @@ tool.indexer.tab.web.loader = 数据加载器
|
|
|
1544
1549
|
tool.indexer.tab.web.source = 数据来源
|
|
1545
1550
|
tool.indexer.tab.web.tip = 选择数据加载器并定义加载器参数,以便嵌入来自网络的外部数据。
|
|
1546
1551
|
tool.indexer.title = 索引器
|
|
1552
|
+
tool.web_browser.security.footer = 安全提示:为保护您的安全,请避免使用内置浏览器进行敏感或关键的任务。 它仅用于基本用途。
|
|
1547
1553
|
translator.btn.left = 翻译 >>
|
|
1548
1554
|
translator.btn.right = << 翻译
|
|
1549
1555
|
translator.clear.confirm = 清除翻译输出(两列)?
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|