Django

Code

Changeset 2059

Show
Ignore:
Timestamp:
01/18/06 19:08:42 (3 years ago)
Author:
adrian
Message:

Small style cleanups to the recent changes in docs/i18n.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/i18n.txt

    r2046 r2059  
    448448 
    449449      .. _LANGUAGES setting: http://www.djangoproject.com/documentation/settings/#languages 
    450     * the LocaleMiddleware can only select languages for which there is a 
    451       django provided base translation. If you want to provide translations 
     450    * The ``LocaleMiddleware`` can only select languages for which there is a 
     451      Django-provided base translation. If you want to provide translations 
    452452      for your application that aren't already in the set of translations 
    453       in Djangos source tree, you will want to at least provide basic 
    454       translations for that language. For example Django uses technical 
    455       message IDs to translate date formats and time formats - so you will 
     453      in Django's source tree, you'll want to provide at least basic 
     454      translations for that language. For example, Django uses technical 
     455      message IDs to translate date formats and time formats -- so you will 
    456456      need at least those translations for the system to work correctly. 
    457457 
    458       A good starting point is to just copy over the english ``.po`` file 
    459       and to translate at least the technical messages and maybe the validator 
     458      A good starting point is to copy the English ``.po`` file and to 
     459      translate at least the technical messages -- maybe the validator 
    460460      messages, too. 
    461        
    462       Technical message IDs are easily recognized by them being all upper case. 
    463       You don't translate the message ID as with other messages, you provid
    464       the correct local variant on the provided english value. For example with 
     461 
     462      Technical message IDs are easily recognized; they're all upper case. You 
     463      don't translate the message ID as with other messages, you provide th
     464      correct local variant on the provided English value. For example, with 
    465465      ``DATETIME_FORMAT`` (or ``DATE_FORMAT`` or ``TIME_FORMAT``), this would 
    466       be the format string that you want to use in your language. The format 
    467       is identical to the ``now`` tag date formattings
     466      be the format string that you want to use in your language. The format 
     467      is identical to the format strings used by the ``now`` template tag
    468468 
    469469Once ``LocaleMiddleware`` determines the user's preference, it makes this