1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
#!/bin/bash
function src_lang () {
echo "Updating translation (src) for: $1"
msgmerge --update --previous ./po/$1.po ./po/drawing.pot
}
function src_all () {
echo "Updating all .po files (src)"
ninja -C _build drawing-update-po
}
function src_all_2 () {
# because meson/ninja/whatever never work as expected and are impossible to
# properly troubleshoot
echo "Updating .pot file (src)"
xgettext --files-from=po/POTFILES --from-code=UTF-8 -c --add-location=file --output=po/drawing.pot
echo "Updating all .po files (src)"
while IFS= read -r line; do
if [ ${line::1} != "#" ]; then
src_lang $line
fi
done < po/LINGUAS
rm po/*.po~
}
function src_pot () {
echo "Updating .pot file (src)"
ninja -C _build drawing-pot
}
################################################################################
function help_lang () {
help_pot
if [ ! -d "help/$1/$1.po" ]; then
echo "Creating .po file (help) for: $1"
echo $1 >> help/LINGUAS
sort help/LINGUAS -o help/LINGUAS
mkdir help/$1
touch help/$1/$1.po
fi
help_all
}
function help_all () {
echo "Updating all .po files (help)"
ninja -C _build help-drawing-update-po
}
function help_pot () {
echo "Updating .pot file (help)"
ninja -C _build help-drawing-pot
}
################################################################################
if [ $# = 0 ]; then
echo "Available methods:"
declare -F
echo ""
echo "Running src_all by default"
src_all
else
$1 $2
fi
exit 0
|