Twenty Fourteen: Change Read More text

In the twenty fourteen theme there is a plugable function named twentyfourteen_excerpt_more which generates the read more links. This function can be overridden in your child theme to use your custom read more link. All you need to do is add the following to your child theme’s functions.php file:

/**
 * Overrides the parent function that generates the read more links
 * 
 * @param string $more
 *
 * @return string
 */
function twentyfourteen_excerpt_more( $more ) {
    global $post;

    return '<a class="more-link" href="'. get_permalink($post->ID) . '">Fortsett å lese</a>';
}
add_filter( 'excerpt_more', 'twentyfourteen_excerpt_more' );

Just for reference the parent function is located in twentyfourteen/inc/template-tags.php and looks like this:

if ( ! function_exists( 'twentyfourteen_excerpt_more' ) && ! is_admin() ) :
/**
 * Replaces "[...]" (appended to automatically generated excerpts) with ...
 * and a Continue reading link.
 *
 * @since Twenty Fourteen 1.3
 *
 * @param string $more Default Read More excerpt link.
 * @return string Filtered Read More excerpt link.
 */
function twentyfourteen_excerpt_more( $more ) {
        $link = sprintf( '<a href="https://wordpress.stackexchange.com/questions/242087/%1$s" class="more-link">%2$s</a>',
                esc_url( get_permalink( get_the_ID() ) ),
                        /* translators: %s: Name of current post */
                        sprintf( __( 'Continue reading %s <span     class="meta-nav">&rarr;</span>', 'twentyfourteen' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>' )
                );
        return ' &hellip; ' . $link;
}
add_filter( 'excerpt_more', 'twentyfourteen_excerpt_more' );
endif;