From 9cd0cfc88f20a10e8db1c7c7edb26243b161ad34 Mon Sep 17 00:00:00 2001 From: YuanNiancai Date: Fri, 23 Jan 2026 09:26:43 +0800 Subject: [PATCH] fix: add missing translation --- src/components/Shell.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Shell.jsx b/src/components/Shell.jsx index a549ba9..212ed9b 100644 --- a/src/components/Shell.jsx +++ b/src/components/Shell.jsx @@ -464,7 +464,7 @@ function Shell({ selectedProject, selectedSession, initialCommand, isPlainShell

{isPlainShell ? - t('shell.runCommand', { command: initialCommand || 'command', projectName: selectedProject.displayName }) : + t('shell.runCommand', { command: initialCommand || t('shell.defaultCommand'), projectName: selectedProject.displayName }) : selectedSession ? t('shell.resumeSession', { displayName: sessionDisplayNameLong }) : t('shell.startSession')