60 | | 2. Run {{{django-admin.py makemessages -l <locale>}}} and you get updated .po files |
61 | | 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. |
62 | | 4. Run {{{django-admin.py compilemessages -l <locale>}}} and ensure there are no errors. |
63 | | 5. Upload the diff of .po files to Trac. (The complete new .po files are ok, but diff file would be better.) |
| 62 | 1. Change dir to django_src |
| 63 | 1. Run {{{export PYTHONPATH=`pwd` django-admin.py makemessages -l <locale>}}} and you get updated .po files |
| 64 | 1. 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. |
| 65 | 1. Run {{{django-admin.py compilemessages -l <locale>}}} and ensure there are no errors. |
| 66 | 1. Change dir to django_src |
| 67 | 1. Do a {{{svn diff django/conf/locale/ > django-i18n-<locale>.patch}}} to create the diff file |
| 68 | 1. Upload the diff of .po files to Trac. (The complete new .po files are ok, but diff file would be better.) |