diff --git a/azure/src/wizard/StorageAccountCreateStep.ts b/azure/src/wizard/StorageAccountCreateStep.ts index 70cd21dc3c..e651fa735e 100644 --- a/azure/src/wizard/StorageAccountCreateStep.ts +++ b/azure/src/wizard/StorageAccountCreateStep.ts @@ -46,17 +46,17 @@ export class StorageAccountCreateStep`${this._defaults.performance}_${this._defaults.replication}`; - return l10n.t('Create storage account "{0}" with sku "{1}"...', newName, newSkuName); + return l10n.t('Create storage account "{0}" with sku "{1}"', newName, newSkuName); } protected getOutputLogSuccess(context: T): string { const newName: string = nonNullProp(context, 'newStorageAccountName'); const newSkuName: SkuName = `${this._defaults.performance}_${this._defaults.replication}`; - return l10n.t('Successfully created storage account "{0}" with sku "{1}"...', newName, newSkuName); + return l10n.t('Successfully created storage account "{0}" with sku "{1}".', newName, newSkuName); } protected getOutputLogFail(context: T): string { const newName: string = nonNullProp(context, 'newStorageAccountName'); const newSkuName: SkuName = `${this._defaults.performance}_${this._defaults.replication}`; - return l10n.t('Failed to create storage account "{0}" with sku "{1}"...', newName, newSkuName); + return l10n.t('Failed to create storage account "{0}" with sku "{1}".', newName, newSkuName); } protected getOutputLogProgress(context: T): string {