1from webapp2_extras import config 2from webapp2_extras import i18n 3 4default_config = { 5 'locale': 'en_US', 6 'timezone': 'America/Chicago', 7 'required': config.REQUIRED_VALUE, 8} 9 10def locale_selector(store, request): 11 return i18n.get_store().default_locale 12 13def timezone_selector(store, request): 14 return i18n.get_store().default_timezone 15