This document discusses localization in ASP.NET MVC applications. It covers several approaches to localization including:
- Thread localization to set the culture based on requests
- Resource localization using .resx files to store localized strings
- View localization to render views based on the current culture
- jQuery localization plugins to internationalize JavaScript
The document provides code samples and discusses requirements around maintaining the selected language as users browse a site. It also briefly mentions HTTP content negotiation for transparent localization.