From f47f5e4a0dd477aaeece4b7780b8c2a252feda81 Mon Sep 17 00:00:00 2001 From: ktmage Date: Sun, 1 Mar 2026 23:29:41 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=82=BF=E3=83=BC=E3=83=9F=E3=83=8A?= =?UTF-8?q?=E3=83=AB=E3=83=9C=E3=82=BF=E3=83=B3=E3=81=AE=E3=83=84=E3=83=BC?= =?UTF-8?q?=E3=83=AB=E3=83=81=E3=83=83=E3=83=97=E3=83=86=E3=82=AD=E3=82=B9?= =?UTF-8?q?=E3=83=88=E3=82=92=E6=94=B9=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - en: "Open in terminal" → "Open session in terminal" - ja: "ターミナルで開く" → "セッションをターミナルで開く" closes #43 --- webview/__tests__/scenarios/09-settings.test.tsx | 2 +- webview/locales/en.ts | 2 +- webview/locales/ja.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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": "設定",