Skip to content

Commit 6cd92df

Browse files
Remove nls config in all files
1 parent 663d108 commit 6cd92df

File tree

16 files changed

+0
-16
lines changed

16 files changed

+0
-16
lines changed

src/client/application/diagnostics/checks/macPythonInterpreter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import { DiagnosticCodes } from '../constants';
2323
import { DiagnosticCommandPromptHandlerServiceId, MessageCommandPrompt } from '../promptHandler';
2424
import { DiagnosticScope, IDiagnostic, IDiagnosticCommand, IDiagnosticHandlerService } from '../types';
2525

26-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
2726
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
2827

2928
const messages = {

src/client/application/diagnostics/checks/pythonInterpreter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import {
2323
IDiagnosticMessageOnCloseHandler,
2424
} from '../types';
2525

26-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
2726
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
2827

2928
const messages = {

src/client/browser/localize.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// IMPORTANT: Do not import any node fs related modules here, as they do not work in browser.
99
import * as nls from 'vscode-nls';
1010

11-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
1211
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
1312

1413
export namespace LanguageService {

src/client/common/experiments/service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { PVSC_EXTENSION_ID } from '../constants';
1414
import { IExperimentService, IPersistentStateFactory } from '../types';
1515
import { ExperimentationTelemetry } from './telemetry';
1616

17-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
1817
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
1918

2019
const EXP_MEMENTO_KEY = 'VSCode.ABExp.FeatureData';

src/client/common/installer/moduleInstaller.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import { ProductNames } from './productNames';
2323
import { IModuleInstaller, InstallOptions, InterpreterUri, ModuleInstallFlags } from './types';
2424
import * as nls from 'vscode-nls';
2525

26-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
2726
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
2827

2928
@injectable()

src/client/common/installer/productInstaller.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ import { isParentPath } from '../platform/fs-paths';
4242

4343
export { Product } from '../types';
4444

45-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
4645
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
4746

4847
// Products which may not be available to install from certain package registries, keyed by product name

src/client/common/net/fileDownloader.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { IFileSystem, WriteStream } from '../platform/types';
1414
import { DownloadOptions, IFileDownloader, IHttpClient } from '../types';
1515
import { noop } from '../utils/misc';
1616

17-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
1817
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
1918

2019
@injectable()

src/client/common/utils/localize.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import * as nls from 'vscode-nls';
77

8-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
98
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
109

1110
/* eslint-disable @typescript-eslint/no-namespace, no-shadow */

src/client/debugger/extension/attachQuickPick/provider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { PsProcessParser } from './psProcessParser';
1111
import { IAttachItem, IAttachProcessProvider, ProcessListCommand } from './types';
1212
import { WmicProcessParser } from './wmicProcessParser';
1313

14-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
1514
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
1615

1716
@injectable()

src/client/debugger/extension/configuration/providers/pyramidLaunch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { LaunchRequestArguments } from '../../../types';
1919
import { DebugConfigurationState, DebugConfigurationType, IDebugConfigurationProvider } from '../../types';
2020
import * as nls from 'vscode-nls';
2121

22-
// nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFormat.standalone })();
2322
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
2423

2524
const workspaceFolderToken = '${workspaceFolder}';

0 commit comments

Comments
 (0)