I recently changed my Visual Studio Code to German. However when I'm hovering a function the description is still given in English. Is it possible to change the language of this part as well?
Asked
Active
Viewed 126 times
0
-
I'm going to assume that VS Code just asks Python (via the Language Server) for the documentation, and that it (effectively) calls the `help()` function. See https://stackoverflow.com/a/5430038. Can you get that in German? This means that, unless the help (the docstrings) have been translated, _and_ the language server knows to ask for that translation, you're out of luck. – Roger Lipscombe Nov 01 '22 at 17:10