diff --git a/src/commands/createContainerApp/ContainerAppCreateStep.ts b/src/commands/createContainerApp/ContainerAppCreateStep.ts index eaea62d8d..070fd8f54 100644 --- a/src/commands/createContainerApp/ContainerAppCreateStep.ts +++ b/src/commands/createContainerApp/ContainerAppCreateStep.ts @@ -19,7 +19,7 @@ import { type ContainerAppCreateContext } from "./ContainerAppCreateContext"; export class ContainerAppCreateStep extends AzureWizardExecuteStepWithActivityOutput { public priority: number = 620; public stepName: string = 'containerAppCreateStep'; - protected getOutputLogSuccess = (context: T) => localize('createContainerAppSuccess', 'Created container app "{0}"', context.newContainerAppName); + protected getOutputLogSuccess = (context: T) => localize('createContainerAppSuccess', 'Created container app "{0}".', context.newContainerAppName); protected getOutputLogFail = (context: T) => localize('createContainerAppFail', 'Failed to create container app "{0}"', context.newContainerAppName); protected getTreeItemLabel = (context: T) => localize('createContainerAppLabel', 'Create container app "{0}"', context.newContainerAppName); diff --git a/src/commands/scaling/scaleRule/addScaleRule/AddScaleRuleStep.ts b/src/commands/scaling/scaleRule/addScaleRule/AddScaleRuleStep.ts index fbd57ff05..8db900cb5 100644 --- a/src/commands/scaling/scaleRule/addScaleRule/AddScaleRuleStep.ts +++ b/src/commands/scaling/scaleRule/addScaleRule/AddScaleRuleStep.ts @@ -29,7 +29,7 @@ export class AddScaleRuleStep extends RevisionDr await this.updateRevisionDraftWithTemplate(context); const resourceName = getParentResourceFromItem(this.baseItem).name; - ext.outputChannel.appendLog(localize('addedScaleRule', 'Added {0} rule "{1}" to "{2}" (draft)', context.newRuleType, context.newRuleName, resourceName)); + ext.outputChannel.appendLog(localize('addedScaleRule', 'Added {0} rule "{1}" to "{2}" (draft).', context.newRuleType, context.newRuleName, resourceName)); } public shouldExecute(context: T): boolean { diff --git a/src/commands/scaling/scaleRule/deleteScaleRule/DeleteScaleRuleStep.ts b/src/commands/scaling/scaleRule/deleteScaleRule/DeleteScaleRuleStep.ts index f89f58111..4d9016b73 100644 --- a/src/commands/scaling/scaleRule/deleteScaleRule/DeleteScaleRuleStep.ts +++ b/src/commands/scaling/scaleRule/deleteScaleRule/DeleteScaleRuleStep.ts @@ -28,7 +28,7 @@ export class DeleteScaleRuleStep extends RevisionDra await this.updateRevisionDraftWithTemplate(context); const resourceName = getParentResourceFromItem(this.baseItem).name; - ext.outputChannel.appendLog(localize('deletedScaleRule', 'Deleted rule "{0}" from "{1}" (draft)', context.scaleRule?.name, resourceName)); + ext.outputChannel.appendLog(localize('deletedScaleRule', 'Deleted rule "{0}" from "{1}" (draft).', context.scaleRule?.name, resourceName)); } public shouldExecute(context: T): boolean {