furnace/scripts/build-po.sh

8 lines
300 B
Bash
Raw Normal View History

2024-06-22 14:54:18 -05:00
#!/bin/bash
EXPORT_LANGS=("de" "es" "fr" "fi" "hy" "id" "ko" "nl" "pl" "pt_BR" "ru" "sk" "sv" "th" "tr" "uk" "zh" "zh_HK")
2024-05-31 19:55:56 -05:00
for i in ${EXPORT_LANGS[@]}; do
echo "compiling $i.po..."
2024-06-23 16:20:58 -05:00
mkdir -p "po/locale/$i/LC_MESSAGES/" && msgfmt "po/$i.po" -o "po/locale/$i/LC_MESSAGES/furnace.mo" || exit 1
2024-05-31 19:55:56 -05:00
done