# dependencies
sudo apt-get install python3-tk tk-dev
sudo pip3 install pandas
# run
python3 gui.py
JSON files (ONLY 2 LEVEL IS SUPPORTED)
// en.json
{
"common": {
"ok": "Ok",
"submit": "Submit",
"cancel": "Cancel"
}
}
- Import JSON to file coversion tool
- Convert to CSV
Import CSV file to Excel / Google sheets
Set new columns. Ex: ru
Translate
- Export as CSV from Excel / Google sheets
- Import CSV to file coversion tool
- Convert to JSON
Output JSON files
// en.json
{
"common": {
"ok": "Ok",
"submit": "Submit",
"cancel": "Cancel"
}
}
// ru.json
{
"common": {
"ok": "ОК",
"submit": "Отправить",
"cancel": "Отменить"
}
}