Skip to content

Commit edaa8b1

Browse files
committed
1 parent 3fd46f4 commit edaa8b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/localizations/browser/localizations.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class LocalizationWorkbenchContribution extends Disposable implements IWo
8383
if (!this.galleryService.isEnabled()) {
8484
return;
8585
}
86-
if (!language || !locale || language === 'en' || language.indexOf('en-') === 0) {
86+
if (!language || !locale || locale === 'en' || locale.indexOf('en-') === 0) {
8787
return;
8888
}
8989
if (language === locale || languagePackSuggestionIgnoreList.indexOf(language) > -1) {

0 commit comments

Comments
 (0)