1 | //! Parsing and writing to PO files. |
---|---|
2 | |
3 | mod escape; |
4 | mod po_file_parser; |
5 | mod po_file_writer; |
6 | pub use po_file_parser::{parse, parse_with_option}; |
7 | pub use po_file_parser::{POParseError, POParseOptions}; |
8 | pub use po_file_writer::write; |
9 |
1 | //! Parsing and writing to PO files. |
---|---|
2 | |
3 | mod escape; |
4 | mod po_file_parser; |
5 | mod po_file_writer; |
6 | pub use po_file_parser::{parse, parse_with_option}; |
7 | pub use po_file_parser::{POParseError, POParseOptions}; |
8 | pub use po_file_writer::write; |
9 |