Remove old installer/setup translations

This commit is contained in:
Michael Tremer
2014-08-21 20:35:48 +02:00
parent 4183678571
commit bc0c55088e
10 changed files with 0 additions and 5017 deletions

View File

@@ -26,17 +26,10 @@ if [ ! -d ./langs/ ]; then
fi
cat ./langs/de/cgi-bin/de.pl | grep \'.*\' | awk -F\' '{print $2}'| sort > /tmp/de_cgi-bin.$$
cat ./langs/de/install/lang_de.c | grep TR_ | awk -F\ '{print $2}' > /tmp/de_install.$$
for i in ./langs/en ./langs/fr ./langs/es ./langs/pl ./langs/ru ; do
language=`echo "$i" | awk -F/ '{ print $3 }'`
echo "############################################################################"
echo "# Checking install/setup translations for language: ${language} #"
echo "############################################################################"
cat ./langs/${language}/install/lang_${language}.c | grep TR_ | awk -F\ '{print $2}' | \
diff /tmp/de_install.$$ - | grep \<
echo "############################################################################"
echo "# Checking cgi-bin translations for language: ${language} #"
echo "############################################################################"
@@ -45,7 +38,6 @@ for i in ./langs/en ./langs/fr ./langs/es ./langs/pl ./langs/ru ; do
done
rm -f /tmp/de_cgi-bin.$$
rm -f /tmp/de_install.$$
exit 0