mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 18:46:36 -05:00
* Initial work * Add setting change handler * Fix tests * Update loc names and add preview tag * Remove TODOs
13 lines
734 B
TypeScript
13 lines
734 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 extensionName = localize('azurecore.extensionName', "Azure Accounts");
|
|
|
|
export const requiresReload = localize('azurecore.requiresReload', "Modifying this setting requires reloading the window for all changes to take effect.");
|
|
export const reload = localize('azurecore.reload', "Reload");
|