windows language problem additional language removal

my windows default language (and display language) is English United States.
And as an additonal language, I’ve got ‘Hindi’ installed.

But my language bar drop down always shows 3 languages, one ‘English India’ as an additional language, how to get rid of that?

Then in the powershell, I gave this command to force-keep only (these) two languages:
$LangList = New-WinUserLanguageList en-US
$LangList.Add(“hi-IN”)
Set-WinUserLanguageList $LangList -Force

Though the correct method would be to find the culprit langauge (in my case I wished to remove ‘English (India)’ ) and force remove the same.

But anyway, the job for me is done/enoguh.