WinGet is the Windows Package Manager. This project includes a CLI (Command Line Interface), PowerShell modules, and a COM (Component Object Model) API (Application Programming Interface).
Localising help means translating the help text to non-EN-US languages and including those translations in the module. PowerShell does a great job handling this, but you must design it into the module.
Localising help means translating the help text to non-EN-US languages and including those translations in the module. PowerShell does a great job handling this, but you must design it into the module.
As it turns out, the PowerShell team have some great guidance for this: https://learn.microsoft.com/en-us/powershell/scripting/developer/help/writing-help-for-windows-powershell-modules?view=powershell-7.3
Also, it looks like the module does not support updatable help either. You could consider fixing this.
Originally posted by @doctordns in https://github.com/microsoft/winget-cli/discussions/3182#discussioncomment-5779934