mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
fix typos (#20695)
This commit is contained in:
@@ -118,7 +118,9 @@ function generateHandleServerProviderEvent() {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Events.DOWNLOAD_END:
|
case Events.DOWNLOAD_END:
|
||||||
outputChannel.appendLine(localize('downloadServiceDoneChannelMsg', "Done installing {0}", Constants.serviceName));
|
// Start a new line to end the dots from the DOWNLOAD_PROGRESS event.
|
||||||
|
outputChannel.appendLine('');
|
||||||
|
outputChannel.appendLine(localize('downloadServiceDoneChannelMsg', "Downloaded {0}", Constants.serviceName));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
console.error(`Unknown event from Server Provider ${e}`);
|
console.error(`Unknown event from Server Provider ${e}`);
|
||||||
|
|||||||
@@ -116,7 +116,9 @@ function generateHandleServerProviderEvent() {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Events.DOWNLOAD_END:
|
case Events.DOWNLOAD_END:
|
||||||
outputChannel.appendLine(localize('downloadServiceDoneChannelMsg', "Done installing {0}", Constants.serviceName));
|
// Start a new line to end the dots from the DOWNLOAD_PROGRESS event.
|
||||||
|
outputChannel.appendLine('');
|
||||||
|
outputChannel.appendLine(localize('downloadServiceDoneChannelMsg', "Downloaded {0}", Constants.serviceName));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
console.error(`Unknown event from Server Provider ${e}`);
|
console.error(`Unknown event from Server Provider ${e}`);
|
||||||
|
|||||||
@@ -138,7 +138,9 @@ function handleServerProviderEvent(e: string, ...args: any[]): void {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Events.DOWNLOAD_END:
|
case Events.DOWNLOAD_END:
|
||||||
outputChannel.appendLine(localize('downloadServiceDoneChannelMsg', "Done installing {0}", Constants.serviceName));
|
// Start a new line to end the dots from the DOWNLOAD_PROGRESS event.
|
||||||
|
outputChannel.appendLine('');
|
||||||
|
outputChannel.appendLine(localize('downloadServiceDoneChannelMsg', "Downloaded {0}", Constants.serviceName));
|
||||||
break;
|
break;
|
||||||
case Events.ENTRY_EXTRACTED:
|
case Events.ENTRY_EXTRACTED:
|
||||||
outputChannel.appendLine(localize('entryExtractedChannelMsg', "Extracted {0} ({1}/{2})", args[0], args[1], args[2]));
|
outputChannel.appendLine(localize('entryExtractedChannelMsg', "Extracted {0} ({1}/{2})", args[0], args[1], args[2]));
|
||||||
|
|||||||
Reference in New Issue
Block a user