langs: include polish to build and core50.

This commit is contained in:
Arne Fitzenreiter
2011-06-19 16:19:44 +02:00
parent 087cc6113c
commit 196e5f8fa0
17 changed files with 1478 additions and 651 deletions

View File

@@ -28,7 +28,7 @@ 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; do
for i in ./langs/en ./langs/fr ./langs/es ./langs/pl ; do
language=`echo "$i" | awk -F/ '{ print $3 }'`
echo "############################################################################"

View File

@@ -730,10 +730,12 @@ update_langs() {
$BASEDIR/tools/sort_strings.pl de
$BASEDIR/tools/sort_strings.pl fr
$BASEDIR/tools/sort_strings.pl es
$BASEDIR/tools/sort_strings.pl pl
$BASEDIR/tools/check_strings.pl en > $BASEDIR/doc/language_issues.en
$BASEDIR/tools/check_strings.pl de > $BASEDIR/doc/language_issues.de
$BASEDIR/tools/check_strings.pl fr > $BASEDIR/doc/language_issues.fr
$BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.es
$BASEDIR/tools/check_strings.pl es > $BASEDIR/doc/language_issues.pl
$BASEDIR/tools/check_langs.sh > $BASEDIR/doc/language_missings
beautify message DONE
}