it does not display the name set as "Language Name (as seen by users)", it displays the control panel name.
The fix is in spoiler tags, because it also breaks some other stuff.
It's in the query in /libs/ubbthreads.inc.php in the section that starts with:
// Grab all available languages
change the query there to:
$query = "
SELECT LANGUAGE_ID,LANGUAGE_DESCRIPTION
FROM {$config['TABLE_PREFIX']}LANGUAGES
WHERE LANGUAGE_IS_ACTIVE='1'
ORDER BY LANGUAGE_DESCRIPTION
";