@theia/core 1.63.0-next.52 → 1.63.0
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.
- package/README.md +7 -7
- package/i18n/nls.cs.json +112 -5
- package/i18n/nls.de.json +112 -5
- package/i18n/nls.es.json +112 -5
- package/i18n/nls.fr.json +112 -5
- package/i18n/nls.hu.json +112 -5
- package/i18n/nls.it.json +112 -5
- package/i18n/nls.ja.json +112 -5
- package/i18n/nls.json +116 -9
- package/i18n/nls.ko.json +112 -5
- package/i18n/nls.pl.json +112 -5
- package/i18n/nls.pt-br.json +112 -5
- package/i18n/nls.ru.json +112 -5
- package/i18n/nls.tr.json +112 -5
- package/i18n/nls.zh-cn.json +112 -5
- package/i18n/nls.zh-tw.json +112 -5
- package/lib/browser/catalog.json +110 -23
- package/lib/browser/context-menu-renderer.d.ts.map +1 -1
- package/lib/browser/context-menu-renderer.js +4 -1
- package/lib/browser/context-menu-renderer.js.map +1 -1
- package/lib/browser/core-preferences.d.ts +1 -0
- package/lib/browser/core-preferences.d.ts.map +1 -1
- package/lib/browser/core-preferences.js +12 -0
- package/lib/browser/core-preferences.js.map +1 -1
- package/lib/browser/hover-service.d.ts +5 -0
- package/lib/browser/hover-service.d.ts.map +1 -1
- package/lib/browser/hover-service.js +12 -0
- package/lib/browser/hover-service.js.map +1 -1
- package/lib/browser/menu/browser-menu-plugin.d.ts.map +1 -1
- package/lib/browser/menu/browser-menu-plugin.js +4 -5
- package/lib/browser/menu/browser-menu-plugin.js.map +1 -1
- package/lib/browser/menu/menu.spec.js +2 -0
- package/lib/browser/menu/menu.spec.js.map +1 -1
- package/lib/browser/shell/application-shell.d.ts.map +1 -1
- package/lib/browser/shell/application-shell.js +3 -2
- package/lib/browser/shell/application-shell.js.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.d.ts +3 -3
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.d.ts.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.js +3 -2
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.js.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.d.ts.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.js +11 -9
- package/lib/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.js.map +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-toolbar-item.d.ts +1 -1
- package/lib/browser/shell/tab-bar-toolbar/tab-toolbar-item.d.ts.map +1 -1
- package/lib/browser/shell/tab-bars.d.ts.map +1 -1
- package/lib/browser/shell/tab-bars.js +21 -8
- package/lib/browser/shell/tab-bars.js.map +1 -1
- package/lib/browser/widgets/select-component.d.ts +2 -0
- package/lib/browser/widgets/select-component.d.ts.map +1 -1
- package/lib/browser/widgets/select-component.js +21 -7
- package/lib/browser/widgets/select-component.js.map +1 -1
- package/lib/common/index.d.ts +1 -0
- package/lib/common/index.d.ts.map +1 -1
- package/lib/common/index.js +1 -0
- package/lib/common/index.js.map +1 -1
- package/lib/common/menu/menu-model-registry.d.ts +2 -2
- package/lib/common/menu/menu-model-registry.d.ts.map +1 -1
- package/lib/common/menu/menu-model-registry.js +25 -32
- package/lib/common/menu/menu-model-registry.js.map +1 -1
- package/lib/common/menu/menu-types.d.ts +2 -2
- package/lib/common/menu/menu-types.d.ts.map +1 -1
- package/lib/common/menu/menu-types.js.map +1 -1
- package/lib/common/resource.d.ts +3 -3
- package/lib/common/resource.d.ts.map +1 -1
- package/lib/common/resource.js +4 -6
- package/lib/common/resource.js.map +1 -1
- package/lib/electron-browser/preload.d.ts.map +1 -1
- package/lib/electron-browser/preload.js +17 -0
- package/lib/electron-browser/preload.js.map +1 -1
- package/lib/electron-common/electron-api.d.ts +1 -0
- package/lib/electron-common/electron-api.d.ts.map +1 -1
- package/lib/electron-common/electron-api.js.map +1 -1
- package/package.json +6 -6
- package/src/browser/context-menu-renderer.ts +5 -2
- package/src/browser/core-preferences.ts +13 -0
- package/src/browser/hover-service.ts +13 -0
- package/src/browser/menu/browser-menu-plugin.ts +4 -5
- package/src/browser/menu/menu.spec.ts +3 -1
- package/src/browser/shell/application-shell.ts +3 -2
- package/src/browser/shell/tab-bar-toolbar/tab-bar-toolbar-menu-adapters.tsx +5 -5
- package/src/browser/shell/tab-bar-toolbar/tab-bar-toolbar-registry.ts +14 -11
- package/src/browser/shell/tab-bar-toolbar/tab-toolbar-item.tsx +1 -1
- package/src/browser/shell/tab-bars.ts +32 -15
- package/src/browser/style/tabs.css +13 -2
- package/src/browser/widgets/select-component.tsx +22 -6
- package/src/common/index.ts +1 -0
- package/src/common/menu/menu-model-registry.ts +27 -33
- package/src/common/menu/menu-types.ts +2 -2
- package/src/common/resource.ts +5 -7
- package/src/electron-browser/preload.ts +3 -1
- package/src/electron-common/electron-api.ts +2 -0
package/i18n/nls.ja.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"ai-chat-open-current-session-summary": "開会中のセッション概要",
|
|
3
3
|
"ai-chat-summary-current-session": "現在のセッションを総括する",
|
|
4
4
|
"ai-chat-ui.show-settings": "AI設定の表示",
|
|
5
|
+
"ai-chat.initiate-session-with-task-context": "タスクのコンテキストセッションの開始",
|
|
5
6
|
"aiConfiguration:open": "AI設定ビューを開く",
|
|
6
7
|
"aiHistory:clear": "AI履歴クリアヒストリー",
|
|
7
8
|
"aiHistory:open": "AI履歴ビューを開く",
|
|
@@ -12,6 +13,7 @@
|
|
|
12
13
|
"aiHistory:toggleRaw": "AIの歴史生の表示の切り替え",
|
|
13
14
|
"aiHistory:toggleRenderNewlines": "AIの歴史:改行の解釈",
|
|
14
15
|
"debug.breakpoint.editCondition": "編集条件...",
|
|
16
|
+
"debug.breakpoint.removeSelected": "選択されたブレークポイントの削除",
|
|
15
17
|
"notebook.cell.changeToCode": "セルをコードに変更",
|
|
16
18
|
"notebook.cell.changeToMarkdown": "セルをマーダウンに変更",
|
|
17
19
|
"notebook.cell.insertMarkdownCellAbove": "マークダウン・セルを上に挿入する",
|
|
@@ -21,6 +23,10 @@
|
|
|
21
23
|
"theia": {
|
|
22
24
|
"ai": {
|
|
23
25
|
"agents": {
|
|
26
|
+
"completionNotification": {
|
|
27
|
+
"mdDescription": "このエージェントがタスクを完了したときの通知動作。設定されていない場合、グローバルなデフォルトの通知設定が使用されます。\n - os-notification`:OS/ システム通知を表示する\n - メッセージ`:ステータスバー/メッセージエリアに通知を表示する\n - blink`: ステータスバー/メッセージエリアに通知を表示する:UI を点滅またはハイライトする\n - off`:このエージェントの通知を無効にする",
|
|
28
|
+
"title": "完了通知"
|
|
29
|
+
},
|
|
24
30
|
"enable": {
|
|
25
31
|
"mdDescription": "エージェントを有効(true)にするか無効(false)にするかを指定します。",
|
|
26
32
|
"title": "エージェントを有効にする"
|
|
@@ -59,12 +65,24 @@
|
|
|
59
65
|
"pinChatAgent": {
|
|
60
66
|
"description": "エージェントのピン留めを有効にすると、プロンプトの間、言及されたチャットエージェントを自動的にアクティブに保ち、繰り返し言及する必要性を減らします。"
|
|
61
67
|
},
|
|
68
|
+
"toolConfirmation": {
|
|
69
|
+
"confirm": {
|
|
70
|
+
"description": "ツール実行前に確認を求める"
|
|
71
|
+
},
|
|
72
|
+
"disabled": {
|
|
73
|
+
"description": "ツールの実行を無効にする"
|
|
74
|
+
},
|
|
75
|
+
"yolo": {
|
|
76
|
+
"description": "確認なしで自動的にツールを実行する"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
62
79
|
"view": {
|
|
63
80
|
"label": "AIチャット"
|
|
64
81
|
}
|
|
65
82
|
},
|
|
66
83
|
"chat-ui": {
|
|
67
84
|
"addContextVariable": "コンテキスト変数の追加",
|
|
85
|
+
"aiDisabled": "AI機能は無効",
|
|
68
86
|
"applyAll": "すべてを適用する",
|
|
69
87
|
"applyAllTitle": "保留中の変更をすべて適用する",
|
|
70
88
|
"attachToContext": "コンテキストに要素をアタッチする",
|
|
@@ -93,11 +111,13 @@
|
|
|
93
111
|
"node": {
|
|
94
112
|
"toolbar": {
|
|
95
113
|
"cancel": "キャンセル",
|
|
96
|
-
"edit": "編集"
|
|
114
|
+
"edit": "編集",
|
|
115
|
+
"retry": "リトライ"
|
|
97
116
|
}
|
|
98
117
|
},
|
|
99
118
|
"openDiff": "オープンデフ",
|
|
100
119
|
"openOriginalFile": "オリジナル・ファイルを開く",
|
|
120
|
+
"performThisTask": "このタスクを実行する。",
|
|
101
121
|
"pinAgent": "ピン・エージェント",
|
|
102
122
|
"removeChat": "チャットの削除",
|
|
103
123
|
"renameChat": "チャット名の変更",
|
|
@@ -111,8 +131,26 @@
|
|
|
111
131
|
"thinking": "考える"
|
|
112
132
|
},
|
|
113
133
|
"toolcall-part-renderer": {
|
|
114
|
-
"
|
|
115
|
-
"
|
|
134
|
+
"denied": "実行拒否",
|
|
135
|
+
"finished": "ラン"
|
|
136
|
+
},
|
|
137
|
+
"toolconfirmation": {
|
|
138
|
+
"allow": "許可する",
|
|
139
|
+
"allow-forever": "常に許可する",
|
|
140
|
+
"allow-forever-tooltip": "このツールを常に許可する",
|
|
141
|
+
"allow-session": "このチャットを許可する",
|
|
142
|
+
"allow-session-tooltip": "このチャットセッションでこのツールのすべての呼び出しを許可する",
|
|
143
|
+
"allow-tooltip": "このツールの呼び出しを一度だけ許可する",
|
|
144
|
+
"allowed": "ツール実行可",
|
|
145
|
+
"denied": "ツール実行拒否",
|
|
146
|
+
"deny": "拒否する",
|
|
147
|
+
"deny-forever": "常に拒否",
|
|
148
|
+
"deny-forever-tooltip": "このツールは常に否定する",
|
|
149
|
+
"deny-session": "このチャットを拒否する",
|
|
150
|
+
"deny-session-tooltip": "このチャットセッションでこのツールのすべての呼び出しを拒否する",
|
|
151
|
+
"deny-tooltip": "このツールコールを一度拒否する",
|
|
152
|
+
"header": "ツール実行の確認",
|
|
153
|
+
"tool": "工具"
|
|
116
154
|
},
|
|
117
155
|
"unpinAgent": "アンピンエージェント"
|
|
118
156
|
},
|
|
@@ -126,6 +164,10 @@
|
|
|
126
164
|
"automaticEnable": {
|
|
127
165
|
"description": "編集中の任意の(Monaco)エディタ内で、AI補完をインラインで自動的にトリガー。 \n あるいは、コマンド \"Trigger Inline Suggestion\" またはデフォルトのショートカット \"Ctrl+Alt+Space\" を使って、手動でコードをトリガーすることもできます。"
|
|
128
166
|
},
|
|
167
|
+
"cacheCapacity": {
|
|
168
|
+
"description": "キャッシュに格納するコード補完の最大数。数値が大きいほどパフォーマンスが向上するが、より多くのメモリを消費する。 最小値は 10 で、推奨範囲は 50 ~ 200 です。",
|
|
169
|
+
"title": "コード補完キャッシュ容量"
|
|
170
|
+
},
|
|
129
171
|
"debounceDelay": {
|
|
130
172
|
"description": "エディタで変更が検出された後、AI補完をトリガーするまでの遅延をミリ秒単位で制御します。 自動コード補完`が有効になっている必要があります。デバウンス遅延を無効にするには0を入力してください。",
|
|
131
173
|
"title": "デバウンス遅延"
|
|
@@ -162,6 +204,10 @@
|
|
|
162
204
|
"changeSetSummaryVariable": {
|
|
163
205
|
"description": "変更セット内のファイルとその内容の要約を提供します。"
|
|
164
206
|
},
|
|
207
|
+
"defaultNotification": {
|
|
208
|
+
"mdDescription": "AIエージェントがタスクを完了したときに使用されるデフォルトの通知方法。個々のエージェントはこの設定を上書きできる。\n - os-notification`:OS/システム通知を表示する\n - メッセージ`:ステータスバー/メッセージエリアに通知を表示する。\n - blink`:UI を点滅またはハイライトする\n - off`:すべての通知を無効にする",
|
|
209
|
+
"title": "デフォルトの通知タイプ"
|
|
210
|
+
},
|
|
165
211
|
"discard": {
|
|
166
212
|
"label": "AIプロンプト・テンプレート"
|
|
167
213
|
},
|
|
@@ -179,6 +225,16 @@
|
|
|
179
225
|
"purpose": "目的",
|
|
180
226
|
"vendor": "ベンダー"
|
|
181
227
|
},
|
|
228
|
+
"maxRetries": {
|
|
229
|
+
"mdDescription": "AIプロバイダへのリクエストに失敗したときの再試行回数の最大値。0は再試行なしを意味する。",
|
|
230
|
+
"title": "最大リトライ回数"
|
|
231
|
+
},
|
|
232
|
+
"openEditorsShortVariable": {
|
|
233
|
+
"description": "現在開いているすべてのファイルへのショートリファレンス(相対パス、カンマ区切り)"
|
|
234
|
+
},
|
|
235
|
+
"openEditorsVariable": {
|
|
236
|
+
"description": "ワークスペース・ルートからの相対パスで、現在開いているすべてのファイルのカンマ区切りリスト。"
|
|
237
|
+
},
|
|
182
238
|
"prefs": {
|
|
183
239
|
"title": "AI機能【アルファ"
|
|
184
240
|
},
|
|
@@ -252,8 +308,17 @@
|
|
|
252
308
|
"apiKey": {
|
|
253
309
|
"description": "公式 Google AI (Gemini) アカウントの API キーを入力してください。**注意:** この設定を使用すると、Theia を実行しているマシンに GOOGLE AI API キーが平文で保存されます。キーを安全に設定するには、環境変数 `GOOGLE_API_KEY` を使用してください。"
|
|
254
310
|
},
|
|
311
|
+
"maxRetriesOnErrors": {
|
|
312
|
+
"description": "エラー発生時の最大リトライ回数。1より小さい場合、リトライロジックは無効になる"
|
|
313
|
+
},
|
|
255
314
|
"models": {
|
|
256
315
|
"description": "使用するGoogle Gemini公式モデル"
|
|
316
|
+
},
|
|
317
|
+
"retryDelayOnOtherErrors": {
|
|
318
|
+
"description": "その他のエラーが発生した場合の再試行までの遅延時間(Google GenAIは、モデルから返されたJSON構文が不完全であったり、500 Internal Server Errorなどのエラーを報告することがあります)。これを -1 に設定すると、このような場合の再試行を防ぎます。そうでない場合は、(0 を指定した場合は) すぐに再試行が行われるか、(正の数を指定した場合は) この遅延時間 (秒) 後に再試行が行われます。"
|
|
319
|
+
},
|
|
320
|
+
"retryDelayOnRateLimitError": {
|
|
321
|
+
"description": "速度制限エラーが発生した場合の再試行までの遅延時間(秒)。https://ai.google.dev/gemini-api/docs/rate-limits を参照。"
|
|
257
322
|
}
|
|
258
323
|
},
|
|
259
324
|
"history": {
|
|
@@ -365,6 +430,18 @@
|
|
|
365
430
|
"title": "環境変数"
|
|
366
431
|
},
|
|
367
432
|
"mdDescription": "コマンド、引数、オプションで環境変数、自動起動(デフォルトではtrue)を使ってMCPサーバーを設定する。各サーバーは、\"brave-search \"や \"filesystem \"などの一意のキーで識別されます。サーバーを起動するには、\"MCP: Start MCP Server \"コマンドを使用します。サーバーを停止するには、\"MCP: Stop MCP Server \"コマンドを使用します。自動起動が有効になるのは再起動後であることに注意してください。\n設定例\n```{\n \"brave-search\":{\n \"command\":\"npx\"、\n \"args\":[\n \"-y\",\n \"@modelcontextprotocol/server-brave-search\"\n ],\n \"env\":{\n \"brave_api_key\":\"YOUR_API_KEY\"\n },\n },\n \"filesystem\":{\n \"command\":\"npx\"、\n \"args\":[\"-y\", \"@modelcontextprotocol/server-filesystem\", \"/Users/YOUR_USERNAME/Desktop\"]、\n 「env\":{\n \"custom_env_var\":\"custom-value\"\n },\n 「autostart\": false\n }\n}\n```",
|
|
433
|
+
"serverAuthToken": {
|
|
434
|
+
"mdDescription": "必要であれば、サーバーの認証トークン。これはリモートサーバとの認証に使用されます。",
|
|
435
|
+
"title": "認証トークン"
|
|
436
|
+
},
|
|
437
|
+
"serverAuthTokenHeader": {
|
|
438
|
+
"mdDescription": "サーバ認証トークンに使用するヘッダー名。指定しなかった場合は、\"Authorization\" と \"Bearer\" が使用されます。",
|
|
439
|
+
"title": "認証ヘッダー名"
|
|
440
|
+
},
|
|
441
|
+
"serverUrl": {
|
|
442
|
+
"mdDescription": "リモートMCPサーバのURL。指定された場合、サーバはローカル・プロセスを開始する代わりに、このURLに接続します。",
|
|
443
|
+
"title": "サーバーURL"
|
|
444
|
+
},
|
|
368
445
|
"title": "MCPサーバーの構成"
|
|
369
446
|
},
|
|
370
447
|
"start": {
|
|
@@ -378,6 +455,7 @@
|
|
|
378
455
|
"arguments": "論拠: ",
|
|
379
456
|
"autostart": "オートスタート: ",
|
|
380
457
|
"command": "命令だ: ",
|
|
458
|
+
"connectServer": "コネクト",
|
|
381
459
|
"copiedAllList": "すべてのツールをクリップボードにコピー(すべてのツールのリスト)",
|
|
382
460
|
"copiedAllSingle": "すべてのツールをクリップボードにコピー(すべてのツールを含む単一のプロンプトフラグメント)",
|
|
383
461
|
"copiedForPromptTemplate": "プロンプトテンプレートのためにすべてのツールをクリップボードにコピー(すべてのツールを含む単一のプロンプトフラグメント)",
|
|
@@ -386,10 +464,14 @@
|
|
|
386
464
|
"copyForPrompt": "コピーツール(チャットまたはプロンプトテンプレート用)",
|
|
387
465
|
"copyForPromptTemplate": "プロンプトテンプレートのすべてをコピーする(すべてのツールで単一のプロンプトフラグメント)",
|
|
388
466
|
"disabled": "無効",
|
|
467
|
+
"disconnectServer": "切断",
|
|
389
468
|
"enabled": "有効",
|
|
390
469
|
"environmentVariables": "環境変数: ",
|
|
391
470
|
"noServers": "MCPサーバーが設定されていない",
|
|
471
|
+
"serverAuthToken": "認証トークン: ",
|
|
472
|
+
"serverAuthTokenHeader": "認証ヘッダー名: ",
|
|
392
473
|
"serverConfigurations": "MCPサーバーの構成",
|
|
474
|
+
"serverUrl": "サーバーのURL: ",
|
|
393
475
|
"startServer": "サーバ起動",
|
|
394
476
|
"stopServer": "サーバー停止",
|
|
395
477
|
"tools": "道具だ: ",
|
|
@@ -491,6 +573,8 @@
|
|
|
491
573
|
"useArrowsAlternatives": "または ↪So_21C5 を使って選択肢を示す..."
|
|
492
574
|
},
|
|
493
575
|
"tokenUsage": {
|
|
576
|
+
"cachedInputTokens": "キャッシュに書き込まれた入力トークン",
|
|
577
|
+
"cachedInputTokensTooltip": "入力トークン」に追加して追跡される。通常、キャッシュされていないトークンよりも高価。",
|
|
494
578
|
"inputTokens": "入力トークン",
|
|
495
579
|
"label": "トークンの使用",
|
|
496
580
|
"lastUsed": "最後の使用",
|
|
@@ -499,9 +583,12 @@
|
|
|
499
583
|
"noData": "トークンの使用データはまだない。",
|
|
500
584
|
"note": "トークンの使用はアプリケーションの開始時から追跡され、永続化されない。",
|
|
501
585
|
"outputTokens": "出力トークン",
|
|
586
|
+
"readCachedInputTokens": "キャッシュから読み込まれた入力トークン",
|
|
587
|
+
"readCachedInputTokensTooltip": "インプット・トークン」に追加して追跡される。通常、キャッシュされないよりもはるかに低コスト。通常、レート制限にはカウントされない。",
|
|
502
588
|
"title": "AIモデル・トークンの使用",
|
|
503
589
|
"total": "合計",
|
|
504
|
-
"totalTokens": "トークン合計"
|
|
590
|
+
"totalTokens": "トークン合計",
|
|
591
|
+
"totalTokensTooltip": "'入力トークン' + '出力トークン'"
|
|
505
592
|
},
|
|
506
593
|
"vercelai": {
|
|
507
594
|
"anthropicApiKey": {
|
|
@@ -559,6 +646,10 @@
|
|
|
559
646
|
"description": "除外するファイル/フォルダのパターン(グロブまたは正規表現)のリスト。",
|
|
560
647
|
"title": "除外ファイルパターン"
|
|
561
648
|
},
|
|
649
|
+
"searchMaxResults": {
|
|
650
|
+
"description": "ワークスペース検索機能が返す検索結果の最大数。",
|
|
651
|
+
"title": "最大検索結果"
|
|
652
|
+
},
|
|
562
653
|
"workspaceAgent": {
|
|
563
654
|
"description": "Theia IDEに統合されたAIアシスタントで、ソフトウェア開発者を支援するように設計されています。このエージェントはユーザーのワークスペースにアクセスし、利用可能なすべてのファイルとフォルダのリストを取得し、その内容を取得することができます。ファイルを変更することはできません。そのため、プロジェクトをどのように構築するか、ソースコードをどこに置くか、特定のコードや設定をどこで見つけるかなど、現在のプロジェクト、プロジェクトファイル、ワークスペース内のソースコードに関する質問に答えることができます。"
|
|
564
655
|
}
|
|
@@ -567,6 +658,15 @@
|
|
|
567
658
|
"ai-chat-ui": {
|
|
568
659
|
"open-settings-tooltip": "AIの設定を開く..."
|
|
569
660
|
},
|
|
661
|
+
"ai-core": {
|
|
662
|
+
"agentCompletionMessage": "エージェント \"{0}\" は任務を完了した。",
|
|
663
|
+
"agentCompletionTitle": "エージェント \"{0}\" タスク完了",
|
|
664
|
+
"agentCompletionWithTask": "エージェント \"{0}\" はタスクを完了した:{1}"
|
|
665
|
+
},
|
|
666
|
+
"ai-editor": {
|
|
667
|
+
"contextMenu": "AIに聞く",
|
|
668
|
+
"sendToChat": "AIチャットに送る"
|
|
669
|
+
},
|
|
570
670
|
"ai-ide": {
|
|
571
671
|
"open-agent-settings-tooltip": "エージェントの設定を開く..."
|
|
572
672
|
},
|
|
@@ -680,7 +780,14 @@
|
|
|
680
780
|
"tabDefaultSize": "タブのデフォルトサイズを指定します。",
|
|
681
781
|
"tabMaximize": "ダブルクリック時にタブを最大化するかどうかを制御します。",
|
|
682
782
|
"tabMinimumSize": "タブの最小サイズを指定します。",
|
|
683
|
-
"tabShrinkToFit": "タブを縮小して、空きスペースに合わせる。"
|
|
783
|
+
"tabShrinkToFit": "タブを縮小して、空きスペースに合わせる。",
|
|
784
|
+
"window": {
|
|
785
|
+
"tabCloseIconPlacement": {
|
|
786
|
+
"description": "タブタイトルのクローズアイコンをタブの先頭または末尾に配置します。すべてのプラットフォームで、デフォルトは末尾です。",
|
|
787
|
+
"end": "閉じるアイコンをラベルの最後に配置します。左から右への言語では、これはタブの右側です。",
|
|
788
|
+
"start": "閉じるアイコンをラベルの先頭に配置します。左から右への言語では、これはタブの左側です。"
|
|
789
|
+
}
|
|
790
|
+
}
|
|
684
791
|
},
|
|
685
792
|
"debug": {
|
|
686
793
|
"addConfigurationPlaceholder": "設定を追加するワークスペース・ルートを選択します。",
|
package/i18n/nls.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"ai-chat-open-current-session-summary": "Open Current Session Summary",
|
|
3
3
|
"ai-chat-summary-current-session": "Summarize Current Session",
|
|
4
4
|
"ai-chat-ui.show-settings": "Show AI Settings",
|
|
5
|
+
"ai-chat.initiate-session-with-task-context": "Task Context: Initiate Session",
|
|
5
6
|
"aiConfiguration:open": "Open AI Configuration view",
|
|
6
7
|
"aiHistory:clear": "AI History: Clear History",
|
|
7
8
|
"aiHistory:open": "Open AI History view",
|
|
@@ -12,6 +13,7 @@
|
|
|
12
13
|
"aiHistory:toggleRaw": "AI History: Toggle raw view",
|
|
13
14
|
"aiHistory:toggleRenderNewlines": "AI History: Interpret newlines",
|
|
14
15
|
"debug.breakpoint.editCondition": "Edit Condition...",
|
|
16
|
+
"debug.breakpoint.removeSelected": "Remove Selected Breakpoints",
|
|
15
17
|
"notebook.cell.changeToCode": "Change Cell to Code",
|
|
16
18
|
"notebook.cell.changeToMarkdown": "Change Cell to Markdown",
|
|
17
19
|
"notebook.cell.insertMarkdownCellAbove": "Insert Markdown Cell Above",
|
|
@@ -21,6 +23,10 @@
|
|
|
21
23
|
"theia": {
|
|
22
24
|
"ai": {
|
|
23
25
|
"agents": {
|
|
26
|
+
"completionNotification": {
|
|
27
|
+
"mdDescription": "Notification behavior when this agent completes a task. If not set, the global default notification setting will be used.\n - `os-notification`: Show OS/system notifications\n - `message`: Show notifications in the status bar/message area\n - `blink`: Blink or highlight the UI\n - `off`: Disable notifications for this agent",
|
|
28
|
+
"title": "Completion Notification"
|
|
29
|
+
},
|
|
24
30
|
"enable": {
|
|
25
31
|
"mdDescription": "Specifies whether the agent should be enabled (true) or disabled (false).",
|
|
26
32
|
"title": "Enable Agent"
|
|
@@ -59,12 +65,24 @@
|
|
|
59
65
|
"pinChatAgent": {
|
|
60
66
|
"description": "Enable agent pinning to automatically keep a mentioned chat agent active across prompts, reducing the need for repeated mentions.You can manually unpin or switch agents anytime."
|
|
61
67
|
},
|
|
68
|
+
"toolConfirmation": {
|
|
69
|
+
"confirm": {
|
|
70
|
+
"description": "Ask for confirmation before executing tools"
|
|
71
|
+
},
|
|
72
|
+
"disabled": {
|
|
73
|
+
"description": "Disable tool execution"
|
|
74
|
+
},
|
|
75
|
+
"yolo": {
|
|
76
|
+
"description": "Execute tools automatically without confirmation"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
62
79
|
"view": {
|
|
63
80
|
"label": "AI Chat"
|
|
64
81
|
}
|
|
65
82
|
},
|
|
66
83
|
"chat-ui": {
|
|
67
84
|
"addContextVariable": "Add context variable",
|
|
85
|
+
"aiDisabled": "AI features are disabled",
|
|
68
86
|
"applyAll": "Apply All",
|
|
69
87
|
"applyAllTitle": "Apply all pending changes",
|
|
70
88
|
"attachToContext": "Attach elements to context",
|
|
@@ -93,11 +111,13 @@
|
|
|
93
111
|
"node": {
|
|
94
112
|
"toolbar": {
|
|
95
113
|
"cancel": "Cancel",
|
|
96
|
-
"edit": "Edit"
|
|
114
|
+
"edit": "Edit",
|
|
115
|
+
"retry": "Retry"
|
|
97
116
|
}
|
|
98
117
|
},
|
|
99
118
|
"openDiff": "Open Diff",
|
|
100
119
|
"openOriginalFile": "Open Original File",
|
|
120
|
+
"performThisTask": "Perform this task.",
|
|
101
121
|
"pinAgent": "Pin Agent",
|
|
102
122
|
"removeChat": "Remove Chat",
|
|
103
123
|
"renameChat": "Rename Chat",
|
|
@@ -111,8 +131,26 @@
|
|
|
111
131
|
"thinking": "Thinking"
|
|
112
132
|
},
|
|
113
133
|
"toolcall-part-renderer": {
|
|
114
|
-
"
|
|
115
|
-
"
|
|
134
|
+
"denied": "Execution denied",
|
|
135
|
+
"finished": "Ran"
|
|
136
|
+
},
|
|
137
|
+
"toolconfirmation": {
|
|
138
|
+
"allow": "Allow",
|
|
139
|
+
"allow-forever": "Always Allow",
|
|
140
|
+
"allow-forever-tooltip": "Always allow this tool",
|
|
141
|
+
"allow-session": "Allow for this Chat",
|
|
142
|
+
"allow-session-tooltip": "Allow all calls of this tool for this chat session",
|
|
143
|
+
"allow-tooltip": "Allow this tool call once",
|
|
144
|
+
"allowed": "Tool execution allowed",
|
|
145
|
+
"denied": "Tool execution denied",
|
|
146
|
+
"deny": "Deny",
|
|
147
|
+
"deny-forever": "Always Deny",
|
|
148
|
+
"deny-forever-tooltip": "Always deny this tool",
|
|
149
|
+
"deny-session": "Deny for this Chat",
|
|
150
|
+
"deny-session-tooltip": "Deny all calls of this tool for this chat session",
|
|
151
|
+
"deny-tooltip": "Deny this tool call once",
|
|
152
|
+
"header": "Confirm Tool Execution",
|
|
153
|
+
"tool": "Tool"
|
|
116
154
|
},
|
|
117
155
|
"unpinAgent": "Unpin Agent"
|
|
118
156
|
},
|
|
@@ -126,6 +164,10 @@
|
|
|
126
164
|
"automaticEnable": {
|
|
127
165
|
"description": "Automatically trigger AI completions inline within any (Monaco) editor while editing. \n Alternatively, you can manually trigger the code via the command \"Trigger Inline Suggestion\" or the default shortcut \"Ctrl+Alt+Space\"."
|
|
128
166
|
},
|
|
167
|
+
"cacheCapacity": {
|
|
168
|
+
"description": "Maximum number of code completions to store in the cache. A higher number can improve performance but will consume more memory. Minimum value is 10, recommended range is between 50-200.",
|
|
169
|
+
"title": "Code Completion Cache Capacity"
|
|
170
|
+
},
|
|
129
171
|
"debounceDelay": {
|
|
130
172
|
"description": "Controls the delay in milliseconds before triggering AI completions after changes have been detected in the editor. Requires `Automatic Code Completion` to be enabled. Enter 0 to disable the debounce delay.",
|
|
131
173
|
"title": "Debounce Delay"
|
|
@@ -162,6 +204,10 @@
|
|
|
162
204
|
"changeSetSummaryVariable": {
|
|
163
205
|
"description": "Provides a summary of the files in a change set and their contents."
|
|
164
206
|
},
|
|
207
|
+
"defaultNotification": {
|
|
208
|
+
"mdDescription": "The default notification method used when an AI agent completes a task. Individual agents can override this setting.\n - `os-notification`: Show OS/system notifications\n - `message`: Show notifications in the status bar/message area\n - `blink`: Blink or highlight the UI\n - `off`: Disable all notifications",
|
|
209
|
+
"title": "Default Notification Type"
|
|
210
|
+
},
|
|
165
211
|
"discard": {
|
|
166
212
|
"label": "Discard AI Prompt Template"
|
|
167
213
|
},
|
|
@@ -179,6 +225,16 @@
|
|
|
179
225
|
"purpose": "Purpose",
|
|
180
226
|
"vendor": "Vendor"
|
|
181
227
|
},
|
|
228
|
+
"maxRetries": {
|
|
229
|
+
"mdDescription": "The maximum number of retry attempts when a request to an AI provider fails. A value of 0 means no retries.",
|
|
230
|
+
"title": "Maximum Retries"
|
|
231
|
+
},
|
|
232
|
+
"openEditorsShortVariable": {
|
|
233
|
+
"description": "Short reference to all currently open files (relative paths, comma-separated)"
|
|
234
|
+
},
|
|
235
|
+
"openEditorsVariable": {
|
|
236
|
+
"description": "A comma-separated list of all currently open files, relative to the workspace root."
|
|
237
|
+
},
|
|
182
238
|
"prefs": {
|
|
183
239
|
"title": "✨ AI Features [Alpha]"
|
|
184
240
|
},
|
|
@@ -236,7 +292,7 @@
|
|
|
236
292
|
},
|
|
237
293
|
"templateSettings": {
|
|
238
294
|
"selectVariant": "Select Variant:",
|
|
239
|
-
"unavailableVariant": "
|
|
295
|
+
"unavailableVariant": "Selected variant not available, default will be used"
|
|
240
296
|
},
|
|
241
297
|
"variable-contribution": {
|
|
242
298
|
"builtInVariable": "Theia Built-in Variable",
|
|
@@ -252,8 +308,17 @@
|
|
|
252
308
|
"apiKey": {
|
|
253
309
|
"description": "Enter an API Key of your official Google AI (Gemini) Account. **Please note:** By using this preference the GOOGLE AI API key will be stored in clear text on the machine running Theia. Use the environment variable `GOOGLE_API_KEY` to set the key securely."
|
|
254
310
|
},
|
|
311
|
+
"maxRetriesOnErrors": {
|
|
312
|
+
"description": "Maximum number of retries in case of errors. If smaller than 1, then the retry logic is disabled"
|
|
313
|
+
},
|
|
255
314
|
"models": {
|
|
256
315
|
"description": "Official Google Gemini models to use"
|
|
316
|
+
},
|
|
317
|
+
"retryDelayOnOtherErrors": {
|
|
318
|
+
"description": "Delay in seconds between retries in case of other errors (sometimes the Google GenAI reports errors such as incomplete JSON syntax returned from the model or 500 Internal Server Error). Setting this to -1 prevents retries in these cases. Otherwise a retry happens either immediately (if set to 0) or after this delay in seconds (if set to a positive number)."
|
|
319
|
+
},
|
|
320
|
+
"retryDelayOnRateLimitError": {
|
|
321
|
+
"description": "Delay in seconds between retries in case of rate limit errors. See https://ai.google.dev/gemini-api/docs/rate-limits"
|
|
257
322
|
}
|
|
258
323
|
},
|
|
259
324
|
"history": {
|
|
@@ -364,8 +429,20 @@
|
|
|
364
429
|
"mdDescription": "Optional environment variables to set for the server, such as an API key.",
|
|
365
430
|
"title": "Environment variables"
|
|
366
431
|
},
|
|
367
|
-
"mdDescription": "Configure MCP servers with command, arguments
|
|
368
|
-
"
|
|
432
|
+
"mdDescription": "Configure MCP servers either local with command, arguments and optionally environment variables, or remote with server URL, authentication token and optionally an authentication header name. Additionally it is possible to configure autostart (true by default). Each server is identified by a unique key, such as \"brave-search\" or \"filesystem\". To start a server, use the \"MCP: Start MCP Server\" command, which enables you to select the desired server. To stop a server, use the \"MCP: Stop MCP Server\" command. Please note that autostart will only take effect after a restart, you need to start a server manually for the first time.\nExample configuration:\n```{\n \"brave-search\": {\n \"command\": \"npx\",\n \"args\": [\n \"-y\",\n \"@modelcontextprotocol/server-brave-search\"\n ],\n \"env\": {\n \"BRAVE_API_KEY\": \"YOUR_API_KEY\"\n },\n },\n \"filesystem\": {\n \"command\": \"npx\",\n \"args\": [\"-y\", \"@modelcontextprotocol/server-filesystem\", \"/Users/YOUR_USERNAME/Desktop\"],\n \"env\": {\n \"CUSTOM_ENV_VAR\": \"custom-value\"\n },\n \"autostart\": false\n },\n \"jira\": {\n \"serverUrl\": \"YOUR_JIRA_MCP_SERVER_URL\",\n \"serverAuthToken\": \"YOUR_JIRA_MCP_SERVER_TOKEN\"\n }\n}\n```",
|
|
433
|
+
"serverAuthToken": {
|
|
434
|
+
"mdDescription": "The authentication token for the server, if required. This is used to authenticate with the remote server.",
|
|
435
|
+
"title": "Authentication Token"
|
|
436
|
+
},
|
|
437
|
+
"serverAuthTokenHeader": {
|
|
438
|
+
"mdDescription": "The header name to use for the server authentication token. If not provided, \"Authorization\" with \"Bearer\" will be used.",
|
|
439
|
+
"title": "Authentication Header Name"
|
|
440
|
+
},
|
|
441
|
+
"serverUrl": {
|
|
442
|
+
"mdDescription": "The URL of the remote MCP server. If provided, the server will connect to this URL instead of starting a local process.",
|
|
443
|
+
"title": "Server URL"
|
|
444
|
+
},
|
|
445
|
+
"title": "MCP Server Configuration"
|
|
369
446
|
},
|
|
370
447
|
"start": {
|
|
371
448
|
"label": "MCP: Start MCP Server"
|
|
@@ -378,6 +455,7 @@
|
|
|
378
455
|
"arguments": "Arguments: ",
|
|
379
456
|
"autostart": "Autostart: ",
|
|
380
457
|
"command": "Command: ",
|
|
458
|
+
"connectServer": "Connnect",
|
|
381
459
|
"copiedAllList": "Copied all tools to clipboard (list of all tools)",
|
|
382
460
|
"copiedAllSingle": "Copied all tools to clipboard (single prompt fragment with all tools)",
|
|
383
461
|
"copiedForPromptTemplate": "Copied all tools to clipboard for prompt template (single prompt fragment with all tools)",
|
|
@@ -386,10 +464,14 @@
|
|
|
386
464
|
"copyForPrompt": "Copy tool (for chat or prompt template)",
|
|
387
465
|
"copyForPromptTemplate": "Copy all for prompt template (single prompt fragment with all tools)",
|
|
388
466
|
"disabled": "Disabled",
|
|
467
|
+
"disconnectServer": "Disconnnect",
|
|
389
468
|
"enabled": "Enabled",
|
|
390
469
|
"environmentVariables": "Environment Variables: ",
|
|
391
470
|
"noServers": "No MCP servers configured",
|
|
471
|
+
"serverAuthToken": "Authentication Token: ",
|
|
472
|
+
"serverAuthTokenHeader": "Authentication Header Name: ",
|
|
392
473
|
"serverConfigurations": "MCP Server Configurations",
|
|
474
|
+
"serverUrl": "Server URL: ",
|
|
393
475
|
"startServer": "Start Server",
|
|
394
476
|
"stopServer": "Stop Server",
|
|
395
477
|
"tools": "Tools: ",
|
|
@@ -482,7 +564,7 @@
|
|
|
482
564
|
"agent": {
|
|
483
565
|
"description": "This agent provides assistance to write and execute arbitrary terminal commands. Based on the user's request, it suggests commands and allows the user to directly paste and execute them in the terminal. It accesses the current directory, environment and the recent terminal output of the terminal session to provide context-aware assistance"
|
|
484
566
|
},
|
|
485
|
-
"askAi": "Ask
|
|
567
|
+
"askAi": "Ask AI",
|
|
486
568
|
"askTerminalCommand": "Ask about a terminal command...",
|
|
487
569
|
"hitEnterConfirm": "Hit enter to confirm",
|
|
488
570
|
"howCanIHelp": "How can I help you?",
|
|
@@ -491,6 +573,8 @@
|
|
|
491
573
|
"useArrowsAlternatives": " or use ⇅ to show alternatives..."
|
|
492
574
|
},
|
|
493
575
|
"tokenUsage": {
|
|
576
|
+
"cachedInputTokens": "Input Tokens Written to Cache",
|
|
577
|
+
"cachedInputTokensTooltip": "Tracked additionally to 'Input Tokens'. Usually more expensive than non-cached tokens.",
|
|
494
578
|
"inputTokens": "Input Tokens",
|
|
495
579
|
"label": "Token Usage",
|
|
496
580
|
"lastUsed": "Last Used",
|
|
@@ -499,9 +583,12 @@
|
|
|
499
583
|
"noData": "No token usage data available yet.",
|
|
500
584
|
"note": "Token usage is tracked since the start of the application and is not persisted.",
|
|
501
585
|
"outputTokens": "Output Tokens",
|
|
586
|
+
"readCachedInputTokens": "Input Tokens Read From Cache",
|
|
587
|
+
"readCachedInputTokensTooltip": "Tracked additionally to 'Input Token'. Usually much less expensive than not cached. Usually does not count to rate limits.",
|
|
502
588
|
"title": "AI Model Token Usage",
|
|
503
589
|
"total": "Total",
|
|
504
|
-
"totalTokens": "Total Tokens"
|
|
590
|
+
"totalTokens": "Total Tokens",
|
|
591
|
+
"totalTokensTooltip": "'Input Tokens' + 'Output Tokens'"
|
|
505
592
|
},
|
|
506
593
|
"vercelai": {
|
|
507
594
|
"anthropicApiKey": {
|
|
@@ -559,6 +646,10 @@
|
|
|
559
646
|
"description": "List of patterns (glob or regex) for files/folders to exclude.",
|
|
560
647
|
"title": "Excluded File Patterns"
|
|
561
648
|
},
|
|
649
|
+
"searchMaxResults": {
|
|
650
|
+
"description": "Maximum number of search results returned by the workspace search function.",
|
|
651
|
+
"title": "Maximum Search Results"
|
|
652
|
+
},
|
|
562
653
|
"workspaceAgent": {
|
|
563
654
|
"description": "An AI assistant integrated into Theia IDE, designed to assist software developers. This agent can access the users workspace, it can get a list of all available files and folders and retrieve their content. It cannot modify files. It can therefore answer questions about the current project, project files and source code in the workspace, such as how to build the project, where to put source code, where to find specific code or configurations, etc."
|
|
564
655
|
}
|
|
@@ -567,6 +658,15 @@
|
|
|
567
658
|
"ai-chat-ui": {
|
|
568
659
|
"open-settings-tooltip": "Open AI settings..."
|
|
569
660
|
},
|
|
661
|
+
"ai-core": {
|
|
662
|
+
"agentCompletionMessage": "Agent \"{0}\" has completed its task.",
|
|
663
|
+
"agentCompletionTitle": "Agent \"{0}\" Task Completed",
|
|
664
|
+
"agentCompletionWithTask": "Agent \"{0}\" has completed the task: {1}"
|
|
665
|
+
},
|
|
666
|
+
"ai-editor": {
|
|
667
|
+
"contextMenu": "Ask AI",
|
|
668
|
+
"sendToChat": "Send to AI Chat"
|
|
669
|
+
},
|
|
570
670
|
"ai-ide": {
|
|
571
671
|
"open-agent-settings-tooltip": "Open Agent settings..."
|
|
572
672
|
},
|
|
@@ -680,7 +780,14 @@
|
|
|
680
780
|
"tabDefaultSize": "Specifies the default size for tabs.",
|
|
681
781
|
"tabMaximize": "Controls whether to maximize tabs on double click.",
|
|
682
782
|
"tabMinimumSize": "Specifies the minimum size for tabs.",
|
|
683
|
-
"tabShrinkToFit": "Shrink tabs to fit available space."
|
|
783
|
+
"tabShrinkToFit": "Shrink tabs to fit available space.",
|
|
784
|
+
"window": {
|
|
785
|
+
"tabCloseIconPlacement": {
|
|
786
|
+
"description": "Place the close icons on tab titles at the start or end of the tab. The default is end on all platforms.",
|
|
787
|
+
"end": "Place the close icon at the end of the label. In left-to-right languages, this is the right side of the tab.",
|
|
788
|
+
"start": "Place the close icon at the start of the label. In left-to-right languages, this is the left side of the tab."
|
|
789
|
+
}
|
|
790
|
+
}
|
|
684
791
|
},
|
|
685
792
|
"debug": {
|
|
686
793
|
"addConfigurationPlaceholder": "Select workspace root to add configuration to",
|