@theia/core 1.64.0-next.28 → 1.64.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.
Files changed (95) hide show
  1. package/README.md +6 -6
  2. package/i18n/nls.cs.json +59 -9
  3. package/i18n/nls.de.json +59 -9
  4. package/i18n/nls.es.json +59 -9
  5. package/i18n/nls.fr.json +59 -9
  6. package/i18n/nls.hu.json +59 -9
  7. package/i18n/nls.it.json +59 -9
  8. package/i18n/nls.ja.json +59 -9
  9. package/i18n/nls.json +63 -13
  10. package/i18n/nls.ko.json +59 -9
  11. package/i18n/nls.pl.json +59 -9
  12. package/i18n/nls.pt-br.json +59 -9
  13. package/i18n/nls.ru.json +59 -9
  14. package/i18n/nls.tr.json +59 -9
  15. package/i18n/nls.zh-cn.json +59 -9
  16. package/i18n/nls.zh-tw.json +59 -9
  17. package/lib/browser/catalog.json +149 -15
  18. package/lib/browser/context-key-service.d.ts +4 -0
  19. package/lib/browser/context-key-service.d.ts.map +1 -1
  20. package/lib/browser/context-key-service.js.map +1 -1
  21. package/lib/browser/frontend-application-module.js +1 -1
  22. package/lib/browser/frontend-application-module.js.map +1 -1
  23. package/lib/browser/menu/browser-menu-plugin.d.ts +1 -1
  24. package/lib/browser/menu/browser-menu-plugin.d.ts.map +1 -1
  25. package/lib/browser/menu/browser-menu-plugin.js +2 -2
  26. package/lib/browser/menu/browser-menu-plugin.js.map +1 -1
  27. package/lib/browser/preload/i18n-preload-contribution.js +1 -1
  28. package/lib/browser/preload/i18n-preload-contribution.js.map +1 -1
  29. package/lib/browser/shell/application-shell.d.ts +1 -1
  30. package/lib/browser/shell/application-shell.d.ts.map +1 -1
  31. package/lib/browser/shell/application-shell.js.map +1 -1
  32. package/lib/common/array-utils.d.ts +4 -0
  33. package/lib/common/array-utils.d.ts.map +1 -1
  34. package/lib/common/array-utils.js +47 -0
  35. package/lib/common/array-utils.js.map +1 -1
  36. package/lib/common/diff.d.ts +33 -0
  37. package/lib/common/diff.d.ts.map +1 -0
  38. package/lib/common/diff.js +20 -0
  39. package/lib/common/diff.js.map +1 -0
  40. package/lib/common/message-rpc/msg-pack-extension-manager.js +2 -2
  41. package/lib/common/message-rpc/msg-pack-extension-manager.js.map +1 -1
  42. package/lib/common/observable/autorun.d.ts +81 -0
  43. package/lib/common/observable/autorun.d.ts.map +1 -0
  44. package/lib/common/observable/autorun.js +194 -0
  45. package/lib/common/observable/autorun.js.map +1 -0
  46. package/lib/common/observable/derived-observable.d.ts +71 -0
  47. package/lib/common/observable/derived-observable.d.ts.map +1 -0
  48. package/lib/common/observable/derived-observable.js +258 -0
  49. package/lib/common/observable/derived-observable.js.map +1 -0
  50. package/lib/common/observable/index.d.ts +8 -0
  51. package/lib/common/observable/index.d.ts.map +1 -0
  52. package/lib/common/observable/index.js +26 -0
  53. package/lib/common/observable/index.js.map +1 -0
  54. package/lib/common/observable/observable-base.d.ts +181 -0
  55. package/lib/common/observable/observable-base.d.ts.map +1 -0
  56. package/lib/common/observable/observable-base.js +183 -0
  57. package/lib/common/observable/observable-base.js.map +1 -0
  58. package/lib/common/observable/observable-from-event.d.ts +41 -0
  59. package/lib/common/observable/observable-from-event.d.ts.map +1 -0
  60. package/lib/common/observable/observable-from-event.js +115 -0
  61. package/lib/common/observable/observable-from-event.js.map +1 -0
  62. package/lib/common/observable/observable-signal.d.ts +9 -0
  63. package/lib/common/observable/observable-signal.d.ts.map +1 -0
  64. package/lib/common/observable/observable-signal.js +45 -0
  65. package/lib/common/observable/observable-signal.js.map +1 -0
  66. package/lib/common/observable/observable-utils.d.ts +26 -0
  67. package/lib/common/observable/observable-utils.d.ts.map +1 -0
  68. package/lib/common/observable/observable-utils.js +98 -0
  69. package/lib/common/observable/observable-utils.js.map +1 -0
  70. package/lib/common/observable/observable.spec.d.ts +2 -0
  71. package/lib/common/observable/observable.spec.d.ts.map +1 -0
  72. package/lib/common/observable/observable.spec.js +301 -0
  73. package/lib/common/observable/observable.spec.js.map +1 -0
  74. package/lib/common/observable/settable-observable.d.ts +16 -0
  75. package/lib/common/observable/settable-observable.d.ts.map +1 -0
  76. package/lib/common/observable/settable-observable.js +58 -0
  77. package/lib/common/observable/settable-observable.js.map +1 -0
  78. package/package.json +7 -8
  79. package/src/browser/context-key-service.ts +5 -0
  80. package/src/browser/frontend-application-module.ts +1 -1
  81. package/src/browser/menu/browser-menu-plugin.ts +3 -3
  82. package/src/browser/preload/i18n-preload-contribution.ts +1 -1
  83. package/src/browser/shell/application-shell.ts +1 -1
  84. package/src/common/array-utils.ts +53 -0
  85. package/src/common/diff.ts +56 -0
  86. package/src/common/message-rpc/msg-pack-extension-manager.ts +2 -2
  87. package/src/common/observable/autorun.ts +246 -0
  88. package/src/common/observable/derived-observable.ts +321 -0
  89. package/src/common/observable/index.ts +23 -0
  90. package/src/common/observable/observable-base.ts +324 -0
  91. package/src/common/observable/observable-from-event.ts +148 -0
  92. package/src/common/observable/observable-signal.ts +48 -0
  93. package/src/common/observable/observable-utils.ts +119 -0
  94. package/src/common/observable/observable.spec.ts +342 -0
  95. package/src/common/observable/settable-observable.ts +73 -0
package/i18n/nls.ja.json CHANGED
@@ -82,6 +82,7 @@
82
82
  },
83
83
  "chat-ui": {
84
84
  "addContextVariable": "コンテキスト変数の追加",
85
+ "agent": "代理店",
85
86
  "aiDisabled": "AI機能は無効",
86
87
  "applyAll": "すべてを適用する",
87
88
  "applyAllTitle": "保留中の変更をすべて適用する",
@@ -96,6 +97,7 @@
96
97
  "featuresDisabled": "現在、すべてのAI機能は無効になっています!",
97
98
  "howToEnable": "AI機能を有効にする方法:",
98
99
  "noRenderer": "エラー:レンダラーが見つかりません",
100
+ "scrollToBottom": "最新のメッセージへジャンプ",
99
101
  "settingsMenu": "設定メニュー",
100
102
  "waitingForInput": "入力を待つ",
101
103
  "you": "あなた"
@@ -104,6 +106,22 @@
104
106
  "generatedCode": "生成コード"
105
107
  },
106
108
  "copyCodeBlock": "コードブロックのコピー",
109
+ "delegation-response-renderer": {
110
+ "prompt": {
111
+ "label": "委任されたプロンプト:"
112
+ },
113
+ "response": {
114
+ "label": "反応だ:"
115
+ },
116
+ "starting": "代表団を率いて...",
117
+ "status": {
118
+ "canceled": "キャンセル",
119
+ "completed": "完成",
120
+ "error": "エラー",
121
+ "generating": "生成...",
122
+ "starting": "スタート..."
123
+ }
124
+ },
107
125
  "deleteChangeSet": "変更セットの削除",
108
126
  "editRequest": "編集",
109
127
  "enterChatName": "チャット名を入力",
@@ -118,7 +136,6 @@
118
136
  "openDiff": "オープンデフ",
119
137
  "openOriginalFile": "オリジナル・ファイルを開く",
120
138
  "performThisTask": "このタスクを実行する。",
121
- "pinAgent": "ピン・エージェント",
122
139
  "removeChat": "チャットの削除",
123
140
  "renameChat": "チャット名の変更",
124
141
  "selectChat": "チャットを選択",
@@ -214,27 +231,38 @@
214
231
  "discardCustomPrompt": {
215
232
  "tooltip": "カスタマイズの破棄"
216
233
  },
217
- "enableAI": {
218
- "mdDescription": "この設定により、最新のAI機能(アルファ版)にアクセスできます。 \n これらの機能はアルファ版の段階であるため、変更される可能性があり、さらに改善されることにご注意ください。これらの機能は、アクセスを提供する言語モデル(LLM)に継続的なリクエストを生成する可能性があることを認識することが重要です。このため、綿密に監視する必要があるコストが発生する可能性があります。このオプションを有効にすることで、これらのリスクを認識することになります。 \n **ご注意ください!このセクションの以下の設定は、メイン機能の設定が有効になって初めて有効になります。\n このセクションの以下の設定は、メイン機能の設定が有効になって初めて有効になります。この機能を有効にした後、少なくとも1つのLLMプロバイダを以下に設定する必要があります。また、[ドキュメント](https://theia-ide.org/docs/user_ai/)**も参照してください。"
219
- },
220
234
  "languageModelRenderer": {
221
- "family": "家族",
222
235
  "languageModel": "言語モデル",
223
- "maxOutputTokens": "最大出力トークン",
224
- "minInputTokens": "最小入力トークン",
225
- "purpose": "目的",
226
- "vendor": "ベンダー"
236
+ "purpose": "目的"
227
237
  },
228
238
  "maxRetries": {
229
239
  "mdDescription": "AIプロバイダへのリクエストに失敗したときの再試行回数の最大値。0は再試行なしを意味する。",
230
240
  "title": "最大リトライ回数"
231
241
  },
242
+ "modelAliasesConfiguration": {
243
+ "agents": "このエイリアスを使用するエージェント",
244
+ "defaultList": "[デフォルトリスト]",
245
+ "evaluatesTo": "に評価される。",
246
+ "label": "モデルの別名",
247
+ "noAgents": "このエイリアスを使用するエージェントはいない。",
248
+ "noResolvedModel": "このエイリアスに対応するモデルは用意されていない。",
249
+ "selectAlias": "モデルエイリアスを選択してください。",
250
+ "selectedModelId": "厳選モデル",
251
+ "unavailableModel": "選択されたモデルの販売は終了しました。"
252
+ },
232
253
  "openEditorsShortVariable": {
233
254
  "description": "現在開いているすべてのファイルへのショートリファレンス(相対パス、カンマ区切り)"
234
255
  },
235
256
  "openEditorsVariable": {
236
257
  "description": "ワークスペース・ルートからの相対パスで、現在開いているすべてのファイルのカンマ区切りリスト。"
237
258
  },
259
+ "preference": {
260
+ "languageModelAliases": {
261
+ "description": "AI Configuration View]({0})で、各言語モデルエイリアスのモデルを設定します。あるいは、settings.jsonで手動で設定することもできます: \n```\n\"default/code\":{\n \"selectedModel\":\"anthropic/claude-opus-4-20250514\"\n}\n```",
262
+ "selectedModel": "このエイリアスのためにユーザーが選択したモデル。",
263
+ "title": "言語モデルのエイリアス"
264
+ }
265
+ },
238
266
  "prefs": {
239
267
  "title": "AI機能【アルファ"
240
268
  },
@@ -275,6 +303,8 @@
275
303
  "selectedVariantLabel": "厳選された",
276
304
  "selectedVariantTitle": "選択されたバリアント",
277
305
  "usedByAgentTitle": "エージェントが使用:{0}",
306
+ "variantSetError": "選択された variant が存在せず、デフォルトも見つかりません。設定を確認してください。",
307
+ "variantSetWarning": "選択された variant は存在しません。代わりにデフォルトの variant が使われています。",
278
308
  "variantsOfSystemPrompt": "このプロンプトのバリアントセット:"
279
309
  },
280
310
  "promptTemplates": {
@@ -374,6 +404,9 @@
374
404
  },
375
405
  "ide": {
376
406
  "agent-description": "AI Configuration View]({0})で、AIエージェントの有効化、LLMの選択、プロンプトテンプレートのカスタマイズ、カスタムエージェントの作成などの設定を行います。",
407
+ "enableAI": {
408
+ "mdDescription": "この設定により、最新のAI機能(ベータ版)にアクセスできます。 \n これらの機能はベータ版であるため、変更が加えられ、さらに改良される可能性があることにご注意ください。これらの機能は、アクセスを提供する言語モデル(LLM)に継続的なリクエストを生成する可能性があることを認識することが重要です。このため、綿密に監視する必要があるコストが発生する可能性があります。このオプションを有効にすることで、これらのリスクを認識することになります。 \n **ご注意ください!このセクションの以下の設定は、メイン機能の設定が有効になって初めて有効になります。\n このセクションの以下の設定は、メイン機能の設定が有効になって初めて有効になります。この機能を有効にした後、少なくとも1つのLLMプロバイダを以下に設定する必要があります。また、[ドキュメント](https://theia-ide.org/docs/user_ai/)**も参照してください。"
409
+ },
377
410
  "model-selection-description": "AI Configuration View]({0})で、各AIエージェントが使用するLarge Language Models (LLM) を選択します。",
378
411
  "prompt-template-description": "AI Configuration View]({0})で、AIエージェントのプロンプトバリアントを選択し、プロンプトテンプレートをカスタマイズする。"
379
412
  },
@@ -429,6 +462,10 @@
429
462
  "mdDescription": "APIキーなど、サーバーに設定するオプションの環境変数。",
430
463
  "title": "環境変数"
431
464
  },
465
+ "headers": {
466
+ "mdDescription": "サーバーへの各リクエストに含まれるオプションの追加ヘッダー。",
467
+ "title": "ヘッダー"
468
+ },
432
469
  "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
470
  "serverAuthToken": {
434
471
  "mdDescription": "必要であれば、サーバーの認証トークン。これはリモートサーバとの認証に使用されます。",
@@ -467,6 +504,7 @@
467
504
  "disconnectServer": "切断",
468
505
  "enabled": "有効",
469
506
  "environmentVariables": "環境変数: ",
507
+ "headers": "ヘッダー ",
470
508
  "noServers": "MCPサーバーが設定されていない",
471
509
  "serverAuthToken": "認証トークン: ",
472
510
  "serverAuthTokenHeader": "認証ヘッダー名: ",
@@ -655,6 +693,9 @@
655
693
  }
656
694
  }
657
695
  },
696
+ "ai-chat": {
697
+ "fileChangeSetTitle": "変更案"
698
+ },
658
699
  "ai-chat-ui": {
659
700
  "open-settings-tooltip": "AIの設定を開く..."
660
701
  },
@@ -906,6 +947,10 @@
906
947
  "editorDecorationsEnabled": "エディタにgitデコレーションを表示します。",
907
948
  "fetchPickRemote": "フェッチするリモートを選びます。",
908
949
  "gitDecorationsColors": "ナビゲーターに色の装飾を施す。",
950
+ "mergeEditor": {
951
+ "currentSideTitle": "現在",
952
+ "incomingSideTitle": "着信"
953
+ },
909
954
  "mergeQuickPickPlaceholder": "現在アクティブな{0}ブランチにマージするブランチを選びます。",
910
955
  "missingUserInfo": "gitで「user.name」と「user.email」を設定していることを確認してください。",
911
956
  "noHistoryForError": "の履歴はありません。{0}",
@@ -1135,6 +1180,7 @@
1135
1180
  "needsUser": "ユーザー名を入力してください。",
1136
1181
  "userPlaceHolder": "例:こんにちは"
1137
1182
  },
1183
+ "sshNoConfigPath": "SSH 設定パスが見つかりません。",
1138
1184
  "wsl": {
1139
1185
  "connectToWsl": "WSLに接続",
1140
1186
  "connectToWslUsingDistro": "Distroを使用してWSLに接続...",
@@ -1156,6 +1202,10 @@
1156
1202
  "close": "クローズチェンジ・ピーキング・ビュー"
1157
1203
  },
1158
1204
  "history": "歴史",
1205
+ "mergeEditor": {
1206
+ "resetConfirmationMessage": "この行為は取り消すことができない。",
1207
+ "resetConfirmationTitle": "本当にこのエディターでマージ結果をリセットしたいのですか?"
1208
+ },
1159
1209
  "noRepositoryFound": "リポジトリが見つからない",
1160
1210
  "unamend": "くり返す",
1161
1211
  "unamendCommit": "未修正のコミット"
package/i18n/nls.json CHANGED
@@ -82,6 +82,7 @@
82
82
  },
83
83
  "chat-ui": {
84
84
  "addContextVariable": "Add context variable",
85
+ "agent": "Agent",
85
86
  "aiDisabled": "AI features are disabled",
86
87
  "applyAll": "Apply All",
87
88
  "applyAllTitle": "Apply all pending changes",
@@ -90,12 +91,13 @@
90
91
  "chat-view-tree-widget": {
91
92
  "ai": "AI",
92
93
  "aiConfigurationView": "AI Configuration View",
93
- "aiFeatureHeader": "🚀 AI Features Available (Alpha Version)!",
94
+ "aiFeatureHeader": "🚀 AI Features Available (Beta Version)!",
94
95
  "aiFeaturesEnable": "Ai-features: Enable",
95
96
  "aiHistoryView": "AI History View",
96
97
  "featuresDisabled": "Currently, all AI Features are disabled!",
97
98
  "howToEnable": "How to Enable the AI Features:",
98
99
  "noRenderer": "Error: No renderer found",
100
+ "scrollToBottom": "Jump to latest message",
99
101
  "settingsMenu": "the settings menu",
100
102
  "waitingForInput": "Waiting for input",
101
103
  "you": "You"
@@ -104,6 +106,22 @@
104
106
  "generatedCode": "Generated Code"
105
107
  },
106
108
  "copyCodeBlock": "Copy Code Block",
109
+ "delegation-response-renderer": {
110
+ "prompt": {
111
+ "label": "Delegated prompt:"
112
+ },
113
+ "response": {
114
+ "label": "Response:"
115
+ },
116
+ "starting": "Starting delegation...",
117
+ "status": {
118
+ "canceled": "canceled",
119
+ "completed": "completed",
120
+ "error": "error",
121
+ "generating": "generating...",
122
+ "starting": "starting..."
123
+ }
124
+ },
107
125
  "deleteChangeSet": "Delete Change Set",
108
126
  "editRequest": "Edit",
109
127
  "enterChatName": "Enter chat name",
@@ -118,7 +136,6 @@
118
136
  "openDiff": "Open Diff",
119
137
  "openOriginalFile": "Open Original File",
120
138
  "performThisTask": "Perform this task.",
121
- "pinAgent": "Pin Agent",
122
139
  "removeChat": "Remove Chat",
123
140
  "renameChat": "Rename Chat",
124
141
  "selectChat": "Select chat",
@@ -199,7 +216,7 @@
199
216
  "undeclared": "Undeclared"
200
217
  },
201
218
  "aiConfiguration": {
202
- "label": "AI Configuration [Alpha]"
219
+ "label": "AI Configuration [Beta]"
203
220
  },
204
221
  "changeSetSummaryVariable": {
205
222
  "description": "Provides a summary of the files in a change set and their contents."
@@ -214,29 +231,40 @@
214
231
  "discardCustomPrompt": {
215
232
  "tooltip": "Discard Customizations"
216
233
  },
217
- "enableAI": {
218
- "mdDescription": "❗ This setting allows you to access the latest AI capabilities (Alpha version). \n Please note that these features are in an alpha phase, which means they may undergo changes and will be further improved. It is important to be aware that these features may generate continuous requests to the language models (LLMs) you provide access to. This might incur costs that you need to monitor closely. By enabling this option, you acknowledge these risks. \n **Please note! The settings below in this section will only take effect\n once the main feature setting is enabled. After enabling the feature, you need to configure at least one LLM provider below. Also see [the documentation](https://theia-ide.org/docs/user_ai/)**."
219
- },
220
234
  "languageModelRenderer": {
221
- "family": "Family",
222
235
  "languageModel": "Language Model",
223
- "maxOutputTokens": "Max Output Tokens",
224
- "minInputTokens": "Min Input Tokens",
225
- "purpose": "Purpose",
226
- "vendor": "Vendor"
236
+ "purpose": "Purpose"
227
237
  },
228
238
  "maxRetries": {
229
239
  "mdDescription": "The maximum number of retry attempts when a request to an AI provider fails. A value of 0 means no retries.",
230
240
  "title": "Maximum Retries"
231
241
  },
242
+ "modelAliasesConfiguration": {
243
+ "agents": "Agents using this Alias",
244
+ "defaultList": "[Default list]",
245
+ "evaluatesTo": "Evaluates to",
246
+ "label": "Model Aliases",
247
+ "noAgents": "No agents use this alias.",
248
+ "noResolvedModel": "No model ready for this alias.",
249
+ "selectAlias": "Please select a Model Alias.",
250
+ "selectedModelId": "Selected Model",
251
+ "unavailableModel": "Selected model is no longer available"
252
+ },
232
253
  "openEditorsShortVariable": {
233
254
  "description": "Short reference to all currently open files (relative paths, comma-separated)"
234
255
  },
235
256
  "openEditorsVariable": {
236
257
  "description": "A comma-separated list of all currently open files, relative to the workspace root."
237
258
  },
259
+ "preference": {
260
+ "languageModelAliases": {
261
+ "description": "Configure models for each language model alias in the [AI Configuration View]({0}). Alternatiely you can set the settings manually in the settings.json: \n```\n\"default/code\": {\n \"selectedModel\": \"anthropic/claude-opus-4-20250514\"\n}\n```",
262
+ "selectedModel": "The user-selected model for this alias.",
263
+ "title": "Language Model Aliases"
264
+ }
265
+ },
238
266
  "prefs": {
239
- "title": "✨ AI Features [Alpha]"
267
+ "title": "✨ AI Features [Beta]"
240
268
  },
241
269
  "promptFragmentsConfiguration": {
242
270
  "activeCustomizationLabel": "Active",
@@ -275,6 +303,8 @@
275
303
  "selectedVariantLabel": "Selected",
276
304
  "selectedVariantTitle": "Selected variant",
277
305
  "usedByAgentTitle": "Used by agent: {0}",
306
+ "variantSetError": "The selected variant does not exist and no default could be found. Please check your configuration.",
307
+ "variantSetWarning": "The selected variant does not exist. The default variant is being used instead.",
278
308
  "variantsOfSystemPrompt": "Variants of this prompt variant set:"
279
309
  },
280
310
  "promptTemplates": {
@@ -358,7 +388,7 @@
358
388
  "tooltip": "Interpret newlines"
359
389
  },
360
390
  "view": {
361
- "label": "AI Agent History [Alpha]",
391
+ "label": "AI Agent History [Beta]",
362
392
  "noAgent": "No agent available.",
363
393
  "noAgentSelected": "No agent selected.",
364
394
  "noHistoryForAgent": "No history available for the selected agent '{0}'"
@@ -374,6 +404,9 @@
374
404
  },
375
405
  "ide": {
376
406
  "agent-description": "Configure AI agent settings including enablement, LLM selection, prompt template customization, and custom agent creation in the [AI Configuration View]({0}).",
407
+ "enableAI": {
408
+ "mdDescription": "❗ This setting allows you to access the latest AI capabilities (Beta version). \n Please note that these features are in a beta phase, which means they may undergo changes and will be further improved. It is important to be aware that these features may generate continuous requests to the language models (LLMs) you provide access to. This might incur costs that you need to monitor closely. By enabling this option, you acknowledge these risks. \n **Please note! The settings below in this section will only take effect\n once the main feature setting is enabled. After enabling the feature, you need to configure at least one LLM provider below. Also see [the documentation](https://theia-ide.org/docs/user_ai/)**."
409
+ },
377
410
  "model-selection-description": "Choose which Large Language Models (LLMs) are used by each AI agent in the [AI Configuration View]({0}).",
378
411
  "prompt-template-description": "Select prompt variants and customize prompt templates for AI agents in the [AI Configuration View]({0})."
379
412
  },
@@ -429,6 +462,10 @@
429
462
  "mdDescription": "Optional environment variables to set for the server, such as an API key.",
430
463
  "title": "Environment variables"
431
464
  },
465
+ "headers": {
466
+ "mdDescription": "Optional additional headers included with each request to the server.",
467
+ "title": "Headers"
468
+ },
432
469
  "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
470
  "serverAuthToken": {
434
471
  "mdDescription": "The authentication token for the server, if required. This is used to authenticate with the remote server.",
@@ -467,6 +504,7 @@
467
504
  "disconnectServer": "Disconnnect",
468
505
  "enabled": "Enabled",
469
506
  "environmentVariables": "Environment Variables: ",
507
+ "headers": "Headers: ",
470
508
  "noServers": "No MCP servers configured",
471
509
  "serverAuthToken": "Authentication Token: ",
472
510
  "serverAuthTokenHeader": "Authentication Header Name: ",
@@ -655,6 +693,9 @@
655
693
  }
656
694
  }
657
695
  },
696
+ "ai-chat": {
697
+ "fileChangeSetTitle": "Changes proposed"
698
+ },
658
699
  "ai-chat-ui": {
659
700
  "open-settings-tooltip": "Open AI settings..."
660
701
  },
@@ -906,6 +947,10 @@
906
947
  "editorDecorationsEnabled": "Show git decorations in the editor.",
907
948
  "fetchPickRemote": "Pick a remote to fetch from:",
908
949
  "gitDecorationsColors": "Use color decoration in the navigator.",
950
+ "mergeEditor": {
951
+ "currentSideTitle": "Current",
952
+ "incomingSideTitle": "Incoming"
953
+ },
909
954
  "mergeQuickPickPlaceholder": "Pick a branch to merge into the currently active {0} branch:",
910
955
  "missingUserInfo": "Make sure you configure your 'user.name' and 'user.email' in git.",
911
956
  "noHistoryForError": "There is no history available for {0}",
@@ -1135,6 +1180,7 @@
1135
1180
  "needsUser": "Please enter a user name.",
1136
1181
  "userPlaceHolder": "E.g. hello"
1137
1182
  },
1183
+ "sshNoConfigPath": "No SSH config path found.",
1138
1184
  "wsl": {
1139
1185
  "connectToWsl": "Connect to WSL",
1140
1186
  "connectToWslUsingDistro": "Connect to WSL using Distro...",
@@ -1156,6 +1202,10 @@
1156
1202
  "close": "Close Change Peek View"
1157
1203
  },
1158
1204
  "history": "History",
1205
+ "mergeEditor": {
1206
+ "resetConfirmationMessage": "This action cannot be undone.",
1207
+ "resetConfirmationTitle": "Do you really want to reset the merge result in this editor?"
1208
+ },
1159
1209
  "noRepositoryFound": "No repository found",
1160
1210
  "unamend": "Unamend",
1161
1211
  "unamendCommit": "Unamend commit"
package/i18n/nls.ko.json CHANGED
@@ -82,6 +82,7 @@
82
82
  },
83
83
  "chat-ui": {
84
84
  "addContextVariable": "컨텍스트 변수 추가",
85
+ "agent": "에이전트",
85
86
  "aiDisabled": "AI 기능이 비활성화됨",
86
87
  "applyAll": "모두 적용",
87
88
  "applyAllTitle": "보류 중인 모든 변경 사항 적용",
@@ -96,6 +97,7 @@
96
97
  "featuresDisabled": "현재 모든 AI 기능이 비활성화되어 있습니다!",
97
98
  "howToEnable": "AI 기능을 활성화하는 방법:",
98
99
  "noRenderer": "오류가 발생했습니다: 렌더러를 찾을 수 없습니다.",
100
+ "scrollToBottom": "최신 메시지로 이동",
99
101
  "settingsMenu": "설정 메뉴",
100
102
  "waitingForInput": "입력 대기 중",
101
103
  "you": "당신"
@@ -104,6 +106,22 @@
104
106
  "generatedCode": "생성된 코드"
105
107
  },
106
108
  "copyCodeBlock": "코드 블록 복사",
109
+ "delegation-response-renderer": {
110
+ "prompt": {
111
+ "label": "위임 프롬프트:"
112
+ },
113
+ "response": {
114
+ "label": "응답:"
115
+ },
116
+ "starting": "위임 시작...",
117
+ "status": {
118
+ "canceled": "취소됨",
119
+ "completed": "완료",
120
+ "error": "오류",
121
+ "generating": "생성...",
122
+ "starting": "시작..."
123
+ }
124
+ },
107
125
  "deleteChangeSet": "변경 집합 삭제",
108
126
  "editRequest": "편집",
109
127
  "enterChatName": "채팅 이름 입력",
@@ -118,7 +136,6 @@
118
136
  "openDiff": "Diff 열기",
119
137
  "openOriginalFile": "원본 파일 열기",
120
138
  "performThisTask": "이 작업을 수행합니다.",
121
- "pinAgent": "핀 에이전트",
122
139
  "removeChat": "채팅 제거",
123
140
  "renameChat": "채팅 이름 바꾸기",
124
141
  "selectChat": "채팅 선택",
@@ -214,27 +231,38 @@
214
231
  "discardCustomPrompt": {
215
232
  "tooltip": "사용자 지정 삭제"
216
233
  },
217
- "enableAI": {
218
- "mdDescription": "이 설정을 사용하면 최신 AI 기능(알파 버전)에 액세스할 수 있습니다. \n 이러한 기능은 알파 단계에 있으므로 변경될 수 있으며 추후 개선될 수 있다는 점에 유의하세요. 이러한 기능을 사용하면 액세스 권한을 제공하는 언어 모델(LLM)에 지속적인 요청이 발생할 수 있다는 점에 유의해야 합니다. 이로 인해 비용이 발생할 수 있으므로 면밀히 모니터링해야 합니다. 이 옵션을 사용 설정하면 이러한 위험을 인정하는 것입니다. \n **참고! 이 섹션의 아래 설정은 주요 기능 설정이 활성화된 경우에만\n 기본 기능 설정이 활성화된 경우에만 적용됩니다. 기능을 활성화한 후에는 아래에서 하나 이상의 LLM 제공업체를 구성해야 합니다. 또한 [문서](https://theia-ide.org/docs/user_ai/)**를 참조하세요."
219
- },
220
234
  "languageModelRenderer": {
221
- "family": "가족",
222
235
  "languageModel": "언어 모델",
223
- "maxOutputTokens": "최대 출력 토큰",
224
- "minInputTokens": "최소 입력 토큰",
225
- "purpose": "목적",
226
- "vendor": "공급업체"
236
+ "purpose": "목적"
227
237
  },
228
238
  "maxRetries": {
229
239
  "mdDescription": "AI 제공업체에 대한 요청이 실패했을 때 재시도할 수 있는 최대 횟수입니다. 값이 0이면 재시도가 없습니다.",
230
240
  "title": "최대 재시도 횟수"
231
241
  },
242
+ "modelAliasesConfiguration": {
243
+ "agents": "이 별칭을 사용하는 상담원",
244
+ "defaultList": "[기본 목록]",
245
+ "evaluatesTo": "다음을 평가합니다.",
246
+ "label": "모델 별칭",
247
+ "noAgents": "이 별칭을 사용하는 상담원은 없습니다.",
248
+ "noResolvedModel": "이 별칭에 대해 준비된 모델이 없습니다.",
249
+ "selectAlias": "모델 별칭을 선택하세요.",
250
+ "selectedModelId": "선택한 모델",
251
+ "unavailableModel": "선택한 모델을 더 이상 사용할 수 없습니다."
252
+ },
232
253
  "openEditorsShortVariable": {
233
254
  "description": "현재 열려 있는 모든 파일에 대한 짧은 참조(상대 경로, 쉼표로 구분)"
234
255
  },
235
256
  "openEditorsVariable": {
236
257
  "description": "현재 열려 있는 모든 파일의 쉼표로 구분된 목록으로, 작업 공간 루트를 기준으로 합니다."
237
258
  },
259
+ "preference": {
260
+ "languageModelAliases": {
261
+ "description": "AI 구성 보기]({0})에서 각 언어 모델 별칭에 대한 모델을 구성합니다. 또는 settings.json에서 수동으로 설정을 설정할 수 있습니다: \n```\n\"기본/코드\": {\n \"selectedModel\": \"anthropic/claude-opus-4-20250514\"\n}\n```",
262
+ "selectedModel": "이 별칭에 대해 사용자가 선택한 모델입니다.",
263
+ "title": "언어 모델 별칭"
264
+ }
265
+ },
238
266
  "prefs": {
239
267
  "title": "✨ AI 기능 [알파]"
240
268
  },
@@ -275,6 +303,8 @@
275
303
  "selectedVariantLabel": "선택됨",
276
304
  "selectedVariantTitle": "선택한 변형",
277
305
  "usedByAgentTitle": "상담원이 사용합니다: {0}",
306
+ "variantSetError": "선택한 변형이 존재하지 않으며 기본값을 찾을 수 없습니다. 구성을 확인해 보세요.",
307
+ "variantSetWarning": "선택한 이형 상품이 존재하지 않습니다. 기본 이형 상품이 대신 사용되고 있습니다.",
278
308
  "variantsOfSystemPrompt": "이 프롬프트 변형 세트의 변형입니다:"
279
309
  },
280
310
  "promptTemplates": {
@@ -374,6 +404,9 @@
374
404
  },
375
405
  "ide": {
376
406
  "agent-description": "AI 구성 보기]({0})에서 사용 설정, LLM 선택, 프롬프트 템플릿 사용자 지정, 사용자 지정 상담원 만들기 등 AI 상담원 설정을 구성합니다.",
407
+ "enableAI": {
408
+ "mdDescription": "이 설정을 사용하면 최신 AI 기능(베타 버전)에 액세스할 수 있습니다. \n 이러한 기능은 베타 단계에 있으므로 변경될 수 있으며 추후 개선될 수 있다는 점에 유의하세요. 이러한 기능을 사용하면 액세스 권한을 제공하는 언어 모델(LLM)에 지속적인 요청이 발생할 수 있다는 점에 유의해야 합니다. 이로 인해 비용이 발생할 수 있으므로 면밀히 모니터링해야 합니다. 이 옵션을 사용 설정하면 이러한 위험을 인정하는 것입니다. \n **참고! 이 섹션의 아래 설정은 주요 기능 설정이 활성화된 경우에만\n 기본 기능 설정이 활성화된 경우에만 적용됩니다. 기능을 활성화한 후에는 아래에서 하나 이상의 LLM 제공업체를 구성해야 합니다. 또한 [문서](https://theia-ide.org/docs/user_ai/)**를 참조하세요."
409
+ },
377
410
  "model-selection-description": "AI 구성 보기]({0})에서 각 AI 에이전트가 사용할 LLM(대규모 언어 모델)을 선택합니다.",
378
411
  "prompt-template-description": "AI 구성 보기]({0})에서 프롬프트 변형을 선택하고 AI 상담원을 위한 프롬프트 템플릿을 사용자 지정합니다."
379
412
  },
@@ -429,6 +462,10 @@
429
462
  "mdDescription": "API 키와 같이 서버에 설정할 환경 변수(선택 사항)입니다.",
430
463
  "title": "환경 변수"
431
464
  },
465
+ "headers": {
466
+ "mdDescription": "서버에 대한 각 요청에 포함되는 추가 헤더(선택 사항)입니다.",
467
+ "title": "헤더"
468
+ },
432
469
  "mdDescription": "명령어, 인수, 선택적 환경 변수, 자동 시작(기본값은 true)을 사용하여 MCP 서버를 구성합니다. 각 서버는 \"brave-search\" 또는 \"filesystem\"과 같은 고유 키로 식별됩니다. 서버를 시작하려면 원하는 서버를 선택할 수 있는 \"MCP: MCP 서버 시작\" 명령을 사용합니다. 서버를 중지하려면 \"MCP: MCP 서버 중지\" 명령을 사용합니다. 자동 시작은 재시작 후에만 적용되므로 서버를 처음 시작할 때는 수동으로 시작해야 합니다.\n구성 예시\n```{\n \"brave-search\": {\n \"command\": \"npx\",\n \"args\": [\n \"-y\",\n \"@모델컨텍스트프로토콜/서버-브레이브-검색\"\n ],\n \"env\": {\n \"brave_api_key\": \"YOUR_API_KEY\"\n },\n },\n \"파일 시스템\": {\n \"command\": \"npx\",\n \"args\": [\"-y\", \"@modelcontextprotocol/server-filesystem\", \"/사용자/사용자명/데스크톱\"],\n \"env\": {\n \"custom_env_var\": \"custom-value\"\n },\n \"autostart\": false\n }\n}\n```",
433
470
  "serverAuthToken": {
434
471
  "mdDescription": "필요한 경우 서버의 인증 토큰입니다. 원격 서버를 인증하는 데 사용됩니다.",
@@ -467,6 +504,7 @@
467
504
  "disconnectServer": "연결 해제",
468
505
  "enabled": "활성화됨",
469
506
  "environmentVariables": "환경 변수: ",
507
+ "headers": "헤더: ",
470
508
  "noServers": "구성된 MCP 서버 없음",
471
509
  "serverAuthToken": "인증 토큰: ",
472
510
  "serverAuthTokenHeader": "인증 헤더 이름: ",
@@ -655,6 +693,9 @@
655
693
  }
656
694
  }
657
695
  },
696
+ "ai-chat": {
697
+ "fileChangeSetTitle": "제안된 변경 사항"
698
+ },
658
699
  "ai-chat-ui": {
659
700
  "open-settings-tooltip": "AI 설정 열기..."
660
701
  },
@@ -906,6 +947,10 @@
906
947
  "editorDecorationsEnabled": "에디터에서 git 장식을 표시합니다.",
907
948
  "fetchPickRemote": "가져올 리모컨을 선택합니다:",
908
949
  "gitDecorationsColors": "내비게이터에서 색상 장식을 사용합니다.",
950
+ "mergeEditor": {
951
+ "currentSideTitle": "현재",
952
+ "incomingSideTitle": "수신"
953
+ },
909
954
  "mergeQuickPickPlaceholder": "현재 활성 상태인 {0} 브랜치에 병합할 브랜치를 선택합니다:",
910
955
  "missingUserInfo": "git에서 'user.name'과 'user.email'을 구성했는지 확인하세요.",
911
956
  "noHistoryForError": "다음에 사용할 수 있는 기록이 없습니다. {0}",
@@ -1135,6 +1180,7 @@
1135
1180
  "needsUser": "사용자 이름을 입력하세요.",
1136
1181
  "userPlaceHolder": "예: 안녕하세요"
1137
1182
  },
1183
+ "sshNoConfigPath": "SSH 구성 경로를 찾을 수 없습니다.",
1138
1184
  "wsl": {
1139
1185
  "connectToWsl": "WSL에 연결",
1140
1186
  "connectToWslUsingDistro": "배포판을 사용하여 WSL에 연결...",
@@ -1156,6 +1202,10 @@
1156
1202
  "close": "변경 사항 미리 보기 닫기"
1157
1203
  },
1158
1204
  "history": "역사",
1205
+ "mergeEditor": {
1206
+ "resetConfirmationMessage": "이 작업은 되돌릴 수 없습니다.",
1207
+ "resetConfirmationTitle": "이 편집기에서 병합 결과를 정말로 초기화하시겠습니까?"
1208
+ },
1159
1209
  "noRepositoryFound": "리포지토리를 찾을 수 없습니다.",
1160
1210
  "unamend": "수정 취소",
1161
1211
  "unamendCommit": "커밋 수정 취소"