diff --git a/VERSION b/VERSION
index 2003b63..965065d 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.9.2
+0.9.3
diff --git a/check_lang_files.php b/check_lang_files.php
index 367143b..28aab12 100644
--- a/check_lang_files.php
+++ b/check_lang_files.php
@@ -1,6 +1,9 @@
-
Incomplete or Erroneous Language Files
\n\n";
+phpldapadmin - check of translation";
+echo "Incomplete or Erroneous Language Files
\n\n";
include realpath( 'lang/en.php' );
$english_lang = $lang;
@@ -11,7 +14,9 @@ $dir = opendir( $lang_dir );
while( ( $file = readdir( $dir ) ) !== false ) {
if( ! preg_match( "/\.php$/", $file ) )
continue;
- if( $file == 'en.php' )
+ if( $file == 'en.php' // is the mother of all language-files
+ || $file == 'auto.php' // and ignore auto.php
+ )
continue;
echo "$file
";
echo "";
@@ -36,6 +41,6 @@ while( ( $file = readdir( $dir ) ) !== false ) {
-
+echo "