| 1 | ********************** |
| 2 | * Add a new language * |
| 3 | ********************** |
| 4 | in /po, example for french: |
| 5 | msginit -o fr.po -i bloatit.pot |
| 6 | |
| 7 | then edit it and change project name to BloatIt in configuration: |
| 8 | poedit fr.po |
| 9 | |
| 10 | Update compilepo.sh to add new generation |
| 11 | |
| 12 | ***************************** |
| 13 | * Add new file to translate * |
| 14 | ***************************** |
| 15 | edit /po/POTFILES.in |
| 16 | |
| 17 | ******************************* |
| 18 | * Update translation template * |
| 19 | ******************************* |
| 20 | in /po : |
| 21 | ./genpot.sh |
| 22 | |
| 23 | ***************************************** |
| 24 | * Update translations with new template * |
| 25 | ***************************************** |
| 26 | in /po, example for french : |
| 27 | msgmerge -U fr.po bloatit.pot |
| 28 | |
| 29 | ************************ |
| 30 | * Generate translation * |
| 31 | ************************ |
| 32 | in /po : |
| 33 | ./compilepo.sh |
| 34 | |