rspolib
Port to Rust of the Python library polib.
Install
Usage
use pofile;
let po = pofile.unwrap;
for entry in po.entries
po.save.unwrap;
Port to Rust of the Python library polib.
cargo add rspolib
use rspolib::pofile;
let po = pofile("path/to/file.po").unwrap();
for entry in po.entries {
println!("{}", entry.msgid);
}
po.save("path/to/other/file.po").unwrap();