I need to get the list of available languages as 2-letter ISO codes.
I know I can select from "sys_language" to get a list of defined languages, but these don't contain such an ISO code.
The table structure for "sys_language" is as follows:
1 uid int(11) UNSIGNED AUTO_INCREMENT
2 pid int(11) UNSIGNED
3 tstamp int(11) UNSIGNED
4 hidden tinyint(4) UNSIGNED
5 title varchar(80) utf8_general_ci
6 flag varchar(20) utf8_general_ci
7 static_lang_isocode int(11)
I've tried adding some languages through the backend admin interface by clicking on a flag, but while this adds another row to the sys_language table, I don't see how such a defined language could be transferred into a 2-letter ISO language code.
The closest thing are the 2 letter flag codes which are inserted into the "flag" field, but a flag can't really be converted to a language code (think of Switzerland which has 3 (actually I think even 4) official languages).
So, how can I get a list of 2-letter iso codes for installed/activated languages?
Greetings/Thanks
static_lang_isocodecontain? – Ignacio Vazquez-Abrams Jan 26 at 19:09