6 个版本

0.1.0 2024年1月18日
0.0.5 2023年3月12日

#92国际化(i18n)

MIT 许可证

205KB
5K SLoC

rspolib

crates.io PyPI docs.rs Bindings docs

Python 库 polib 的 Rust 版本。

安装

cargo add rspolib

使用方法

use rspolib::{pofile, prelude::*};

let po = pofile("./tests-data/flags.po").unwrap();

for entry in &po.entries {
    println!("{}", entry.msgid);
}

po.save("./file.po");

请参阅 docs.rs/rspolib 的文档

Python 绑定

Python versions

依赖关系

~0.8–1.3MB
~21K SLoC