1 2 3 4 5 6 7 8 9 10 11
// SPDX-FileCopyrightText: 2026 Sébastien Helleu <flashcode@flashtux.org> // // SPDX-License-Identifier: GPL-3.0-or-later //! Blazingly fast PO file reader module. pub mod entry; pub mod escape; pub mod format; pub mod message; pub mod parser;