<__trans phrase="Movable Type could not find the script named 'mt-check.cgi'. To resolve this issue, ensure that the mt-check.cgi script exists and that the CheckScript configuration parameter (if it is necessary) references it properly.">
jQuery('.msg-warning').each( function(){
var $this = jQuery(this);
var $detail = $this.find('span.exception');
$detail.hide();
$this.find('.detail-link').bind( 'mousedown', function() {
if ( $detail.hasClass('active') ) {
$detail.hide().removeClass('active');
} else {
$detail.show().addClass('active').css('display', 'block');
}
});
});