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
12
13
14
15
16
17
//! Domain services: parser, serializer, store, manager.
//!
//! The parser/serializer modules are pure (no I/O), while `store` and
//! `manager` route file access through the [`crate::io::FileStore`]
//! abstraction.

pub mod glossary;
pub mod manager;
pub mod merger;
pub mod mo_writer;
pub mod parser;
pub mod serializer;
pub mod store;
pub mod xliff;

pub use manager::GettextStoreManager;
pub use store::GettextStore;