[gst-cvs] common: download-translations: make sure existing translations are listed in LINGUAS
Tim Müller
tpm at kemper.freedesktop.org
Wed Apr 7 16:21:25 PDT 2010
Module: common
Branch: master
Commit: 75e68803a10104ada0017f1635da447852ebb83e
URL: http://cgit.freedesktop.org/gstreamer/common/commit/?id=75e68803a10104ada0017f1635da447852ebb83e
Author: Tim-Philipp Müller <tim.muller at collabora.co.uk>
Date: Thu Apr 8 00:18:03 2010 +0100
download-translations: make sure existing translations are listed in LINGUAS
Fixes #509662.
---
download-translations | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/download-translations b/download-translations
index f210c94..aef1d31 100755
--- a/download-translations
+++ b/download-translations
@@ -54,6 +54,7 @@ PACKAGE="$1"
DOMAINS_TO_ADD=""
DOMAINS_UPDATED=""
+DOMAINS_NOT_IN_LINGUAS=""
echo "Downloading latest translation files for package $PACKAGE ..."
echo
@@ -95,6 +96,10 @@ do
fi
DOMAINS_UPDATED="$DOMAINS_UPDATED $d"
fi
+ # make sure domain is listed in LINGUAS
+ if ! grep $d "po/LINGUAS" >/dev/null 2>/dev/null; then
+ DOMAINS_NOT_IN_LINGUAS="$DOMAINS_NOT_IN_LINGUAS $d"
+ fi
else
# ./po/foo.po doesn't exist, but foo.po exists on the translation project
# website, so it's probably a new translation
@@ -135,4 +140,13 @@ if [ -n "$DOMAINS_UPDATED" ]; then
echo "===================================================================="
fi
+if [ -n "$DOMAINS_NOT_IN_LINGUAS" ]; then
+ echo
+ echo "Existing domains missing from the po/LINGUAS file:"
+ echo
+ echo " $DOMAINS_NOT_IN_LINGUAS"
+ echo
+ echo
+fi
+
More information about the Gstreamer-commits
mailing list