jsxgettext-andris
Version:
Extracts gettext strings from JavaScript, EJS, Jade, Jinja and Handlebars files. A fork of https://github.com/zaach/jsxgettext
15 lines (14 loc) • 469 B
JavaScript
gettext(
"The second string is significantly longer "+
"and we'd like to concatenate it in our source "+
"code to avoid really wide files."
);
ngettext(
"This is another quite long sentence "+
"and we'd like to concatenate it in our source "+
"code to avoid really wide files.",
"This is the plural version of our quite long sentence "+
"that we'd like to concatenate it in our source "+
"code to avoid really wide files.",
3
);