mirror of
https://github.com/ankitects/anki.git
synced 2025-11-16 09:37:12 -05:00
18 lines
411 B
Bash
Executable file
18 lines
411 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# build mo files
|
|
#
|
|
set -eo pipefail
|
|
|
|
targetDir="../aqt_data/locale/gettext"
|
|
mkdir -p $targetDir
|
|
|
|
echo "Compiling *.po..."
|
|
for file in po/desktop/*/anki.po
|
|
do
|
|
outdir=$(echo "$file" | \
|
|
perl -pe "s%po/desktop/(.*)/anki.po%$targetDir/\1/LC_MESSAGES%")
|
|
outfile="$outdir/anki.mo"
|
|
mkdir -p $outdir
|
|
msgmerge -q "$file" po/desktop/anki.pot | msgfmt - --output-file="$outfile"
|
|
done
|