Based on https://github.com/undeclared/ts2csv
ts2csv translation.ts
Generates output.csv with the following headers:
"Source","Lang1","Lang2"
You are expected to change LangN to whatever languages you need, and put the translations in that column.
It will create a LangN.ts file for every language that has a header in the CSV file
For example, putting the headers and filling with the translations:
"Source","en_US","fr_FR","zh_CN"
and running:
ts2csv myproject.ts output.csv
It will generate en_US.ts, fr_FR.ts and zh_CN.ts
- Updated README.md
- Fixed some issues I was having.
- Updated .gitignore