* language code for a Locale.
*
* @return an array of String
*/
public static String[] getISOLanguages() {
ListResourceBundle bundle = new Language();
Enumeration<String> keys = bundle.getKeys(); // to initialize the table
String[] result = new String[bundle.table.size()];
int index = 0;
while (keys.hasMoreElements()) {
result[index++] = keys.nextElement();
}