File size: 824 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# i18n-calypso CLI
Scans your JavaScript sources/build files and generates a POT file or a PHP translation file which can be understood by the GlotPress plugin.
## Installation
`yarn add i18n-calypso-cli`
## Using the CLI
- `yarn global add i18n-calypso-cli`
- `i18n-calypso -i <input_file> -o <output_file> -f <format:POT|PHP>`
## From your code
```js
const i18nCalypso = require( 'i18n-calypso-cli' );
i18nCalypso( {
inputPaths, // <paths to your js files to scan>,
output, // <path to your destination>
format, // <format of the output: POT, PHP or JSON>
projectName, // <Meta information about the project which can be used for autogenerated headers>
} );
```
See more examples of usage in `test/index.js`
## License
GlotPress.js is licensed under [GNU General Public License v2 (or later)](./LICENSE.md).
|