Skip to content

Commit ec51963

Browse files
committed
💄
1 parent 6f2adf7 commit ec51963

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/platform/extensionManagement/node/extensionManagementService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export class ExtensionManagementService implements IExtensionManagementService {
241241
return this.galleryService.loadCompatibleVersion(extension)
242242
.then(compatible => {
243243
if (!compatible) {
244-
return TPromise.wrapError<IGalleryExtension[]>(new ExtensionManagementError(nls.localize('notFoundCompatible', "Unable to install because, the extension '{0}' compatible with current version '{1}' of VS Code is not found.", extension.identifier.id, pkg.version), INSTALL_ERROR_INCOMPATIBLE));
244+
return TPromise.wrapError<IGalleryExtension[]>(new ExtensionManagementError(nls.localize('notFoundCompatible', "Unable to install '{0}'; there is no available version compatible with VS Code '{1}'.", extension.identifier.id, pkg.version), INSTALL_ERROR_INCOMPATIBLE));
245245
}
246246
return this.getDependenciesToInstall(compatible.properties.dependencies)
247247
.then(

0 commit comments

Comments
 (0)