Ticket #13497: 13497.diff

File 13497.diff, 4.3 KB (added by Ramiro Morales, 14 years ago)

Patch fixisn g some typos

  • docs/internals/contributing.txt

    diff --git a/docs/internals/contributing.txt b/docs/internals/contributing.txt
    a b  
    393393Various parts of Django, such as the admin site and validation error messages,
    394394are internationalized. This means they display different text depending on a
    395395user'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>`.
     396infrastructure available to Django applications described in the
     397:ref:`i18n documentation<topics-i18n>`.
    398398
    399399These translations are contributed by Django users worldwide. If you find an
    400400incorrect translation, or if you'd like to add a language that isn't yet
  • docs/ref/contrib/syndication.txt

    diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt
    a b  
    271271
    272272Feeds created by the syndication framework automatically include the
    273273appropriate ``<language>`` tag (RSS 2.0) or ``xml:lang`` attribute (Atom). This
    274 comes directly from your :setting:`LANGUAGE_CODE setting`.
     274comes directly from your :setting:`LANGUAGE_CODE` setting.
    275275
    276276URLs
    277277----
  • docs/ref/settings.txt

    diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
    a b  
    411411Default: ``'N j, Y'`` (e.g. ``Feb. 4, 2003``)
    412412
    413413The 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
     414system. Note that if :setting:`USE_L10N` is set to ``True``, then the
    415415locale-dictated format has higher precedence and will be applied instead. See
    416416:ttag:`allowed date format strings <now>`.
    417417
     
    451451Default: ``'N j, Y, P'`` (e.g. ``Feb. 4, 2003, 4 p.m.``)
    452452
    453453The 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
     454system. Note that if :setting:`USE_L10N` is set to ``True``, then the
    455455locale-dictated format has higher precedence and will be applied instead. See
    456456:ttag:`allowed date format strings <now>`.
    457457
     
    13411341Default: ``m/d/Y`` (e.g. ``12/31/2003``)
    13421342
    13431343An 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>`.
     1344templates. Note that if :setting:`USE_L10N` is set to ``True``, then the
     1345corresponding locale-dictated format has higher precedence and will be applied.
     1346See :ttag:`allowed date format strings <now>`.
    13471347
    13481348See also ``DATE_FORMAT`` and ``SHORT_DATETIME_FORMAT``.
    13491349
     
    13571357Default: ``m/d/Y P`` (e.g. ``12/31/2003 4 p.m.``)
    13581358
    13591359An 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>`.
     1360templates. Note that if :setting:`USE_L10N` is set to ``True``, then the
     1361corresponding locale-dictated format has higher precedence and will be applied.
     1362See :ttag:`allowed date format strings <now>`.
    13631363
    13641364See also ``DATE_FORMAT`` and ``SHORT_DATETIME_FORMAT``.
    13651365
     
    14971497Default: ``'P'`` (e.g. ``4 p.m.``)
    14981498
    14991499The 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
     1500system. Note that if :setting:`USE_L10N` is set to ``True``, then the
    15011501locale-dictated format has higher precedence and will be applied instead. See
    15021502:ttag:`allowed date format strings <now>`.
    15031503
  • docs/topics/i18n/deployment.txt

    diff --git a/docs/topics/i18n/deployment.txt b/docs/topics/i18n/deployment.txt
    a b  
    124124      selection to German and English (and any sublanguage, like de-ch or
    125125      en-us).
    126126
    127       .. _LANGUAGES setting: ../settings/#languages
    128 
    129127    * If you define a custom ``LANGUAGES`` setting, as explained in the
    130128      previous bullet, it's OK to mark the languages as translation strings
    131129      -- but use a "dummy" ``ugettext()`` function, not the one in
Back to Top