Skip to content

Commit e7103ec

Browse files
Apply suggestions from code review
Co-authored-by: Courtney Webster <60238438+cwebster-99@users.noreply.github.com>
1 parent eff2094 commit e7103ec

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/features/creators/newPackageProject.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,12 @@ export class NewPackageProject implements PythonProjectCreator {
142142
} else {
143143
const action = await window.showErrorMessage(
144144
l10n.t(
145-
'Could not automatically create a virtual environment for the new package "{0}" because your default environment manager does not support this operation and no alternative was available.',
145+
'A virtual environment could not be created for the new package "{0}" because your default environment manager does not support this operation and no alternative was available.',
146146
packageName,
147147
),
148-
l10n.t('Create Environment Manually'),
148+
l10n.t('Create custom environment'),
149149
);
150-
if (action === l10n.t('Create Environment Manually')) {
150+
if (action === l10n.t('Create custom environment')) {
151151
await commands.executeCommand('python-envs.createAny', {
152152
uri: createdPackage.uri,
153153
selectEnvironment: true,

0 commit comments

Comments
 (0)