@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
18 lines (17 loc) • 730 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as nls from 'vscode-nls.mjs';
/**
* These are some predefined strings that we test during smoke testing that they are localized
* correctly. Don't change these strings!!
*/
const open = nls.localize('open', 'open');
const close = nls.localize('close', 'close');
const find = nls.localize('find', 'find');
export default {
open: open,
close: close,
find: find,
};