gettext-mcp 0.5.0

Model Context Protocol (MCP) server for managing GNU gettext .po/.pot translation files, with CRUD tools and an optional web UI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Pure data types representing a parsed gettext PO file.
//!
//! Nothing in this module performs file I/O — these are just structs and
//! impls. Parsing lives in [`crate::service::parser`] and serialization in
//! [`crate::service::serializer`].

pub mod entry;
pub mod file;

pub use entry::MessageEntry;
pub use file::GettextFile;