6 releases
0.1.0 | Jan 18, 2024 |
---|---|
0.0.5 | Mar 12, 2023 |
#128 in Internationalization (i18n)
245KB
6.5K
SLoC
rspolib
Port to Rust of the Python library polib.
Install
cargo add rspolib
Usage
use rspolib::{pofile, prelude::*};
let po = pofile("./tests-data/flags.po").unwrap();
for entry in &po.entries {
println!("{}", entry.msgid);
}
po.save("./file.po");
See the documentation at docs.rs/rspolib
Python bindings
Dependencies
~1.6–2.2MB
~38K SLoC