diff --git a/lib/i18n/languageFunctions.inc b/lib/i18n/languageFunctions.inc deleted file mode 100644 index ec3130c..0000000 --- a/lib/i18n/languageFunctions.inc +++ /dev/null @@ -1,45 +0,0 @@ -fileSystemRoot . "/i18n") - $aLocales = array(); - $aLocales[] = "en"; - $aLocales[] = "en_GB"; - $aLocales[] = "en_ZA"; - if ($handle = opendir($default->fileSystemRoot . "/i18n")) { - while (false !== ($file = readdir($handle))) { - if ($file != "." && $file != ".." && - $file != "CVS" && is_dir("$default->fileSystemRoot/i18n/$file")) { - $aLocales[] = $file; - } - } - closedir($handle); - } - return $aLocales; -} -?>