/*--------------------------------------------------------------------------------------------- * 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('systemInfo', "My System Info"))}
${escape(localize('processes', "Currently Running Processes"))}
${escape(localize('workspaceStats', "My Workspace Stats"))}
						
							
						
					
${escape(localize('extensions', "My Extensions"))}
${escape(localize('searchedExtensions', "Searched Extensions"))}
${escape(localize('settingsSearchDetails', "Settings Search Details"))}
${escape(localize('disableExtensionsLabel', "Try to reproduce the problem after {0}.")) .replace('{0}', `${escape(localize('disableExtensions', "disabling all extensions and reloading the window"))}`)}
${escape(localize('showRunningExtensionsLabel', "If you suspect it's an extension issue, {0}.")) .replace('{0}', `${escape(localize('showRunningExtensions', "see all running extensions"))}`)}
`;