Hy,
The next step is to get the languages listed in the native written
language and glyphs. For example, instead of "German," the page should
read "Deutsch," or something similar.
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.
Darby,
the framework already provides this information.
Look at the docu for Zend_Locale
Function getLanguage.
$language = 'de';
$locale = new Zend_Locale($language);
getLanguage($language);
will return Deutsch
just change the $language to every language you want to have.
Greetings
Thomas