UNPKG

@sussudio/platform

Version:

Internal APIs for VS Code's service injection the base services.

19 lines (18 loc) 903 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { localize } from 'vscode-nls.mjs'; export const Categories = Object.freeze({ View: { value: localize('view', 'View'), original: 'View' }, Help: { value: localize('help', 'Help'), original: 'Help' }, Test: { value: localize('test', 'Test'), original: 'Test' }, Preferences: { value: localize('preferences', 'Preferences'), original: 'Preferences' }, Developer: { value: localize( { key: 'developer', comment: ['A developer on Code itself or someone diagnosing issues in Code'] }, 'Developer', ), original: 'Developer', }, });