sussudio
Version:
An unofficial VS Code Internal API
18 lines (17 loc) • 740 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 "../../../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
};