nodejs-translator
v1.0.0
Published
Translates a json file using Microsoft Translator api
Downloads
6
Maintainers
Readme
nodejs-translator
A simple script to translate json files from any language to any language using Microsoft Translator Api.
Setup
- Download the package
- Run
npm install
- If you haven't already, create a translator app following instructions here. It's free up to 2000000 characters translated per month.
- P.S: They don't specify it, but the client_id you set MUST be alphanumerical to work.
- Add your keys to the
settings.json
file.
nodejs-translator supports json files composed like this:
{
"KEY": "string to translate"
}
It also supports namespaced keys:
{
"KEY": "string to translate",
"NAMESPACED_KEYS": {
"SUB_KEY": "another string to translate"
}
}
You can run the script by
node translator.js <input_file_path> <input_language> <output_language> <output_folder_path>
If no output_folder_path
is specified, the resulting json will be saved in the output
folder.