diff --git a/docs/internals/contributing.txt b/docs/internals/contributing.txt
a
|
b
|
|
393 | 393 | Various parts of Django, such as the admin site and validation error messages, |
394 | 394 | are internationalized. This means they display different text depending on a |
395 | 395 | user's language setting. For this, Django uses the same internationalization |
396 | | infrastructure that is available to Django applications that is described |
397 | | in the :ref:`i18n documentation<topics-i18n>`. |
| 396 | infrastructure available to Django applications described in the |
| 397 | :ref:`i18n documentation<topics-i18n>`. |
398 | 398 | |
399 | 399 | These translations are contributed by Django users worldwide. If you find an |
400 | 400 | incorrect translation, or if you'd like to add a language that isn't yet |
diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt
a
|
b
|
|
271 | 271 | |
272 | 272 | Feeds created by the syndication framework automatically include the |
273 | 273 | appropriate ``<language>`` tag (RSS 2.0) or ``xml:lang`` attribute (Atom). This |
274 | | comes directly from your :setting:`LANGUAGE_CODE setting`. |
| 274 | comes directly from your :setting:`LANGUAGE_CODE` setting. |
275 | 275 | |
276 | 276 | URLs |
277 | 277 | ---- |
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
a
|
b
|
|
411 | 411 | Default: ``'N j, Y'`` (e.g. ``Feb. 4, 2003``) |
412 | 412 | |
413 | 413 | The default formatting to use for displaying date fields in any part of the |
414 | | system. Note that if setting:`USE_L10N` is set to ``True``, then the |
| 414 | system. Note that if :setting:`USE_L10N` is set to ``True``, then the |
415 | 415 | locale-dictated format has higher precedence and will be applied instead. See |
416 | 416 | :ttag:`allowed date format strings <now>`. |
417 | 417 | |
… |
… |
|
451 | 451 | Default: ``'N j, Y, P'`` (e.g. ``Feb. 4, 2003, 4 p.m.``) |
452 | 452 | |
453 | 453 | The default formatting to use for displaying datetime fields in any part of the |
454 | | system. Note that if setting:`USE_L10N` is set to ``True``, then the |
| 454 | system. Note that if :setting:`USE_L10N` is set to ``True``, then the |
455 | 455 | locale-dictated format has higher precedence and will be applied instead. See |
456 | 456 | :ttag:`allowed date format strings <now>`. |
457 | 457 | |
… |
… |
|
1341 | 1341 | Default: ``m/d/Y`` (e.g. ``12/31/2003``) |
1342 | 1342 | |
1343 | 1343 | An available formatting that can be used for displaying date fields on |
1344 | | templates. Note that if ``USE_L10N`` is set to ``True``, then the corresponding |
1345 | | locale-dictated format has higher precedence and will be applied. See |
1346 | | :ttag:`allowed date format strings <now>`. |
| 1344 | templates. Note that if :setting:`USE_L10N` is set to ``True``, then the |
| 1345 | corresponding locale-dictated format has higher precedence and will be applied. |
| 1346 | See :ttag:`allowed date format strings <now>`. |
1347 | 1347 | |
1348 | 1348 | See also ``DATE_FORMAT`` and ``SHORT_DATETIME_FORMAT``. |
1349 | 1349 | |
… |
… |
|
1357 | 1357 | Default: ``m/d/Y P`` (e.g. ``12/31/2003 4 p.m.``) |
1358 | 1358 | |
1359 | 1359 | An available formatting that can be used for displaying datetime fields on |
1360 | | templates. Note that if ``USE_L10N`` is set to ``True``, then the corresponding |
1361 | | locale-dictated format has higher precedence and will be applied. See |
1362 | | :ttag:`allowed date format strings <now>`. |
| 1360 | templates. Note that if :setting:`USE_L10N` is set to ``True``, then the |
| 1361 | corresponding locale-dictated format has higher precedence and will be applied. |
| 1362 | See :ttag:`allowed date format strings <now>`. |
1363 | 1363 | |
1364 | 1364 | See also ``DATE_FORMAT`` and ``SHORT_DATETIME_FORMAT``. |
1365 | 1365 | |
… |
… |
|
1497 | 1497 | Default: ``'P'`` (e.g. ``4 p.m.``) |
1498 | 1498 | |
1499 | 1499 | The default formatting to use for displaying time fields in any part of the |
1500 | | system. Note that if setting:`USE_L10N` is set to ``True``, then the |
| 1500 | system. Note that if :setting:`USE_L10N` is set to ``True``, then the |
1501 | 1501 | locale-dictated format has higher precedence and will be applied instead. See |
1502 | 1502 | :ttag:`allowed date format strings <now>`. |
1503 | 1503 | |
diff --git a/docs/topics/i18n/deployment.txt b/docs/topics/i18n/deployment.txt
a
|
b
|
|
124 | 124 | selection to German and English (and any sublanguage, like de-ch or |
125 | 125 | en-us). |
126 | 126 | |
127 | | .. _LANGUAGES setting: ../settings/#languages |
128 | | |
129 | 127 | * If you define a custom ``LANGUAGES`` setting, as explained in the |
130 | 128 | previous bullet, it's OK to mark the languages as translation strings |
131 | 129 | -- but use a "dummy" ``ugettext()`` function, not the one in |