'.esc_html__('Please check your SFTP Host settings and try again (leave FTP Host BLANK for local backups).','wpdbbkp');
}
if($wpdbbkp_auth_type_=='key'){
$key = PublicKeyLoader::load($pkey,$key_pass);
$result = $sftp->login($user, $key);
}else{
$result = $sftp->login($user, $pass);
}
if ( ! $result ) {
return esc_html__('Could not log in to your FTP server.','wpdbbkp').'
'.esc_html__('Please check your SFTP Username and Password, then try again.','wpdbbkp').'
'.esc_html__('For local backups, please leave the FTP Host option BLANK.','wpdbbkp');
}
}
}
}