This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author s-ball
Recipients s-ball
Date 2018-11-28.07:26:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543389979.14.0.788709270274.issue35335@psf.upfronthosting.co.za>
In-reply-to
Content
GNU gettext msgfmt can merge several po files into one single mo file.
The current version of msgfmt can only compile one po file to one mo file.

After looking at the code, the enhancement should be simple to implement.

Command line: if one output file is given (option -o) and several input files, then all the input files should be combined.

Implementation:
- main should pass all the parameters to make (*args)
- make should accept one single string for compatibility or an iterable of string. In that latter case, the current processing should be repeated on all input files.

I could propose a patch (but I am afraid it ends being rather large) or a pull request. As a new user here, I do not know what is the best way...
History
Date User Action Args
2018-11-28 07:26:19s-ballsetrecipients: + s-ball
2018-11-28 07:26:19s-ballsetmessageid: <1543389979.14.0.788709270274.issue35335@psf.upfronthosting.co.za>
2018-11-28 07:26:19s-balllinkissue35335 messages
2018-11-28 07:26:18s-ballcreate