Customize Previous/Next Pagination Button Text

<?php
// customize previous link pagination button text
add_filter( 'genesis_prev_link_text', 'wd_pagination_prev_text' );
function wd_pagination_prev_text( $text ) {
        $text = 'Previous';
        return $text;
}

// customize next link pagination button text
add_filter( 'genesis_next_link_text', 'wd_pagination_next_text' );
function wd_pagination_next_text( $text ) {
        $text = 'Next';
        return $text;
}