Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/localization/electron-browser/minimalTranslations.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 { localize } from '../../../../nls.js';
7
8
// The strings localized in this file will get pulled into the manifest of the language packs.
9
// So that they are available for VS Code to use without downloading the entire language pack.
10
11
export const minimumTranslatedStrings: { [key: string]: string } = {
12
showLanguagePackExtensions: localize('showLanguagePackExtensions', "Search language packs in the Marketplace to change the display language to {0}."),
13
searchMarketplace: localize('searchMarketplace', "Search Marketplace"),
14
installAndRestartMessage: localize('installAndRestartMessage', "Install language pack to change the display language to {0}."),
15
installAndRestart: localize('installAndRestart', "Install and Restart")
16
};
17