Skip to content

Commit ac5acce

Browse files
committed
fix: address comments
1 parent 20a964a commit ac5acce

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/common/localize.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ export namespace VenvManagerStrings {
9090
export const installEditable = l10n.t('Install project as editable');
9191
export const searchingDependencies = l10n.t('Searching for dependencies');
9292

93-
export const selectQuickOrCustomize = l10n.t('Select Quick Create or Customize');
93+
export const selectQuickOrCustomize = l10n.t('Select environment creation mode');
9494
export const quickCreate = l10n.t('Quick Create');
9595
export const quickCreateDescription = l10n.t('Create a virtual environment in the workspace root');
96-
export const customize = l10n.t('Customize');
97-
export const customizeDescription = l10n.t('Select python version, location, packages, etc.');
96+
export const customize = l10n.t('Custom');
97+
export const customizeDescription = l10n.t('Choose python version, location, packages, name, etc.');
9898
}
9999

100100
export namespace SysManagerStrings {

src/managers/builtin/venvUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ async function createWithCustomization(version: string): Promise<boolean | undef
353353
{
354354
label: VenvManagerStrings.quickCreate,
355355
description: VenvManagerStrings.quickCreateDescription,
356-
detail: l10n.t('Will use Python version {0} and install workspace dependencies .', version),
356+
detail: l10n.t('Uses Python version {0} and installs workspace dependencies.', version),
357357
},
358358
{
359359
label: VenvManagerStrings.customize,

0 commit comments

Comments
 (0)