diff --git a/lib/i18n/languageFunctions.inc b/lib/i18n/languageFunctions.inc index 280683c..ec3130c 100644 --- a/lib/i18n/languageFunctions.inc +++ b/lib/i18n/languageFunctions.inc @@ -28,6 +28,9 @@ function getInstalledLocales() { global $default; // get a list of directories in ($default->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 != ".." && @@ -39,4 +42,4 @@ function getInstalledLocales() { } return $aLocales; } -?> \ No newline at end of file +?>