How to Remove “View all posts filed under” Prefix from Link Title Attribute in Category Widget

add_filter('wp_list_categories', 'remove_category_link_prefix');
function remove_category_link_prefix($output) {
return str_replace('View all posts filed under ', '', $output);
}