An open API service indexing awesome lists of open source software.

https://github.com/andre-carbajal/jsontranslation

This Python project translate the content of a JSON file from English to multiple other languages.
https://github.com/andre-carbajal/jsontranslation

file-translation json python python-3 python-script python3 translation translation-files translations translator

Last synced: 23 days ago
JSON representation

This Python project translate the content of a JSON file from English to multiple other languages.

Awesome Lists containing this project

README

          

# JsonTranslation

## Description

This Python project is a multilingual translation tool that uses the deep_translator library to translate the content of a JSON file from English to multiple other languages.

The script reads a JSON file from the 'input' directory, which contains key-value pairs in English. It then translates the values into several languages (Chinese Simplified, Chinese Traditional, French, German, Italian, Japanese, Korean, Portuguese, Russian, and Ukrainian) using Google's translation service.

The translated content is then written to new JSON files, each named according to the language code (e.g., 'zh_cn.json' for Simplified Chinese), and saved in the 'output' directory.

The translation process is performed concurrently for each key-value pair in the JSON file, which can significantly speed up the translation process for large files.

## Installation

To install the necessary dependencies, run the following command:

```bash
pip install -r requirements.txt
```

## Usage
1. Create your ```input``` folder
2. Place your English json file with the name ```en_us.sjon```.
3. Execut the main file:
```bash
python3 main.py
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

## License
[GNU General Public License v3.0](LICENSE)