/gettext-po-parser

Gettext PO file parser

MIT LicenseMIT

gettext-po-parser

NPM version Node.js CI status NPM downloads

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.

License

MIT