Skip to content

Commit 8af9b36

Browse files
committed
Feedback
1 parent 35cb047 commit 8af9b36

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/commands/deployImage/imageSource/EnvironmentVariablesListStep.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ export class EnvironmentVariablesListStep extends AzureWizardPromptStep<ImageSou
8585
context.activityChildren?.push(
8686
new GenericTreeItem(undefined, {
8787
contextValue: createActivityChildContext(['environmentVariablesListStep', setEnvironmentVariableOption, activitySuccessContext]),
88-
label: localize('saveEnvVarsLabel', 'Save environment variable configuration for the container app'),
88+
label: localize('saveEnvVarsLabel', 'Save environment variable configuration'),
8989
iconPath: activitySuccessIcon
9090
})
9191
);
9292

93-
ext.outputChannel.appendLog(localize('savedEnvVarsMessage', 'Saved environment variable configuration for the container app.'));
93+
ext.outputChannel.appendLog(localize('savedEnvVarsMessage', 'Saved environment variable configuration.'));
9494
}
9595
}
9696
}

src/commands/deployImage/imageSource/containerRegistry/acr/createAcr/RegistryCreateStep.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,21 @@ export class RegistryCreateStep extends ExecuteActivityOutputStepBase<CreateAcrC
4040
return {
4141
item: new GenericTreeItem(undefined, {
4242
contextValue: createActivityChildContext(['registryCreateStep', activitySuccessContext]),
43-
label: localize('createRegistryLabel', 'Create Azure Container Registry "{0}"', context.newRegistryName),
43+
label: localize('createRegistryLabel', 'Create container registry "{0}"', context.newRegistryName),
4444
iconPath: activitySuccessIcon
4545
}),
46-
output: localize('createRegistrySuccess', 'Created Azure Container Registry "{0}".', context.newRegistryName)
46+
output: localize('createRegistrySuccess', 'Created container registry "{0}".', context.newRegistryName)
4747
};
4848
}
4949

5050
protected initFailOutput(context: CreateAcrContext): ExecuteActivityOutput {
5151
return {
5252
item: new GenericTreeItem(undefined, {
5353
contextValue: createActivityChildContext(['registryCreateStep', activityFailContext]),
54-
label: localize('createRegistryLabel', 'Create Azure Container Registry "{0}"', context.newRegistryName),
54+
label: localize('createRegistryLabel', 'Create container registry "{0}"', context.newRegistryName),
5555
iconPath: activityFailIcon
5656
}),
57-
output: localize('createRegistryFail', 'Failed to create Azure Container Registry "{0}".', context.newRegistryName)
57+
output: localize('createRegistryFail', 'Failed to create container registry "{0}".', context.newRegistryName)
5858
};
5959
}
6060
}

src/commands/deployWorkspaceProject/DeployWorkspaceProjectSaveSettingsStep.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class DeployWorkspaceProjectSaveSettingsStep extends ExecuteActivityOutpu
4444
label: saveSettingsLabel,
4545
iconPath: activitySuccessIcon
4646
}),
47-
output: localize('savedSettingsSuccess', 'Saved deployment settings to workspace: "{0}".', relativeSettingsFilePath)
47+
output: localize('savedSettingsSuccess', 'Saved deployment settings to workspace "{0}".', relativeSettingsFilePath)
4848
};
4949
}
5050

@@ -55,7 +55,7 @@ export class DeployWorkspaceProjectSaveSettingsStep extends ExecuteActivityOutpu
5555
label: saveSettingsLabel,
5656
iconPath: activityFailIcon
5757
}),
58-
output: localize('savedSettingsFail', 'Failed to save deployment settings to workspace: "{0}".', relativeSettingsFilePath)
58+
output: localize('savedSettingsFail', 'Failed to save deployment settings to workspace "{0}".', relativeSettingsFilePath)
5959
};
6060
}
6161
}

src/commands/ingress/IngressPromptStep.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ export async function tryConfigureIngressUsingDockerfile(context: IngressContext
7373
new GenericTreeItem(undefined, {
7474
contextValue: createActivityChildContext(['ingressPromptStep', activitySuccessContext]),
7575
label: context.enableIngress ?
76-
localize('ingressEnableLabel', 'Enable ingress on port {0} (found Dockerfile configuration)', context.targetPort) :
77-
localize('ingressDisableLabel', 'Disable ingress (found Dockerfile configuration)'),
76+
localize('ingressEnableLabel', 'Enable ingress on port {0} (from Dockerfile configuration)', context.targetPort) :
77+
localize('ingressDisableLabel', 'Disable ingress (from Dockerfile configuration)'),
7878
iconPath: activitySuccessIcon
7979
})
8080
);

0 commit comments

Comments
 (0)