mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 17:23:42 -05:00
* Add enabled property and make default account option empty * Rmove unused loc string * Add descriptive comment and support required azure dropdowns.
14 lines
749 B
TypeScript
14 lines
749 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as nls from 'vscode-nls';
|
|
|
|
const localize = nls.loadMessageBundle();
|
|
|
|
export const account = localize('azure.account', "Azure Account");
|
|
export const subscription = localize('azure.account.subscription', "Subscription");
|
|
export const resourceGroup = localize('azure.account.resourceGroup', "Resource Group");
|
|
export const location = localize('azure.account.location', "Azure Location");
|