Revert "Update languagedetect library"
This commit is contained in:
committed by
GitHub
parent
c22920edba
commit
071946fa78
11
library/langdet/docs/languages.php
Normal file
11
library/langdet/docs/languages.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* List all supported languages
|
||||
*/
|
||||
require_once 'Text/LanguageDetect.php';
|
||||
$ld = new Text_LanguageDetect();
|
||||
|
||||
foreach ($ld->getLanguages() as $lang) {
|
||||
echo $lang . "\n";
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user