Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
3Abstract
4--------
6Tools and resources for assisting with internationalizing a site or application.
8.. note::
9 The i18n suite does *not* provide concrete models.
11Form fields are provided as an alternative to model fields. In general, we feel these should be preferred because:
131. Form fields (and especially choices) may be customized at run time.
142. Choices may change with some regularity, which may generate unpredictable migrations.
16See also https://docs.djangoproject.com/en/stable/topics/i18n/
18And https://www.w3.org/International/questions/qa-i18n
20"""
21__author__ = "Shawn Davis <shawn@superdjango.com>"
22__maintainer__ = "Shawn Davis <shawn@superdjango.com>"
23__version__ = "0.7.0-p"