Browse Source

add quick note for how to extract module in ReadMe

master
LecygneNoir 5 years ago
parent
commit
1b30a6f179
1 changed files with 14 additions and 1 deletions
  1. +14
    -1
      README.md

+ 14
- 1
README.md View File

@ -1,3 +1,16 @@
# thea2Shattering_i18n_tools
Scripting tools to interact with Thea 2 The Shattering's files in order to translate them easily.
Scripting tools to interact with Thea 2 The Shattering's files in order to translate them easily.
## Modules
To convert from txt :
```
for text in Modules/game_files/*; do ./extract_module.sh "${text}"; done
for text in Modules/pot/*; do mv "${text}" "${text}.ori"; msguniq --no-wrap "${text}.ori" > "${text}"; rm "${text}.ori"; done
```

Loading…
Cancel
Save