furnace/scripts/build-po.sh

8 lines
300 B
Bash
Raw Permalink Normal View History

2024-06-22 15:54:18 -04: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 20:55:56 -04:00
for i in ${EXPORT_LANGS[@]}; do
echo "compiling $i.po..."
2024-06-23 17:20:58 -04: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 20:55:56 -04:00
done