Change "says" text after the commentator's name in the comments list
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
add_filter( 'comment_author_says_text', 'sk_custom_comment_author_says_text' );
/**
* Change "says" text after the commentator's name in the comments list.
*
* @author Sridhar Katakam
* @link http://sridharkatakam.com/
*/
function sk_custom_comment_author_says_text() {
return 'commented';
}