mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-13 21:18:13 +01:00
9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Creates translation .mo files (binary) from the .po files (text).
|
|
# The game reads .mo files, so this needs to be run before building.
|
|
|
|
for i in *.po ; do
|
|
msgfmt "$i" -o $( basename $i .po ).mo
|
|
done
|