Skip to content

Commit cc5912c

Browse files
committed
Fix i18n
1 parent 3820db6 commit cc5912c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/activate/handleTask.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ export const handleNewTask = async (params: { prompt?: string } | null | undefin
77
let prompt = params?.prompt
88
if (!prompt) {
99
prompt = await vscode.window.showInputBox({
10-
prompt: t("input.task_prompt"),
11-
placeHolder: t("input.task_placeholder"),
10+
prompt: t("common:input.task_prompt"),
11+
placeHolder: t("common:input.task_placeholder"),
1212
})
1313
}
1414
if (!prompt) {

0 commit comments

Comments
 (0)