Skip to content

Commit 5eb8526

Browse files
committed
localization
1 parent e9bae74 commit 5eb8526

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/extension.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -449,9 +449,9 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
449449
try {
450450
// Prompt for issue title
451451
const title = await window.showInputBox({
452-
title: 'Report Issue - Title',
453-
prompt: 'Enter a brief title for the issue',
454-
placeHolder: 'e.g., Environment not detected, activation fails, etc.',
452+
title: l10n.t('Report Issue - Title'),
453+
prompt: l10n.t('Enter a brief title for the issue'),
454+
placeHolder: l10n.t('e.g., Environment not detected, activation fails, etc.'),
455455
ignoreFocusOut: true,
456456
});
457457

@@ -462,9 +462,9 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
462462

463463
// Prompt for issue description
464464
const description = await window.showInputBox({
465-
title: 'Report Issue - Description',
466-
prompt: 'Describe the issue in more detail',
467-
placeHolder: 'Provide additional context about what happened...',
465+
title: l10n.t('Report Issue - Description'),
466+
prompt: l10n.t('Describe the issue in more detail'),
467+
placeHolder: l10n.t('Provide additional context about what happened...'),
468468
ignoreFocusOut: true,
469469
});
470470

0 commit comments

Comments
 (0)