How to configure locale and timezone
The default locale and timezone for application is "en_US" and "America/NewYork". cloudCMS pages are built using Freemarker engine. So you can set locale and timezone for Freemarker configuration in WEB-INF/appengine-web.xml under system-properties section.
Configure locale and timezone,
<system-properties> <property name="time_zone" value="America/New_York"></property> <property name="locale" value="en_US"></property> <!-- Other properties --> </system-properties>
blog comments powered by Disqus
Last Modified : Jul 18, 2009 11:18:25 PM