Gathering detailed insights and metrics for gettext-parser
Gathering detailed insights and metrics for gettext-parser
Gathering detailed insights and metrics for gettext-parser
Gathering detailed insights and metrics for gettext-parser
Parse and compile gettext po and mo files, nothing more, nothing less
npm install gettext-parser
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
160 Stars
218 Commits
44 Forks
9 Watching
5 Branches
22 Contributors
Updated on 16 Sept 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-2.4%
113,686
Compared to previous day
Last week
1.5%
546,895
Compared to previous week
Last month
22.7%
2,265,767
Compared to previous month
Last year
27.4%
22,299,685
Compared to previous year
Parse and compile gettext po and mo files with node.js, nothing more, nothing less.
Please note: starting with version 3 only latest LTS and latest stable node versions are supported. Use version 2 with older node versions.
Include the library:
import gettextParser from "gettext-parser";
Parse a PO file with
gettextParser.po.parse(input[, options]) → Object
Where
defaultCharset is the charset to use if charset is not defined or is the default "CHARSET"
(applies only if input is a Buffer)
validation is a flag to turn on PO source file validation. The validation makes sure that:
msgid_plural
definition per translation entry; a Multiple msgid_plural error
error gets thrown otherwise.msgid
values; a Duplicate msgid error
error gets thrown otherwise.nplurals
defined in Plural-Forms
header for entries that have plural forms; a Plural forms range error
error gets thrown otherwise.msgstr
matches exacty the one (if msgid_plural
is not defined) or the number from nplurals
(if msgid_plural
is defined); a Translation string range error
error gets thrown otherwise.Method returns gettext-parser specific translation object (see below)
Example
1import { readFileSync } from 'node:fs'; 2var input = readFileSync('en.po'); 3var po = gettextParser.po.parse(input); 4console.log(po.translations['']); // output translations for the default context
PO files can also be parsed from a stream source. After all input is processed the parser emits a single 'data' event which contains the parsed translation object.
gettextParser.po.createParseStream([options][, transformOptions]) → Transform Stream
Where
parse
. See Parse PO files section for details.Example
1import { createReadStream } from 'node:fs'; 2var input = createReadStream('en.po'); 3var po = gettextParser.po.createParseStream(); 4input.pipe(po); 5po.on('data', function(data){ 6 console.log(data.translations['']); // output translations for the default context 7});
If you have a translation object you can convert this to a valid PO file with
gettextParser.po.compile(data[, options]) → Buffer
Where
false
) if true
, entries will be sorted by msgid in the resulting .po(.pot) file.
If a comparator function is provided, that function will be used to sort entries in the output. The function is called with two arguments, each of which is a single message entry with the structure described below. The function should follow the standard rules for functions passed to Array.sort()
: return 0
if the entries are interchangeable in sort order; return a number less than 0 if the first entry should come before the second one; and return a number greater than 0 if the second entry should come before the first one.true
) if false
, will skip escape newlines and quotes characters functionality.Example
1import { writeFileSync } from 'node:fs'; 2var data = { 3 ... 4}; 5var output = gettextParser.po.compile(data); 6writeFileSync('filename.po', output);
Parse a MO file with
gettextParser.mo.parse(input[, defaultCharset]) → Object
Where
"CHARSET"
Method returns gettext-parser specific translation object (see below)
Example
1import { readFileSync } from 'node:fs'; 2var input = readFileSync('en.mo'); 3var mo = gettextParser.mo.parse(input); 4console.log(mo.translations['']); // output translations for the default context
If you have a translation object you can convert this to a valid MO file with
gettextParser.mo.compile(data) → Buffer
Where
Example
1import { writeFileSync } from 'node:fs'; 2var data = { 3 ... 4}; 5var output = gettextParser.mo.compile(data); 6writeFileSync('filename.mo', output);
If you are compiling a previously parsed translation object, you can override the output charset with the charset
property (applies both for compiling mo and po files).
1var obj = gettextParser.po.parse(inputBuf); 2obj.charset = "windows-1257"; 3outputBuf = gettextParser.po.compile(obj);
Headers for the output are modified to match the updated charset.
By default gettext-parser uses pure JS iconv-lite for encoding and decoding non UTF-8 charsets. If you need to support more complex encodings that are not supported by iconv-lite, you need to add iconv as an additional dependency for your project (gettext-parser will detect if it is available and tries to use it instead of iconv-lite).
Parsed data is always in unicode but the original charset of the file can
be found from the charset
property. This value is also used when compiling translations
to a mo or po file.
Headers can be found from the headers
object, all keys are lowercase and the value for a key is a string. This value will also be used when compiling.
Translations can be found from the translations
object which in turn holds context objects for msgctxt
. Default context can be found from translations[""]
.
Context objects include all the translations, where msgid
value is the key. The value is an object with the following possible properties:
translator
, reference
, extracted
, flag
, previous
.Example
1{ 2 "charset": "iso-8859-1", 3 4 "headers": { 5 "content-type": "text/plain; charset=iso-8859-1", 6 "plural-forms": "nplurals=2; plural=(n!=1);" 7 }, 8 9 "translations": { 10 "": { 11 "": { 12 "msgid": "", 13 "msgstr": ["Content-Type: text/plain; charset=iso-8859-1\n..."] 14 } 15 }, 16 "another context": { 17 "%s example": { 18 "msgctxt": "another context", 19 "msgid": "%s example", 20 "msgid_plural": "%s examples", 21 "msgstr": ["% näide", "%s näidet"], 22 "comments": { 23 "translator": "This is regular comment", 24 "reference": "/path/to/file:123" 25 } 26 } 27 } 28 } 29}
Notice that the structure has both a headers
object and a ""
translation with the header string. When compiling the structure to a mo or a po file, the headers
object is used to define the header. Header string in the ""
translation is just for reference (includes the original unmodified data) but will not be used when compiling. So if you need to add or alter header values, use only the headers
object.
If you need to convert gettext-parser formatted translation object to something else, eg. for jed, check out po2json.
MIT
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 5/30 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More