You need to change your interface culture to use a different resx file. This can be done in config
<globalization uiCulture="es" culture="es-MX" />
or in code
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");;
If you want to automatically adapt to the user, you can request HttpContext.Current.Request.UserLanguagesfor user browser settings
source
share