mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 01:25:38 -05:00
* Merge from vscode c58aaab8a1cc22a7139b761166a0d4f37d41e998 * fix pipelines * fix strict-null-checks * add missing files
25 lines
908 B
TypeScript
25 lines
908 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export interface NLSConfiguration {
|
|
locale: string;
|
|
availableLanguages: {
|
|
[key: string]: string;
|
|
};
|
|
pseudo?: boolean;
|
|
_languagePackSupport?: boolean;
|
|
}
|
|
|
|
export interface InternalNLSConfiguration extends NLSConfiguration {
|
|
_languagePackId: string;
|
|
_translationsConfigFile: string;
|
|
_cacheRoot: string;
|
|
_resolvedLanguagePackCoreLocation: string;
|
|
_corruptedFile: string;
|
|
_languagePackSupport?: boolean;
|
|
}
|
|
|
|
export function getNLSConfiguration(commit: string, userDataPath: string, metaDataFile: string, locale: string): Promise<NLSConfiguration>;
|