5.0.0 • Published 4 years ago

reason-i18n-extractor v5.0.0

Weekly downloads
110
License
MIT
Repository
-
Last release
4 years ago

reason-i18n-extractor

Build Status

Extract translations from your ReasonML codebase.

Installation

$ yarn add reason-i18n-extractor

Usage

Using translations in your codebase

This binary assumes that your translations are using a T.__ function to identify translations.

let element = <div> {T.__("My translation")->React.string} </div>;

This pairs nicely with i18n-webpack-plugin and the following external:

// T.re
[@bs.val] external __: string => string = "__";

Binary

You feed the list of files you have translations in to the script's sdtin, and pass as first argument the destination of the JSON file you want to store the translations in.

$ find ./src -iname '*.re' | reason-i18n-extractor ./i18n/fr.json

Let's say your codebase contains the following code:

let x = <div> {T.__("My translation")->React.string} </div>;
let y = <div> {T.__("My translation 2")->React.string} </div>;

If the translation file doesn't exist, it'll write:

{
  "My translation": "My translation",
  "My translation 2": "My translation 2"
}

If the translation file does exist and already contains:

If the translation file doesn't exist, it'll write:

{
  "My translation": "Ma traduction",
}

The script will merge the existing with the new keys and write:

{
  "My translation": "Ma traduction",
  "My translation 2": "My translation 2"
}

Then, you can check the diff and write the missing translations.

 {
   "My translation": "Ma traduction",
+  "My translation 2": "My translation 2"
 }
5.0.0

4 years ago

3.0.0

4 years ago

2.0.2

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago