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