diff --git a/webview/__tests__/scenarios/09-settings.test.tsx b/webview/__tests__/scenarios/09-settings.test.tsx index 2f3b5b4..bdd0ef3 100644 --- a/webview/__tests__/scenarios/09-settings.test.tsx +++ b/webview/__tests__/scenarios/09-settings.test.tsx @@ -89,7 +89,7 @@ describe("設定", () => { await setupForSettings(); const user = userEvent.setup(); - await user.click(screen.getByTitle("Open in terminal")); + await user.click(screen.getByTitle("Open session in terminal")); expect(postMessage).toHaveBeenCalledWith({ type: "openTerminal" }); }); diff --git a/webview/locales/en.ts b/webview/locales/en.ts index 7ef4800..304f539 100644 --- a/webview/locales/en.ts +++ b/webview/locales/en.ts @@ -16,7 +16,7 @@ export const en = { "input.remove": "Remove", "input.placeholder": "Ask OpenCode... (type # to attach files)", "input.addFile": (name: string) => `Add ${name}`, - "input.openTerminal": "Open in terminal", + "input.openTerminal": "Open session in terminal", "input.shellMode": "Shell mode", "input.placeholder.shell": "Enter shell command...", "input.settings": "Settings", diff --git a/webview/locales/ja.ts b/webview/locales/ja.ts index d23d1f3..84c7ec0 100644 --- a/webview/locales/ja.ts +++ b/webview/locales/ja.ts @@ -18,7 +18,7 @@ export const ja: typeof en = { "input.remove": "削除", "input.placeholder": "OpenCode に質問... (# でファイルを添付)", "input.addFile": (name: string) => `${name} を追加`, - "input.openTerminal": "ターミナルで開く", + "input.openTerminal": "セッションをターミナルで開く", "input.shellMode": "シェルモード", "input.placeholder.shell": "シェルコマンドを入力...", "input.settings": "設定",