mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-02 02:52:40 +00:00
8 lines
270 B
Bash
8 lines
270 B
Bash
|
#!/bin/sh
|
||
|
EXPORT_LANGS=("de" "es" "fr" "fi" "hy" "ko" "nl" "pl" "pt_BR" "ru" "sk" "sv" "th" "tr" "uk")
|
||
|
|
||
|
for i in ${EXPORT_LANGS[@]}; do
|
||
|
echo "compiling $i.po..."
|
||
|
mkdir -p "po/locale/$i/LC_MESSAGES/" && msgfmt "po/$i.po" -o "po/locale/$i/LC_MESSAGES/furnace.mo"
|
||
|
done
|