Files
azuredatastudio/extensions/query-history/src/localizedConstants.ts
Charles Gagnon 31bfc2fc94 Add accessibility information to query history items (#20958)
* Add accessibility information to query history items

* bump version
2022-10-24 17:29:59 -07:00

14 lines
690 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 succeeded = localize('succeeded', "Succeeded");
export const failed = localize('failed', "Failed");
export const errorLoading = (err: any): string => localize('errorLoading', "Error loading saved query history items. {0}", err.message ?? err);