I have a .NET application that talks to the AD in order to all the user to change the password of the AD account. It is a web application used internationally and I can't assume that the user speaks English.
So I need to translate error messages like "Password does not meet the password policy requirements" into whatever culture the user sends to the webserver.
- Can I use any internal translation tables or do I manually have to translate the messages via the returned error codes using my own translation tables?
- Is there any way to install all possible ressource files for all supported cultures on that server - so that new Win32Exception(errorcode).Message will result in the right message?