Pass translations down to Markdown Language Server (#172884)

Fixes #172060
This commit is contained in:
Matt Bierner
2023-01-30 21:29:41 -08:00
committed by GitHub
parent 62dd7cd76d
commit c18f80a2d4
9 changed files with 83 additions and 8 deletions

View File

@@ -0,0 +1,23 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as l10n from '@vscode/l10n';
async function setupMain() {
const l10nLog: string[] = [];
const i10lLocation = process.env['VSCODE_L10N_BUNDLE_LOCATION'];
if (i10lLocation) {
try {
await l10n.config({ uri: i10lLocation });
l10nLog.push(`l10n: Configured to ${i10lLocation.toString()}`);
} catch (e) {
l10nLog.push(`l10n: Problems loading ${i10lLocation.toString()} : ${e}`);
}
}
await import('./main');
l10nLog.forEach(console.log);
}
setupMain();