kopia lustrzana https://github.com/ge0rg/aprsdroid
56 wiersze
1.3 KiB
Bash
56 wiersze
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
# XXX override this:
|
|
PACKAGE=$(basename $PWD)
|
|
|
|
TRAN=translations
|
|
RES=res/values
|
|
POT=$TRAN/$PACKAGE.pot
|
|
PODIR=translations/$PACKAGE
|
|
PO=$PODIR/$PACKAGE-
|
|
|
|
translate_xml2pot() {
|
|
if [ -f $POT ] ; then
|
|
xml2po -a -u $POT $RES/strings.xml
|
|
else
|
|
xml2po -a -o $POT $RES/strings.xml
|
|
fi
|
|
}
|
|
|
|
translate_po2xml() {
|
|
if [ ! -d "translations/" ] ; then
|
|
echo "You need to download the translations package from launchpad first."
|
|
echo "Get it from https://translations.launchpad.net/$PACKAGE and store"
|
|
echo "the .po files as $PO##.po"
|
|
exit 1
|
|
fi
|
|
for po in $PO*.po; do
|
|
lang=${po##$PO}
|
|
lang=${lang%%.po} # strip .po
|
|
lang=${lang/_/-r} # fix up lang_Locale -> lang-rLocale
|
|
echo $lang:
|
|
dir=$RES-$lang
|
|
mkdir -p $dir
|
|
xml2po -a -l $lang -p $po $RES/strings.xml | sed "s/'/\\\\'/g" > $dir/strings.xml
|
|
done
|
|
{
|
|
cat <<EOF
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- AUTOGENERATED BY xml2po.sh! DO NOT CHANGE MANUALLY! -->
|
|
<!-- APRSdroid translators. Autogenerated by xml2po.sh -->
|
|
<resources>
|
|
<string name="translation_credits">\\n
|
|
$(cat translations/$PACKAGE/$PACKAGE-*.po | awk -F ': | <' '/Last-Translator:/ { if ($2 != "FULL NAME") { print $2 "\\n"; } }')
|
|
</string>
|
|
</resources>
|
|
EOF
|
|
} > res/values/translators.xml
|
|
}
|
|
|
|
|
|
if [ "$1" = "xml2pot" ]; then
|
|
translate_xml2pot
|
|
else
|
|
translate_po2xml
|
|
fi
|