In my MVC app, I've created areas for each language. Inside controllers/views of each area I want specific culture to be used.
I have area for TR and EN. I've modified the web.config files for the areas but seems MVC isn't respecting this setting. When I read current culture it displays en-US.
This is what I've tried: areas/tr/views/web.config
<system.web>
<globalization uiCulture="tr-TR" culture="tr-TR" />
</system.web>
Any proper way to set desired culture for the area?