mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
In Twenty Fourteen, move the "Continue Reading" arrows back inside the translatable strings so they can be localised.
See #30641 Built from https://develop.svn.wordpress.org/trunk@30796 git-svn-id: http://core.svn.wordpress.org/trunk@30786 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e9f7c78d38
commit
64fb3e7175
@ -45,8 +45,8 @@
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
esc_html__( 'Continue reading %s', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span> <span class="meta-nav">→</span>', false )
|
||||
__( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
|
@ -45,8 +45,8 @@
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
esc_html__( 'Continue reading %s', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span> <span class="meta-nav">→</span>', false )
|
||||
__( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
|
@ -45,8 +45,8 @@
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
esc_html__( 'Continue reading %s', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span> <span class="meta-nav">→</span>', false )
|
||||
__( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
|
@ -45,8 +45,8 @@
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
esc_html__( 'Continue reading %s', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span> <span class="meta-nav">→</span>', false )
|
||||
__( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
|
@ -45,8 +45,8 @@
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
esc_html__( 'Continue reading %s', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span> <span class="meta-nav">→</span>', false )
|
||||
__( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
|
@ -45,8 +45,8 @@
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
esc_html__( 'Continue reading %s', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span> <span class="meta-nav">→</span>', false )
|
||||
__( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
|
@ -45,8 +45,8 @@
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
esc_html__( 'Continue reading %s', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span> <span class="meta-nav">→</span>', false )
|
||||
__( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
|
@ -53,8 +53,8 @@
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
esc_html__( 'Continue reading %s', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span> <span class="meta-nav">→</span>', false )
|
||||
__( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
|
@ -216,7 +216,7 @@ function twentyfourteen_excerpt_more( $more ) {
|
||||
$link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>',
|
||||
esc_url( get_permalink( get_the_ID() ) ),
|
||||
/* translators: %s: Name of current post */
|
||||
sprintf( esc_html__( 'Continue reading %s', 'twentyfourteen' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span> <span class="meta-nav">→</span>' )
|
||||
sprintf( __( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>' )
|
||||
);
|
||||
return ' … ' . $link;
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.1-beta2-30795';
|
||||
$wp_version = '4.1-beta2-30796';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user