rspolib 0.1.2

PO and MO files manipulation library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! rspolib prelude
//!
//! It includes traits to make use of the methods of files and entries.
//!
//! - [Save] trait to save a POFile or MOFile to a file using the `save` method.
//! - [SaveAsMOFile] trait to use the method `save_as_mofile`.
//! - [SaveAsPOFile] trait to use the method `save_as_pofile`.
//! - [Merge] trait to use the method `merge`.
//! - [TranslatedEntry] trait to use the method `translated` on entries.
//! - [AsBytes] trait to use the methods `as_bytes*` on POFile and MOFile.
//! - [MsgidEotMsgctxt] trait to use the method `msgid_eot_msgctxt` on entries.
pub use crate::{
    AsBytes, Merge, MsgidEotMsgctxt, Save, SaveAsMOFile,
    SaveAsPOFile, TranslatedEntry,
};