sintonia/htmlUI/localizer/langConv.php
paul.baranowski c4b96da797 CC-1695 Remove Campcaster Studio and make install easier
Changing htmlUI dir structure to be better.
2010-09-30 15:56:56 -04:00

7 lines
No EOL
207 B
PHP

<?php
$f = file('languages.txt');
foreach($f as $nr=>$text) {
list($code, $name) = explode(' ', $text);
echo "<item>\n\t<code>".trim($code)."</code>\n\t<name>".trim($name)."</name>\n</item>\n";
}
?>