Is there an API for "international settings" in Visual Studio?
I am working on a Visual Studio extension and I need to install the "shell" language from code. In other words, I am looking for an API to do the same thing that you can do "manually" in the property page "Tools -> Options ... ->" Environment "->" International Settings. "
So far, I have not found any links: greetings and suggestions are welcome. ;-)
Thanks in advance.
EDIT: To clarify the question a bit, I need to install the current language of Visual Studio itself (actually the isolated Visual Studio shell).
source to share
I am posting the current search results here (my colleague and myself).
We found something at http://msdn.microsoft.com/en-us/library/ms165643.aspx .
In particular, you can access such parameters withDTE.Properties("Environment", "International")
source to share