mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
update the strings (#5904)
* update the strings * PR comments and remove the workaround
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user