12 lines
389 B
Bash
Executable File
12 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# assumes to be started in mineclonia top level directory and that Luanti's mod
|
|
# tools and Wuzzy's translation tools are in PATH
|
|
|
|
# run all steps two times for a complete roundtrip of changed translations
|
|
for i in 0 1; do
|
|
ltt_convert.py mods --po2tr -r
|
|
tools/generate_translation_strings/generate.sh mod_translation_updater.py
|
|
ltt_convert.py mods --tr2po -r
|
|
done
|