Simple tools to extract gettext strings
npm install easygettext

Radically simple gettext tokens extraction tool for:
- HTML
- Jade/Pug
- Javascript/ES7+
- Vue
- TypeScript (see Known Issues)
- Nativescript Vue with native and web shared code
files.
Also ships with a PO-to-JSON converter.
bash
npm install --save-dev easygettext
`
or
`bash
yarn add --dev easygettext
`
$3
#### HTML token extraction
Simply invoke the tool on the templates you want to extract a POT dictionary template from.
The optional '--output' argument enables you to directly output to a file.
`
gettext-extract --output dictionary.pot foo.html bar.pug component.vue sourcefile.js
`CLI usage:
`
gettext-extract [--attribute EXTRA-ATTRIBUTE] [--filterPrefix FILTER-PREFIX] [--output OUTFILE] [--parser auto|acorn|babel]
`It recognizes the following token flavours (currently; feel free to extend it!)
`html
Hello WorldHello WorldHello WorldHello WorldHello World
Hello World
Hello World
{{:: 'Something …' |translate}}
`You can combine any context, comment and plural together. Also, you can use 'i18n' instead
of 'translate' as master token.
You can also provide your own master tokens:
`bash
gettext-extract --attribute v-translate --output dictionary.pot foo.html bar.jadegettext-extract --attribute v-translate --attribute v-i18n --output dictionary.pot foo.html bar.jade
gettext-extract --startDelimiter '[#' --endDelimiter '#]' --output dictionary.pot foo.html bar.jade
`gettext-extract can also remove optional HTML whitespaces inside tags to translate (see PR 68 for more information):`
gettext-extract --removeHTMLWhitespaces --output dictionary.pot foo.html
`#### Supports parsing with acorn and babel
If you want to use optional-chaining, nullish-coalesce or any babel plugin, you might want to set the parameter
--parser babel.`
gettext-extract --parser babel --output dictionary.pot foo.html
`It can be set to:
--parser auto|acorn|babelMore info at PR 72
#### Javascript/ES7 token extraction
The usage stays the same but with a Javascript file !
`bash
gettext-extract somefile.js
``javascriptconst myVar = $gettext("My fantastic msgid")
const myConcatVar = $gettext(
"My"
+ "fantastic"
+ "msgid"
)
const myTempVar = $gettext(
My
)const myContextualizedVar = $pgettext("some context", "Some other string")
const myPluralVar = $ngettext(...)
`We recognize the
$gettext, $pgettext and $ngettext tokens as the ones from which we can extract text from.Those tokens are frozen for now, but feel free to make a pull request and add support for variable ones :)
We currently can't extract template strings with variables though.
#### Extract from Vue components
You can also extract the strings marked as translatable inside the
and sections of Vue.js components:`bash
gettext-extract MyComponent.vue
`With a component that looks like this:
`html
{{ greeting_message }}
{{ number_of_people_here }}
Some text to be translated
`The Javascript & HTML (or Pug) extraction within a Vue component works with the same rules as stated upper in this document.
#### Extracting from multiple files
gettext-extract needs the exact file paths to work. If you want to extract gettext from all files in a folder, you can use the UNIX find command. Here is an example as a npm script:`jsonc
{
//...
"scripts": {
// This is for VueJS files, please adapt for HTML or Jade/Pug templates
"extract-gettext-cli": "gettext-extract --attribute v-translate --output dictionary.pot $(find scripts/src/components -type f -name '*.vue')"
}
}
`
#### gettext-compile
Outputs or writes to an output file, the sanitized JSON version of a PO file.
`bash
gettext-compile --output translations.json fr.po en.po de.po
`$3
If you use easygettext to extract files from an AngularJS code base, you might find the following tips helpful.To cover the cases (1)
`html
`and (2)
`html
{{::'Link text' |translate}}
{{'Link text' |translate}}
`
you should run the extraction tool twice. Once with the command-line arguments
`bash
--startDelimiter '{{' --endDelimiter '}}' --filterPrefix '::'
`
and once with the command-line arguments`bash
--output ${html_b} --startDelimiter '' --endDelimiter '' --filterPrefix '::'
`The following Bash script shows how
msgcat might help
`bash
#!/usr/bin/env bashinput_files="$(find ./src/ -iname \*\.html)"
workdir=$(mktemp -d "${TMPDIR:-/tmp/}$(basename $0).XXXXXXXXXXXX") || exit 1
html_a=${workdir}/messages-html-interpolate.pot
html_b=${workdir}/messages-html.pot
./dist/extract-cli.js --output ${html_a} --startDelimiter '{{' --endDelimiter '}}' --filterPrefix '::' ${input_files}
./dist/extract-cli.js --output ${html_b} --startDelimiter '' --endDelimiter '' --filterPrefix '::' ${input_files}
Extract gettext “messages” from JavaScript files here, into ${es_a} …
es_a=${workdir}/ecmascript.pot
[...] > ${es_a}
Merge the different catalog templates with
msgcat:
merged_pot=${workdir}/merged.pot
msgcat ${html_a} ${html_b} ${es_a} > ${merged_pot}Cleanup, in case
msgcat gave merge-conflicts in catalog header.
header=${workdir}/header.pot
sed -e '/^$/q' < ${html_a} > ${header}body=${workdir}/body.pot
sed '1,/^$/d' < ${merged_pot} > ${body}
cat ${header} ${body} > ${output_file}
Remove temporary directory with working files.
rm -r ${workdir}
`
Please note that the script needs to be modified to match your needs and environment.$3
Run the tests using jest:
`bash
npm test
`$3
Run:
`bash
./src/extract-cli.js --attribute v-translate --attribute v-i18n ~/output.html
`
$3
angular-gettext is a very neat tool, that comes with Grunt tooling
to extract translation tokens from your Pug/Jade/HTML templates and JavaScript code.
Unfortunately, this has two drawbacks:
- It isn't a simple command-line interface, and forces the usage of Grunt;
- It is angular-specific.
This library comes up with two simple CLI tools to extract and compile your HTML tokens.
$3
Our frontend toolchain, systematic doesn't rely on Grunt/Gulp/Broccoli/...
and uses a combination of simple Makefiles and CLI tools to do the job.
The toolchain being framework-agnostic, we don't want to depend on Angular to extract our HTML translation tokens.
On another note, we use the standard xgettext
tool to extract our JavaScript translation tokens.
Nevertheless, the way angular-gettext does it (with tokens, directly in HTML) is elegant, is used by many other
libraries and will also be the way to do it in Angular2.
Also, by utilizing either acorn or babel, this tool will parse and compile typical JavaScript expressions used in translate-filter expressions. For example, exposed to a (AngularJS-based) fragment like
`html
`
will produce the following strings
`text
Moonshine
Daylight
CD
Cd
cE
ce
`` TypeScript support is currently limited in that line numbers are not tracked and won't show in generated .po files. This can lead to issues with more complex translations and should be kept in mind.
Thanks a million to @rubenv for the initial ideas and
implementations in angular-gettext-tools, which inspired me a lot.
Thanks to ES6 and Babel for being awesome.
MIT