Hy,
For those of you familiar with languages other than English, please take
a look at this page. I would sincerely appreciate any volunteer efforts
to get these strings to me (e.g., "Deutsch"), and I would reciprocate by
changing them on this page once I have the complete list.
I should go to bed...
Take the latest SVN and with the following code you will get for all known
locales the language
written in its own language within your browser.
<?php
require_once 'Zend.php';
Zend::loadClass('Zend_Locale');
$locale = new Zend_Locale();
$list = $locale->getLanguageList();
unset($list['no']);
foreach($list as $language => $content) {
$lang = new Zend_Locale($language);
print "\n<br>[".$language."] ".$lang->getLanguageDisplay($language);
}
As I said, the information is already present in the framework ;-)
Greetings
Thomas