Fixed #13497 -- Corrected various typos and markup problems in docs. Thanks to Ramiro Morales for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13144 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b626d60240
commit
663d17897e
|
@ -393,8 +393,8 @@ Submitting and maintaining translations
|
||||||
Various parts of Django, such as the admin site and validation error messages,
|
Various parts of Django, such as the admin site and validation error messages,
|
||||||
are internationalized. This means they display different text depending on a
|
are internationalized. This means they display different text depending on a
|
||||||
user's language setting. For this, Django uses the same internationalization
|
user's language setting. For this, Django uses the same internationalization
|
||||||
infrastructure that is available to Django applications that is described
|
infrastructure available to Django applications described in the
|
||||||
in the :ref:`i18n documentation<topics-i18n>`.
|
:ref:`i18n documentation<topics-i18n>`.
|
||||||
|
|
||||||
These translations are contributed by Django users worldwide. If you find an
|
These translations are contributed by Django users worldwide. If you find an
|
||||||
incorrect translation, or if you'd like to add a language that isn't yet
|
incorrect translation, or if you'd like to add a language that isn't yet
|
||||||
|
|
|
@ -271,7 +271,7 @@ Language
|
||||||
|
|
||||||
Feeds created by the syndication framework automatically include the
|
Feeds created by the syndication framework automatically include the
|
||||||
appropriate ``<language>`` tag (RSS 2.0) or ``xml:lang`` attribute (Atom). This
|
appropriate ``<language>`` tag (RSS 2.0) or ``xml:lang`` attribute (Atom). This
|
||||||
comes directly from your :setting:`LANGUAGE_CODE setting`.
|
comes directly from your :setting:`LANGUAGE_CODE` setting.
|
||||||
|
|
||||||
URLs
|
URLs
|
||||||
----
|
----
|
||||||
|
|
|
@ -411,7 +411,7 @@ DATE_FORMAT
|
||||||
Default: ``'N j, Y'`` (e.g. ``Feb. 4, 2003``)
|
Default: ``'N j, Y'`` (e.g. ``Feb. 4, 2003``)
|
||||||
|
|
||||||
The default formatting to use for displaying date fields in any part of the
|
The default formatting to use for displaying date fields in any part of the
|
||||||
system. Note that if setting:`USE_L10N` is set to ``True``, then the
|
system. Note that if :setting:`USE_L10N` is set to ``True``, then the
|
||||||
locale-dictated format has higher precedence and will be applied instead. See
|
locale-dictated format has higher precedence and will be applied instead. See
|
||||||
:ttag:`allowed date format strings <now>`.
|
:ttag:`allowed date format strings <now>`.
|
||||||
|
|
||||||
|
@ -451,7 +451,7 @@ DATETIME_FORMAT
|
||||||
Default: ``'N j, Y, P'`` (e.g. ``Feb. 4, 2003, 4 p.m.``)
|
Default: ``'N j, Y, P'`` (e.g. ``Feb. 4, 2003, 4 p.m.``)
|
||||||
|
|
||||||
The default formatting to use for displaying datetime fields in any part of the
|
The default formatting to use for displaying datetime fields in any part of the
|
||||||
system. Note that if setting:`USE_L10N` is set to ``True``, then the
|
system. Note that if :setting:`USE_L10N` is set to ``True``, then the
|
||||||
locale-dictated format has higher precedence and will be applied instead. See
|
locale-dictated format has higher precedence and will be applied instead. See
|
||||||
:ttag:`allowed date format strings <now>`.
|
:ttag:`allowed date format strings <now>`.
|
||||||
|
|
||||||
|
@ -1341,9 +1341,9 @@ SHORT_DATE_FORMAT
|
||||||
Default: ``m/d/Y`` (e.g. ``12/31/2003``)
|
Default: ``m/d/Y`` (e.g. ``12/31/2003``)
|
||||||
|
|
||||||
An available formatting that can be used for displaying date fields on
|
An available formatting that can be used for displaying date fields on
|
||||||
templates. Note that if ``USE_L10N`` is set to ``True``, then the corresponding
|
templates. Note that if :setting:`USE_L10N` is set to ``True``, then the
|
||||||
locale-dictated format has higher precedence and will be applied. See
|
corresponding locale-dictated format has higher precedence and will be applied.
|
||||||
:ttag:`allowed date format strings <now>`.
|
See :ttag:`allowed date format strings <now>`.
|
||||||
|
|
||||||
See also ``DATE_FORMAT`` and ``SHORT_DATETIME_FORMAT``.
|
See also ``DATE_FORMAT`` and ``SHORT_DATETIME_FORMAT``.
|
||||||
|
|
||||||
|
@ -1357,9 +1357,9 @@ SHORT_DATETIME_FORMAT
|
||||||
Default: ``m/d/Y P`` (e.g. ``12/31/2003 4 p.m.``)
|
Default: ``m/d/Y P`` (e.g. ``12/31/2003 4 p.m.``)
|
||||||
|
|
||||||
An available formatting that can be used for displaying datetime fields on
|
An available formatting that can be used for displaying datetime fields on
|
||||||
templates. Note that if ``USE_L10N`` is set to ``True``, then the corresponding
|
templates. Note that if :setting:`USE_L10N` is set to ``True``, then the
|
||||||
locale-dictated format has higher precedence and will be applied. See
|
corresponding locale-dictated format has higher precedence and will be applied.
|
||||||
:ttag:`allowed date format strings <now>`.
|
See :ttag:`allowed date format strings <now>`.
|
||||||
|
|
||||||
See also ``DATE_FORMAT`` and ``SHORT_DATETIME_FORMAT``.
|
See also ``DATE_FORMAT`` and ``SHORT_DATETIME_FORMAT``.
|
||||||
|
|
||||||
|
@ -1497,7 +1497,7 @@ TIME_FORMAT
|
||||||
Default: ``'P'`` (e.g. ``4 p.m.``)
|
Default: ``'P'`` (e.g. ``4 p.m.``)
|
||||||
|
|
||||||
The default formatting to use for displaying time fields in any part of the
|
The default formatting to use for displaying time fields in any part of the
|
||||||
system. Note that if setting:`USE_L10N` is set to ``True``, then the
|
system. Note that if :setting:`USE_L10N` is set to ``True``, then the
|
||||||
locale-dictated format has higher precedence and will be applied instead. See
|
locale-dictated format has higher precedence and will be applied instead. See
|
||||||
:ttag:`allowed date format strings <now>`.
|
:ttag:`allowed date format strings <now>`.
|
||||||
|
|
||||||
|
|
|
@ -124,8 +124,6 @@ Notes:
|
||||||
selection to German and English (and any sublanguage, like de-ch or
|
selection to German and English (and any sublanguage, like de-ch or
|
||||||
en-us).
|
en-us).
|
||||||
|
|
||||||
.. _LANGUAGES setting: ../settings/#languages
|
|
||||||
|
|
||||||
* If you define a custom ``LANGUAGES`` setting, as explained in the
|
* If you define a custom ``LANGUAGES`` setting, as explained in the
|
||||||
previous bullet, it's OK to mark the languages as translation strings
|
previous bullet, it's OK to mark the languages as translation strings
|
||||||
-- but use a "dummy" ``ugettext()`` function, not the one in
|
-- but use a "dummy" ``ugettext()`` function, not the one in
|
||||||
|
|
Loading…
Reference in New Issue