At this moment it uses the culture of the current thread.
I.e. you can set it globally in web.config:
<configuration>
<system.web>
<globalization culture="en-US"/>
</system.web>
</configuration>
or in the view controller (this is more of a workaround):
Thread.CurrentThread.CurrentCulture = new CultureInfo("de-de");