Path: blob/main/src/vs/platform/languagePacks/common/localizedStrings.ts
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import * as nls from '../../../nls.js';67/**8* These are some predefined strings that we test during smoke testing that they are localized9* correctly. Don't change these strings!!10*/1112const open: string = nls.localize('open', 'open');13const close: string = nls.localize('close', 'close');14const find: string = nls.localize('find', 'find');1516export default {17open: open,18close: close,19find: find20};212223