Hello Tommy Gilardi,
It looks like the Kazakh Language Interface Pack was bundled by MSI during the OEM recovery.
The practical removal path is through PowerShell. Open PowerShell as Administrator and run:
$list = Get-WinUserLanguageList
$list | Where-Object {$_.LanguageTag -eq 'kk-KZ'} | ForEach-Object {$list.Remove($_)}
Set-WinUserLanguageList $list -Force
If that doesn't fully remove it from Apps & features, you can follow up with DISM:
dism /Online /Remove-Language /Language:kk-KZ
A restart after either command is recommended. Let me know how it goes,
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.