Changes between Version 108 and Version 109 of Localization


Ignore:
Timestamp:
Apr 11, 2007, 10:22:53 AM (18 years ago)
Author:
radek
Comment:

added update translations

Legend:

Unmodified
Added
Removed
Modified
  • Localization

    v108 v109  
    4444Additionally it would be great if you join the [http://groups.google.com/group/Django-I18N Django I18N mailing list].
    4545
     46== How to Update Translations ==
     47
     48 1. Ensure that you are running the latest subversion checkout of the code - run "svn update" in your local django subversion copy.
     49 2. Run bin/make-messages.py -l <locale> and you get updated .po files
     50 3. Update any untranslated and fuzzy messages with your favorite translation tool. Anything that looks like "%s" or "%(something)s" has to be copied precisely and the 's' may be a 'd' or 'x' or 'i', possibly.
     51 4. Run bin/compile-messages.py -l <locale> and ensure there are no errors.
     52 5. Upload the complete new .po files to Trac.
     53
     54It is best practice to just check every few weeks (once a month or so if you're really enthusiastic; less often if you're
     55not) to see if there's been any big changes.
     56
     57Prior to any release, Django maintainers will make an announcement. Prior to 1.0, we'll have a couple of weeks of string freeze in order to give people time to be 100% translated.
     58
    4659== Tools ==
    4760
Back to Top