update the strings (#5904)

* update the strings

* PR comments and remove the workaround
This commit is contained in:
Alan Ren
2019-06-06 13:03:03 -07:00
committed by GitHub
parent 76a84a2cf4
commit 1150433c0a
15 changed files with 45 additions and 73 deletions

View File

@@ -13,7 +13,7 @@ export class AzCliTool implements ITool {
}
get description(): string {
return localize('resourceDeployment.AzCLIDescription', 'Tool used for managing Azure services');
return localize('resourceDeployment.AzCLIDescription', 'A command-line tool for managing Azure resources');
}
get type(): ToolType {

View File

@@ -13,7 +13,7 @@ export class DockerTool implements ITool {
}
get description(): string {
return localize('resourceDeployment.DockerDescription', 'Manages the containers');
return localize('resourceDeployment.DockerDescription', 'Provides the ability to package and run an application in isolated containers');
}
get type(): ToolType {

View File

@@ -13,7 +13,7 @@ export class KubeCtlTool implements ITool {
}
get description(): string {
return localize('resourceDeployment.KubeCtlDescription', 'Tool used for managing the Kubernetes cluster');
return localize('resourceDeployment.KubeCtlDescription', 'A command-line tool allows you to run commands against Kubernetes clusters');
}
get type(): ToolType {

View File

@@ -13,7 +13,7 @@ export class MSSQLCtlTool implements ITool {
}
get description(): string {
return localize('resourceDeployment.MssqlCtlDescription', 'Command-line tool for installing and managing the SQL Server big data cluster');
return localize('resourceDeployment.MssqlCtlDescription', 'A command-line utility written in Python that enables cluster administrators to bootstrap and manage the big data cluster via REST APIs');
}
get type(): ToolType {

View File

@@ -1,26 +0,0 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import { ToolType, ITool } from '../../interfaces';
import * as nls from 'vscode-nls';
const localize = nls.loadMessageBundle();
export class PythonTool implements ITool {
get name(): string {
return 'python';
}
get description(): string {
return localize('resourceDeployment.PythonDescription', 'Required by notebook feature');
}
get type(): ToolType {
return ToolType.Python;
}
get displayName(): string {
return localize('resourceDeployment.PythonDisplayName', 'Python');
}
}