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.
To install the necessary dependencies, run the following command:
pip install -r requirements.txt
- Create your
input
folder - Place your English json file with the name
en_us.sjon
. - Execut the main file:
python3 main.py
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.