[TYPO3-german] Wie bekomme tt_news auf Deutsch?
Ralf-René Schröder
ralf.rene at online.de
Sat May 16 17:07:08 CEST 2009
Thomas Linden schrieb:
> Wie kann ich prüfen ob "de_DE" auf dem Server installiert ist?
probier mal dieses php script (nicht von mir - dank an Google):
<?php
function list_system_locales(){
ob_start();
system('locale -a');
$str = ob_get_contents();
ob_end_clean();
return split("\n", trim($str));
}
$locales = list_system_locales();
echo '<h3>Unterstützte
Locale-Strings:</h3><pre>'.print_r($locales,true).'</pre>';
?>
More information about the TYPO3-german
mailing list