gettext-po-parser
v1.0.0
Published
Gettext PO file parser
Downloads
754
Readme
gettext-po-parser
A Gettext PO file parser written with peg.js. Tested to support parsing most PO files in the GNOME project, and every parsed node contains information for its location in source file.
Installation
npm install gettext-po-parser
Usage
import { parse } from 'gettext-po-parser';
const catalog = parse(input);
You can take a look at the type definitions for the returned data structure.