summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Garcia <garcia.marc@gmail.com>2009-08-05 11:15:01 +0000
committerMarc Garcia <garcia.marc@gmail.com>2009-08-05 11:15:01 +0000
commitae59f1abc9b45e2a6becabd706243efa592bc204 (patch)
tree16649f7c102740cc99a2eb56be8cfffb2cbb1b58
parent58d05494ec4ee457837f857c8929842f33097315 (diff)
[soc2009/i18n] added more clear documentation about l10n on forms
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/i18n-improvements@11401 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/topics/i18n.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/topics/i18n.txt b/docs/topics/i18n.txt
index 9634b0624c..bf758870b4 100644
--- a/docs/topics/i18n.txt
+++ b/docs/topics/i18n.txt
@@ -1095,6 +1095,11 @@ users accessing the same content, but in different language, will see date and
number fields formatted in different ways, depending on the format for their
current locale.
+Django will also use localized formats when parsing data in forms. That means
+Django uses different formats for different locales when guessing the format
+used by the user when inputting data on forms. Note that Django uses different
+formats for displaying data, and for parsing it.
+
Creating custom format files
----------------------------