From 12ea52866385e20e4a9f05df4d319aa1bdf51cfb Mon Sep 17 00:00:00 2001 From: Michel Kaporin Date: Wed, 28 Jun 2017 16:09:30 +0200 Subject: [PATCH] Correctly configuring nls for use. #29098 --- extensions/markdown/src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/markdown/src/extension.ts b/extensions/markdown/src/extension.ts index 5e9095c5104..01f34895148 100644 --- a/extensions/markdown/src/extension.ts +++ b/extensions/markdown/src/extension.ts @@ -6,7 +6,7 @@ 'use strict'; import * as nls from 'vscode-nls'; -const localize = nls.loadMessageBundle(); +const localize = nls.config(process.env.VSCODE_NLS_CONFIG)(); import * as vscode from 'vscode'; import * as path from 'path'; import TelemetryReporter from 'vscode-extension-telemetry'; -- GitLab