Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/platform/languagePacks/common/localizedStrings.ts
3296 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import * as nls from '../../../nls.js';
7
8
/**
9
* These are some predefined strings that we test during smoke testing that they are localized
10
* correctly. Don't change these strings!!
11
*/
12
13
const open: string = nls.localize('open', 'open');
14
const close: string = nls.localize('close', 'close');
15
const find: string = nls.localize('find', 'find');
16
17
export default {
18
open: open,
19
close: close,
20
find: find
21
};
22
23