Addresses #76442: Remove suppressImplicitAnyIndexErrors

This commit is contained in:
Dirk Baeumer 2019-07-09 10:21:48 +02:00
parent f3569142cc
commit 9e769ab2ad
1 changed files with 2 additions and 3 deletions

View File

@ -8,10 +8,9 @@ import { localize } from 'vs/nls';
// The strings localized in this file will get pulled into the manifest of the language packs.
// So that they are available for VS Code to use without downloading the entire language pack.
export const minimumTranslatedStrings = {
export const minimumTranslatedStrings: { [key: string]: string } = {
showLanguagePackExtensions: localize('showLanguagePackExtensions', "Search language packs in the Marketplace to change the display language to {0}."),
searchMarketplace: localize('searchMarketplace', "Search Marketplace"),
installAndRestartMessage: localize('installAndRestartMessage', "Install language pack to change the display language to {0}."),
installAndRestart: localize('installAndRestart', "Install and Restart")
};
};