mirror of
https://github.com/friendica/friendica
synced 2025-04-26 21:50:11 +00:00
Revert "Update languagedetect library"
This commit is contained in:
parent
c22920edba
commit
071946fa78
101 changed files with 3632 additions and 311 deletions
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";
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue