Skip to content

Commit d82348d

Browse files
committed
issue2551007 document merging .pot files into .po file and
generate ,mo files as part of release process.
1 parent c26bf79 commit d82348d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

RELEASE.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Roundup release checklist:
1010
1. Regenerate locale/roundup.pot. See "Extracting Translatable
1111
Messages" in doc/developers.txt. This is best done some time in
1212
advance of the release to allow for translators to update their
13-
translations.
13+
translations. Merge into .po files by running 'make *.po'
14+
in the locale directory.
1415
2. Run unit tests! They should pass successfully. "./run_tests.py"
1516
3. Update version
1617
CHANGES.txt
@@ -37,6 +38,7 @@ Roundup release checklist:
3738
python setup.py build (sdist generation will fail if this isn't done)
3839
8. Rebuild documentation in "share/doc/roundup/html"
3940
python setup.py build_doc
41+
8a. Rebuild .mo translation files in distribution - cd locale; make
4042
9. python setup.py sdist --manifest-only
4143
10. Check the MANIFEST to make sure that any new files are included.
4244
(use hg status --rev <last release or tag>:tip to list changed
@@ -87,6 +89,9 @@ So, those commands in a nice, cut'n'pasteable form::
8789
python setup.py build
8890
python setup.py check --restructuredtext --metadata --strict
8991
python setup.py build_doc
92+
cd locale
93+
make
94+
cd ..
9095
python setup.py sdist --manifest-only
9196
python setup.py sdist --quiet
9297
python setup.py bdist_rpm

0 commit comments

Comments
 (0)