9f24b6ea65
These files haven't been updated in more than fifteen years and their number of translated strings has dropped to below twenty percent. Also, prevent them from coming back when next syncing with the TP.
41 строка
1.3 KiB
Bash
Исполняемый файл
41 строка
1.3 KiB
Bash
Исполняемый файл
#!/bin/sh
|
|
|
|
# Let this be executed in the po/ subdir.
|
|
cd "$(dirname "$0")" || exit 1
|
|
|
|
echo "Updating translations via TP"
|
|
# First remove existing PO files, as wget will not overwrite them.
|
|
rm *.po
|
|
wget --recursive --level=1 --accept=po --no-directories --no-verbose \
|
|
https://translationproject.org/latest/nano/ || exit 2
|
|
|
|
# These PO files are less than twenty percent translated:
|
|
rm -v id.po nn.po
|
|
|
|
# Are there now PO files that are not in git yet?
|
|
NEWSTUFF=$(git status --porcelain *.po | grep "^??")
|
|
|
|
if [ -n "${NEWSTUFF}" ]; then
|
|
echo "New languages found; updating LINGUAS"
|
|
echo "# List of available languages." >LINGUAS
|
|
echo $(printf '%s\n' *.po | LC_ALL=C sort | sed 's/\.po//g') >>LINGUAS
|
|
fi
|
|
|
|
echo "Regenerating POT file and remerging and recompiling PO files..."
|
|
make update-po
|
|
|
|
echo "Removing the dead weight of obsolete and fuzzy translations..."
|
|
for pofile in *.po; do
|
|
msgattrib --no-obsolete --no-fuzzy $pofile >trimmed.po || exit 4
|
|
mv trimmed.po $pofile || exit 4
|
|
done
|
|
echo
|
|
|
|
if grep "[[:cntrl:]]" ./*.po; then
|
|
echo "*** PO file contains control character"; exit 5;
|
|
fi
|
|
|
|
# If needed, fix a problem in the Makefile template.
|
|
grep -q '^datarootdir' Makefile.in.in || \
|
|
sed -i 's/^\(datadir.*\)/datarootdir = @datarootdir@\n\1/' Makefile.in.in
|