@chaoskaizer – your code fix worked great. One of my users updated the WP version before checking compatibility etc. and broke WPML/links generation /media generation from the visual view. I added in your code to the bottom of the themes function.php with a comment and like magic, you nailed it.
Cheers,
/* ------------------------------------------------------------------------ */
/* WPML Fix 5/7/2014
/* ------------------------------------------------------------------------ */
function icl_load_jquery_ui() {
wp_enqueue_script( 'jquery-ui-dialog', false, array('jquery'), false, true );
}
add_action( 'admin_enqueue_scripts', 'icl_load_jquery_ui' );
/* ------------------------------------------------------------------------ */
/* EOF
/* ------------------------------------------------------------------------ */