/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ 'use strict'; import { escape } from 'vs/base/common/strings'; import { localize } from 'vs/nls'; export default (): string => `
${escape(localize('disableExtensionsLabelText', "Try to reproduce the problem after {0}. If the problem only reproduces when extensions are active, it is likely an issue with an extension.")) .replace('{0}', `${escape(localize('disableExtensions', "disabling all extensions and reloading the window"))}`)}
`;