How to convert gettext .mo file into .po file

gettext, python, translation

Solution

msgunfmt [path_to_file.mo] > [path_to_file.po]

Problem

Is there any way to convert a .mo file into a .po file source, when the .po file is no longer available? I need to edit the content of a .mo file but I don't have the .po file. Is it possible?

Original source