Initial commit
This commit is contained in:
15
listlangs.php
Normal file
15
listlangs.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
$updateId = isset($argv[1]) ? $argv[1] : 0;
|
||||
|
||||
require_once dirname(__FILE__).'/api/listlangs.php';
|
||||
$langs = uupListLangs($updateId);
|
||||
$langs = $langs['langFancyNames'];
|
||||
asort($langs);
|
||||
|
||||
foreach($langs as $key => $val) {
|
||||
echo $key;
|
||||
echo '|';
|
||||
echo $val;
|
||||
echo "\n";
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user