Make WordPress Core

Changeset 45609


Ignore:
Timestamp:
07/09/2019 01:08:47 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Add missing translator comments to the default themes.

All default themes now have translator comments for all strings with placeholders!

See #46732.

Location:
trunk/src/wp-content/themes
Files:
77 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfifteen/author-bio.php

    r30896 r45609  
    3232            <?php the_author_meta( 'description' ); ?>
    3333            <a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
    34                 <?php printf( __( 'View all posts by %s', 'twentyfifteen' ), get_the_author() ); ?>
     34                <?php
     35                /* translators: %s: author display name */
     36                printf( __( 'View all posts by %s', 'twentyfifteen' ), get_the_author() );
     37                ?>
    3538            </a>
    3639        </p><!-- .author-bio -->
  • trunk/src/wp-content/themes/twentyfifteen/content-link.php

    r45209 r45609  
    2727    <div class="entry-content">
    2828        <?php
    29             /* translators: %s: Name of current post */
    3029            the_content(
    3130                sprintf(
     31                    /* translators: %s: Name of current post */
    3232                    __( 'Continue reading %s', 'twentyfifteen' ),
    3333                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfifteen/content-none.php

    r44496 r45609  
    2020        <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
    2121
    22             <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentyfifteen' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
     22            <p>
     23            <?php
     24            /* translators: %s: post editor URL */
     25            printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentyfifteen' ), esc_url( admin_url( 'post-new.php' ) ) );
     26            ?>
     27            </p>
    2328
    2429        <?php elseif ( is_search() ) : ?>
  • trunk/src/wp-content/themes/twentyfifteen/content.php

    r45209 r45609  
    2929    <div class="entry-content">
    3030        <?php
    31             /* translators: %s: Name of current post */
    3231            the_content(
    3332                sprintf(
     33                    /* translators: %s: Name of current post */
    3434                    __( 'Continue reading %s', 'twentyfifteen' ),
    3535                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfifteen/footer.php

    r43051 r45609  
    2929            ?>
    3030            <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>" class="imprint">
    31                 <?php printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?>
     31                <?php
     32                /* translators: %s: WordPress */
     33                printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' );
     34                ?>
    3235            </a>
    3336        </div><!-- .site-info -->
  • trunk/src/wp-content/themes/twentyfifteen/inc/back-compat.php

    r43571 r45609  
    3535 */
    3636function twentyfifteen_upgrade_notice() {
     37    /* translators: %s: WordPress version */
    3738    $message = sprintf( __( 'Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again.', 'twentyfifteen' ), $GLOBALS['wp_version'] );
    3839    printf( '<div class="error"><p>%s</p></div>', $message );
     
    4647function twentyfifteen_customize() {
    4748    wp_die(
     49        /* translators: %s: WordPress version */
    4850        sprintf( __( 'Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again.', 'twentyfifteen' ), $GLOBALS['wp_version'] ),
    4951        '',
     
    6264function twentyfifteen_preview() {
    6365    if ( isset( $_GET['preview'] ) ) {
     66        /* translators: %s: WordPress version */
    6467        wp_die( sprintf( __( 'Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again.', 'twentyfifteen' ), $GLOBALS['wp_version'] ) );
    6568    }
  • trunk/src/wp-content/themes/twentyfifteen/search.php

    r43571 r45609  
    1616
    1717            <header class="page-header">
    18                 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyfifteen' ), get_search_query() ); ?></h1>
     18                <h1 class="page-title">
     19                <?php
     20                /* translators: %s: search query */
     21                printf( __( 'Search Results for: %s', 'twentyfifteen' ), get_search_query() );
     22                ?>
     23                </h1>
    1924            </header><!-- .page-header -->
    2025
  • trunk/src/wp-content/themes/twentyfourteen/archive.php

    r44496 r45609  
    2828                <h1 class="page-title">
    2929                    <?php
    30                     if ( is_day() ) :
     30                    if ( is_day() ) {
     31                        /* translators: %s: date */
    3132                        printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() );
    32 
    33                         elseif ( is_month() ) :
    34                             printf( __( 'Monthly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );
    35 
    36                         elseif ( is_year() ) :
    37                             printf( __( 'Yearly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );
    38 
    39                         else :
    40                             _e( 'Archives', 'twentyfourteen' );
    41 
    42                         endif;
    43                         ?>
     33                    } elseif ( is_month() ) {
     34                        /* translators: %s: date */
     35                        printf( __( 'Monthly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );
     36                    } elseif ( is_year() ) {
     37                        /* translators: %s: date */
     38                        printf( __( 'Yearly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );
     39                    } else {
     40                        _e( 'Archives', 'twentyfourteen' );
     41                    }
     42                    ?>
    4443                </h1>
    4544            </header><!-- .page-header -->
  • trunk/src/wp-content/themes/twentyfourteen/author.php

    r44496 r45609  
    2929                        the_post();
    3030
     31                        /* translators: %s: author display name */
    3132                        printf( __( 'All posts by %s', 'twentyfourteen' ), get_the_author() );
    3233                    ?>
  • trunk/src/wp-content/themes/twentyfourteen/category.php

    r44496 r45609  
    1818
    1919            <header class="archive-header">
    20                 <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) ); ?></h1>
     20                <h1 class="archive-title">
     21                <?php
     22                /* translators: %s: category title */
     23                printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) );
     24                ?>
     25                </h1>
    2126
    2227                <?php
  • trunk/src/wp-content/themes/twentyfourteen/content-aside.php

    r45209 r45609  
    4444    <div class="entry-content">
    4545        <?php
    46             /* translators: %s: Name of current post */
    4746            the_content(
    4847                sprintf(
     48                    /* translators: %s: Name of current post */
    4949                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ),
    5050                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfourteen/content-audio.php

    r45209 r45609  
    4444    <div class="entry-content">
    4545        <?php
    46             /* translators: %s: Name of current post */
    4746            the_content(
    4847                sprintf(
     48                    /* translators: %s: Name of current post */
    4949                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ),
    5050                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfourteen/content-gallery.php

    r45209 r45609  
    4444    <div class="entry-content">
    4545        <?php
    46             /* translators: %s: Name of current post */
    4746            the_content(
    4847                sprintf(
     48                    /* translators: %s: Name of current post */
    4949                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ),
    5050                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfourteen/content-image.php

    r45209 r45609  
    4444    <div class="entry-content">
    4545        <?php
    46             /* translators: %s: Name of current post */
    4746            the_content(
    4847                sprintf(
     48                    /* translators: %s: Name of current post */
    4949                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ),
    5050                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfourteen/content-link.php

    r45209 r45609  
    4444    <div class="entry-content">
    4545        <?php
    46             /* translators: %s: Name of current post */
    4746            the_content(
    4847                sprintf(
     48                    /* translators: %s: Name of current post */
    4949                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ),
    5050                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfourteen/content-none.php

    r44574 r45609  
    1616    <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
    1717
    18     <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentyfourteen' ), admin_url( 'post-new.php' ) ); ?></p>
     18    <p>
     19        <?php
     20        /* translators: %s: post editor URL */
     21        printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentyfourteen' ), admin_url( 'post-new.php' ) );
     22        ?>
     23    </p>
    1924
    2025    <?php elseif ( is_search() ) : ?>
  • trunk/src/wp-content/themes/twentyfourteen/content-quote.php

    r45209 r45609  
    4444    <div class="entry-content">
    4545        <?php
    46             /* translators: %s: Name of current post */
    4746            the_content(
    4847                sprintf(
     48                    /* translators: %s: Name of current post */
    4949                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ),
    5050                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfourteen/content-video.php

    r45209 r45609  
    4444    <div class="entry-content">
    4545        <?php
    46             /* translators: %s: Name of current post */
    4746            the_content(
    4847                sprintf(
     48                    /* translators: %s: Name of current post */
    4949                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ),
    5050                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfourteen/content.php

    r45209 r45609  
    5353    <div class="entry-content">
    5454        <?php
    55             /* translators: %s: Name of current post */
    5655            the_content(
    5756                sprintf(
     57                    /* translators: %s: Name of current post */
    5858                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ),
    5959                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentyfourteen/footer.php

    r43051 r45609  
    2525                ?>
    2626                <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint">
    27                     <?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?>
     27                    <?php
     28                    /* translators: %s: WordPress */
     29                    printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' );
     30                    ?>
    2831                </a>
    2932            </div><!-- .site-info -->
  • trunk/src/wp-content/themes/twentyfourteen/functions.php

    r45485 r45609  
    505505                </p>
    506506                <a class="button contributor-posts-link" href="<?php echo esc_url( get_author_posts_url( $contributor_id ) ); ?>">
    507                     <?php printf( _n( '%d Article', '%d Articles', $post_count, 'twentyfourteen' ), $post_count ); ?>
     507                    <?php
     508                    /* translators: %d: post count */
     509                    printf( _n( '%d Article', '%d Articles', $post_count, 'twentyfourteen' ), $post_count );
     510                    ?>
    508511                </a>
    509512            </div><!-- .contributor-summary -->
     
    624627    // Add a page number if necessary.
    625628    if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
     629        /* translators: %s: page number */
    626630        $title = "$title $sep " . sprintf( __( 'Page %s', 'twentyfourteen' ), max( $paged, $page ) );
    627631    }
  • trunk/src/wp-content/themes/twentyfourteen/inc/back-compat.php

    r43571 r45609  
    3535 */
    3636function twentyfourteen_upgrade_notice() {
     37    /* translators: %s: WordPress version */
    3738    $message = sprintf( __( 'Twenty Fourteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentyfourteen' ), $GLOBALS['wp_version'] );
    3839    printf( '<div class="error"><p>%s</p></div>', $message );
     
    4647function twentyfourteen_customize() {
    4748    wp_die(
     49        /* translators: %s: WordPress version */
    4850        sprintf( __( 'Twenty Fourteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentyfourteen' ), $GLOBALS['wp_version'] ),
    4951        '',
     
    6264function twentyfourteen_preview() {
    6365    if ( isset( $_GET['preview'] ) ) {
     66        /* translators: %s: WordPress version */
    6467        wp_die( sprintf( __( 'Twenty Fourteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentyfourteen' ), $GLOBALS['wp_version'] ) );
    6568    }
  • trunk/src/wp-content/themes/twentyfourteen/inc/customizer.php

    r43571 r45609  
    6161            'title'           => __( 'Featured Content', 'twentyfourteen' ),
    6262            'description'     => sprintf(
     63                /* translators: 1: featured tag editor URL, 2: post editor URL */
    6364                __( 'Use a <a href="%1$s">tag</a> to feature your posts. If no posts match the tag, <a href="%2$s">sticky posts</a> will be displayed instead.', 'twentyfourteen' ),
    6465                esc_url( add_query_arg( 'tag', _x( 'featured', 'featured content default tag slug', 'twentyfourteen' ), admin_url( 'edit.php' ) ) ),
     
    160161            'content' =>
    161162                '<ul>' .
     163                    /* translators: 1: featured tag editor URL, 2: post editor URL, 3: customizer URL, 4: post editor URL */
    162164                    '<li>' . sprintf( __( 'The home page features your choice of up to 6 posts prominently displayed in a grid or slider, controlled by a <a href="%1$s">tag</a>; you can change the tag and layout in <a href="%2$s">Appearance &rarr; Customize</a>. If no posts match the tag, <a href="%3$s">sticky posts</a> will be displayed instead.', 'twentyfourteen' ), esc_url( add_query_arg( 'tag', _x( 'featured', 'featured content default tag slug', 'twentyfourteen' ), admin_url( 'edit.php' ) ) ), admin_url( 'customize.php' ), admin_url( 'edit.php?show_sticky=1' ) ) . '</li>' .
     165                    /* translators: %s: featured images documentation URL */
    163166                    '<li>' . sprintf( __( 'Enhance your site design by using <a href="%s">Featured Images</a> for posts you&rsquo;d like to stand out (also known as post thumbnails). This allows you to associate an image with your post without inserting it. Twenty Fourteen uses featured images for posts and pages&mdash;above the title&mdash;and in the Featured Content area on the home page.', 'twentyfourteen' ), 'https://codex.wordpress.org/Post_Thumbnails#Setting_a_Post_Thumbnail' ) . '</li>' .
     167                    /* translators: %s: Twenty Fourteen documentation URL */
    164168                    '<li>' . sprintf( __( 'For an in-depth tutorial, and more tips and tricks, visit the <a href="%s">Twenty Fourteen documentation</a>.', 'twentyfourteen' ), 'https://codex.wordpress.org/Twenty_Fourteen' ) . '</li>' .
    165169                '</ul>',
  • trunk/src/wp-content/themes/twentyfourteen/inc/featured-content.php

    r43571 r45609  
    381381                'title'          => __( 'Featured Content', 'twentyfourteen' ),
    382382                'description'    => sprintf(
     383                    /* translators: 1: featured tag editor URL, 2: post editor URL */
    383384                    __( 'Use a <a href="%1$s">tag</a> to feature your posts. If no posts match the tag, <a href="%2$s">sticky posts</a> will be displayed instead.', 'twentyfourteen' ),
    384385                    esc_url( add_query_arg( 'tag', _x( 'featured', 'featured content default tag slug', 'twentyfourteen' ), admin_url( 'edit.php' ) ) ),
  • trunk/src/wp-content/themes/twentyfourteen/inc/widgets.php

    r45209 r45609  
    190190                                <?php
    191191                                printf(
     192                                    /* translators: 1: post permalink, 2: number of images in the gallery */
    192193                                    _n( 'This gallery contains <a href="%1$s" rel="bookmark">%2$s photo</a>.', 'This gallery contains <a href="%1$s" rel="bookmark">%2$s photos</a>.', $total_images, 'twentyfourteen' ),
    193194                                    esc_url( get_permalink() ),
  • trunk/src/wp-content/themes/twentyfourteen/search.php

    r43571 r45609  
    1616
    1717            <header class="page-header">
    18                 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() ); ?></h1>
     18                <h1 class="page-title">
     19                <?php
     20                /* translators: %s: search query */
     21                printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() );
     22                ?>
     23                </h1>
    1924            </header><!-- .page-header -->
    2025
  • trunk/src/wp-content/themes/twentyfourteen/tag.php

    r44496 r45609  
    2020
    2121            <header class="archive-header">
    22                 <h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentyfourteen' ), single_tag_title( '', false ) ); ?></h1>
     22                <h1 class="archive-title">
     23                <?php
     24                /* translators: %s: tag title */
     25                printf( __( 'Tag Archives: %s', 'twentyfourteen' ), single_tag_title( '', false ) );
     26                ?>
     27                </h1>
    2328
    2429                <?php
  • trunk/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php

    r45297 r45609  
    5555
    5656                        printf(
    57                             /* translators: %s: comment author link */
    5857                            wp_kses(
     58                                /* translators: %s: comment author link */
    5959                                __( '%s <span class="screen-reader-text says">says:</span>', 'twentynineteen' ),
    6060                                array(
  • trunk/src/wp-content/themes/twentynineteen/inc/back-compat.php

    r44149 r45609  
    3737 */
    3838function twentynineteen_upgrade_notice() {
     39    /* translators: %s: WordPress version */
    3940    $message = sprintf( __( 'Twenty Nineteen requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again.', 'twentynineteen' ), $GLOBALS['wp_version'] );
    4041    printf( '<div class="error"><p>%s</p></div>', $message );
     
    5152    wp_die(
    5253        sprintf(
     54            /* translators: %s: WordPress version */
    5355            __( 'Twenty Nineteen requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again.', 'twentynineteen' ),
    5456            $GLOBALS['wp_version']
     
    7173function twentynineteen_preview() {
    7274    if ( isset( $_GET['preview'] ) ) {
     75        /* translators: %s: WordPress version */
    7376        wp_die( sprintf( __( 'Twenty Nineteen requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again.', 'twentynineteen' ), $GLOBALS['wp_version'] ) );
    7477    }
  • trunk/src/wp-content/themes/twentyten/archive.php

    r44496 r45609  
    3232
    3333            <h1 class="page-title">
    34 <?php if ( is_day() ) : ?>
    35                 <?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
    36 <?php elseif ( is_month() ) : ?>
    37                 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) ); ?>
    38 <?php elseif ( is_year() ) : ?>
    39                 <?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) ); ?>
    40 <?php else : ?>
    41                 <?php _e( 'Blog Archives', 'twentyten' ); ?>
    42 <?php endif; ?>
     34            <?php
     35            if ( is_day() ) {
     36                /* translators: %s: date */
     37                printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() );
     38            } elseif ( is_month() ) {
     39                /* translators: %s: date */
     40                printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) );
     41            } elseif ( is_year() ) {
     42                /* translators: %s: date */
     43                printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) );
     44            } else {
     45                _e( 'Blog Archives', 'twentyten' );
     46            }
     47            ?>
    4348            </h1>
    4449
  • trunk/src/wp-content/themes/twentyten/author.php

    r43571 r45609  
    2727?>
    2828
    29                 <h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'twentyten' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
     29                <h1 class="page-title author">
     30                <?php
     31                /* translators: %s: author display name */
     32                printf( __( 'Author Archives: %s', 'twentyten' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' );
     33                ?>
     34                </h1>
    3035
    3136<?php
     
    4752                        </div><!-- #author-avatar -->
    4853                        <div id="author-description">
    49                             <h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
     54                            <h2>
     55                            <?php
     56                            /* translators: %s: author display name */
     57                            printf( __( 'About %s', 'twentyten' ), get_the_author() );
     58                            ?>
     59                            </h2>
    5060                            <?php the_author_meta( 'description' ); ?>
    5161                        </div><!-- #author-description  -->
  • trunk/src/wp-content/themes/twentyten/category.php

    r42343 r45609  
    1515                <h1 class="page-title">
    1616                <?php
     17                    /* translators: %s: category title */
    1718                    printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    1819                ?>
  • trunk/src/wp-content/themes/twentyten/comments.php

    r44562 r45609  
    4242                );
    4343            } else {
    44                 /* translators: %1$s: The number of comments. %2$s: The post title. */
    4544                printf(
     45                    /* translators: %1$s: The number of comments. %2$s: The post title. */
    4646                    _n( '%1$s Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
    4747                    number_format_i18n( get_comments_number() ),
  • trunk/src/wp-content/themes/twentyten/footer.php

    r43051 r45609  
    4545                ?>
    4646                <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyten' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>">
    47                     <?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?>
     47                    <?php
     48                    /* translators: %s: WordPress */
     49                    printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' );
     50                    ?>
    4851                </a>
    4952            </div><!-- #site-generator -->
  • trunk/src/wp-content/themes/twentyten/functions.php

    r45602 r45609  
    424424            <div class="comment-author vcard">
    425425                <?php echo get_avatar( $comment, 40 ); ?>
    426                 <?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
     426                <?php
     427                /* translators: %s: author display name */
     428                printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) );
     429                ?>
    427430            </div><!-- .comment-author .vcard -->
    428431                <?php if ( $comment->comment_approved == '0' ) : ?>
     
    589592    function twentyten_posted_on() {
    590593        printf(
     594            /* translators: 1: CSS classes, 2: date, 3: author display name */
    591595            __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
    592596            'meta-prep meta-prep-author',
     
    600604                '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
    601605                get_author_posts_url( get_the_author_meta( 'ID' ) ),
     606                /* translators: %s: author display name */
    602607                esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
    603608                get_the_author()
     
    617622        $tag_list = get_the_tag_list( '', ', ' );
    618623        if ( $tag_list && ! is_wp_error( $tag_list ) ) {
     624            /* translators: 1: category name, 2: tag name, 3: post permalink, 4: post title */
    619625            $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
    620626        } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
     627            /* translators: 1: category name, 3: post permalink, 4: post title */
    621628            $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
    622629        } else {
     630            /* translators: 3: post permalink, 4: post title */
    623631            $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
    624632        }
  • trunk/src/wp-content/themes/twentyten/header.php

    r45581 r45609  
    3333    // Add a page number if necessary:
    3434if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
     35    /* translators: %s: page number */
    3536    echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ) );
    3637}
  • trunk/src/wp-content/themes/twentyten/loop-attachment.php

    r45209 r45609  
    2222        ?>
    2323
    24                 <?php if ( ! empty( $post->post_parent ) ) : ?>
    25                     <p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ) ); ?>" rel="gallery">
     24                <?php
     25                if ( ! empty( $post->post_parent ) ) :
     26                    /* translators: %s: post title */
     27                    $post_tile = sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) );
     28                    ?>
     29                    <p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="gallery">
    2630                                                                <?php
    27                                                                 /* translators: %s - title of parent post */
     31                                                                /* translators: %s: title of parent post */
    2832                                                                printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
    2933                                                                ?>
     
    3741                        <?php
    3842                            printf(
     43                                /* translators: %s: author display name */
    3944                                __( '<span class="%1$s">By</span> %2$s', 'twentyten' ),
    4045                                'meta-prep meta-prep-author',
     
    4247                                    '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
    4348                                    get_author_posts_url( get_the_author_meta( 'ID' ) ),
     49                                    /* translators: %s: author display name */
    4450                                    esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
    4551                                    get_the_author()
     
    5056                            <?php
    5157                            printf(
     58                                /* translators: 1: CSS classes: 2: date */
    5259                                __( '<span class="%1$s">Published</span> %2$s', 'twentyten' ),
    5360                                'meta-prep meta-prep-entry-date',
     
    6269                                $metadata = wp_get_attachment_metadata();
    6370                                printf(
     71                                    /* translators: %s: image dimensions */
    6472                                    __( 'Full size is %s pixels', 'twentyten' ),
    6573                                    sprintf(
  • trunk/src/wp-content/themes/twentyten/loop-single.php

    r45209 r45609  
    5555                            </div><!-- #author-avatar -->
    5656                            <div id="author-description">
    57                             <h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
     57                            <h2>
     58                            <?php
     59                            /* translators: %s: author display name */
     60                            printf( __( 'About %s', 'twentyten' ), get_the_author() );
     61                            ?>
     62                            </h2>
    5863                            <?php the_author_meta( 'description' ); ?>
    5964                            <div id="author-link">
    6065                                <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
    61                                     <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentyten' ), get_the_author() ); ?>
     66                                    <?php
     67                                    /* translators: %s: author display name */
     68                                    printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentyten' ), get_the_author() );
     69                                    ?>
    6270                                </a>
    6371                            </div><!-- #author-link -->
  • trunk/src/wp-content/themes/twentyten/loop.php

    r45581 r45609  
    8787                    <?php
    8888                        printf(
     89                            /* translators: 1: HTML tag attributes, 2: image count */
    8990                            _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
     91                            /* translators: %s: post title */
    9092                            'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
    9193                            number_format_i18n( $total_images )
     
    168170                <?php if ( count( get_the_category() ) ) : ?>
    169171                    <span class="cat-links">
    170                         <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
     172                        <?php
     173                        /* translators: 1: CSS classes, 2: catgory list */
     174                        printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) );
     175                        ?>
    171176                    </span>
    172177                    <span class="meta-sep">|</span>
     
    177182                    ?>
    178183                <span class="tag-links">
    179                     <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
     184                    <?php
     185                    /* translators: 1: CSS classes, 2: catgory list */
     186                    printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
     187                    ?>
    180188                </span>
    181189                <span class="meta-sep">|</span>
  • trunk/src/wp-content/themes/twentyten/search.php

    r31266 r45609  
    1414
    1515<?php if ( have_posts() ) : ?>
    16                 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
     16                <h1 class="page-title">
     17                <?php
     18                /* translators: %s: search query */
     19                printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' );
     20                ?>
     21                </h1>
    1722                <?php
    1823                /*
  • trunk/src/wp-content/themes/twentyten/tag.php

    r42343 r45609  
    1515                <h1 class="page-title">
    1616                <?php
     17                    /* translators: %s: tag title */
    1718                    printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' );
    1819                ?>
  • trunk/src/wp-content/themes/twentythirteen/archive.php

    r44496 r45609  
    2727                <h1 class="archive-title">
    2828                <?php
    29                 if ( is_day() ) :
     29                if ( is_day() ) {
     30                    /* translators: %s: date */
    3031                    printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() );
    31                     elseif ( is_month() ) :
    32                         printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) );
    33                     elseif ( is_year() ) :
    34                         printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) );
    35                     else :
    36                         _e( 'Archives', 'twentythirteen' );
    37                     endif;
    38                     ?>
     32                } elseif ( is_month() ) {
     33                    /* translators: %s: date */
     34                    printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) );
     35                } elseif ( is_year() ) {
     36                    /* translators: %s: date */
     37                    printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) );
     38                } else {
     39                    _e( 'Archives', 'twentythirteen' );
     40                }
     41                ?>
    3942                </h1>
    4043            </header><!-- .archive-header -->
  • trunk/src/wp-content/themes/twentythirteen/author-bio.php

    r42343 r45609  
    2424    </div><!-- .author-avatar -->
    2525    <div class="author-description">
    26         <h2 class="author-title"><?php printf( __( 'About %s', 'twentythirteen' ), get_the_author() ); ?></h2>
     26        <h2 class="author-title">
     27        <?php
     28        /* translators: %s: author display name */
     29        printf( __( 'About %s', 'twentythirteen' ), get_the_author() );
     30        ?>
     31        </h2>
    2732        <p class="author-bio">
    2833            <?php the_author_meta( 'description' ); ?>
    2934            <a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
    30                 <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ), get_the_author() ); ?>
     35                <?php
     36                /* translators: %s: author display name */
     37                printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ), get_the_author() );
     38                ?>
    3139            </a>
    3240        </p>
  • trunk/src/wp-content/themes/twentythirteen/author.php

    r44496 r45609  
    2929
    3030            <header class="archive-header">
    31                 <h1 class="archive-title"><?php printf( __( 'All posts by %s', 'twentythirteen' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
     31                <h1 class="archive-title">
     32                <?php
     33                /* translators: %s: author display name */
     34                printf( __( 'All posts by %s', 'twentythirteen' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' );
     35                ?>
     36                </h1>
    3237            </header><!-- .archive-header -->
    3338
  • trunk/src/wp-content/themes/twentythirteen/category.php

    r44496 r45609  
    1717        <?php if ( have_posts() ) : ?>
    1818            <header class="archive-header">
    19                 <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) ); ?></h1>
     19                <h1 class="archive-title">
     20                <?php
     21                /* translators: category title */
     22                printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) );
     23                ?>
     24                </h1>
    2025
    2126                <?php if ( category_description() ) : // Show an optional category description ?>
  • trunk/src/wp-content/themes/twentythirteen/content-aside.php

    r43571 r45609  
    1212    <div class="entry-content">
    1313        <?php
    14             /* translators: %s: Name of current post */
    1514            the_content(
    1615                sprintf(
     16                    /* translators: %s: Name of current post */
    1717                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    1818                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content-audio.php

    r43571 r45609  
    2323        <div class="audio-content">
    2424            <?php
    25             /* translators: %s: Name of current post */
    2625            the_content(
    2726                sprintf(
     27                    /* translators: %s: Name of current post */
    2828                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    2929                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content-chat.php

    r43571 r45609  
    2222    <div class="entry-content">
    2323        <?php
    24             /* translators: %s: Name of current post */
    2524            the_content(
    2625                sprintf(
     26                    /* translators: %s: Name of current post */
    2727                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    2828                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content-gallery.php

    r43571 r45609  
    2626            the_content(
    2727                sprintf(
     28                    /* translators: post title */
    2829                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    2930                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content-image.php

    r43571 r45609  
    2222    <div class="entry-content">
    2323        <?php
    24             /* translators: %s: Name of current post */
    2524            the_content(
    2625                sprintf(
     26                    /* translators: %s: Name of current post */
    2727                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    2828                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content-link.php

    r43571 r45609  
    2323    <div class="entry-content">
    2424        <?php
    25             /* translators: %s: Name of current post */
    2625            the_content(
    2726                sprintf(
     27                    /* translators: %s: Name of current post */
    2828                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    2929                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content-none.php

    r44574 r45609  
    1616    <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
    1717
    18     <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentythirteen' ), admin_url( 'post-new.php' ) ); ?></p>
     18    <p>
     19        <?php
     20        /* translators: %s: new post URL */
     21        printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentythirteen' ), admin_url( 'post-new.php' ) );
     22        ?>
     23    </p>
    1924
    2025    <?php elseif ( is_search() ) : ?>
  • trunk/src/wp-content/themes/twentythirteen/content-quote.php

    r43571 r45609  
    1212    <div class="entry-content">
    1313        <?php
    14             /* translators: %s: Name of current post */
    1514            the_content(
    1615                sprintf(
     16                    /* translators: %s: Name of current post */
    1717                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    1818                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content-status.php

    r43571 r45609  
    1212    <div class="entry-content">
    1313        <?php
    14             /* translators: %s: Name of current post */
    1514            the_content(
    1615                sprintf(
     16                    /* translators: %s: Name of current post */
    1717                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    1818                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content-video.php

    r43571 r45609  
    2222    <div class="entry-content">
    2323        <?php
    24             /* translators: %s: Name of current post */
    2524            the_content(
    2625                sprintf(
     26                    /* translators: %s: Name of current post */
    2727                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    2828                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/content.php

    r42343 r45609  
    4040    <div class="entry-content">
    4141        <?php
    42             /* translators: %s: Name of current post */
    4342            the_content(
    4443                sprintf(
     44                    /* translators: %s: Name of current post */
    4545                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
    4646                    the_title( '<span class="screen-reader-text">', '</span>', false )
  • trunk/src/wp-content/themes/twentythirteen/footer.php

    r43051 r45609  
    2323                ?>
    2424                <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentythirteen' ) ); ?>" class="imprint">
    25                     <?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?>
     25                    <?php
     26                    /* translators: %s: WordPress */
     27                    printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' );
     28                    ?>
    2629                </a>
    2730            </div><!-- .site-info -->
  • trunk/src/wp-content/themes/twentythirteen/functions.php

    r45485 r45609  
    362362    // Add a page number if necessary.
    363363    if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
     364        /* translators: %s: page number */
    364365        $title = "$title $sep " . sprintf( __( 'Page %s', 'twentythirteen' ), max( $paged, $page ) );
    365366    }
     
    497498                '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
    498499                esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
     500                /* translators: %s: author display name */
    499501                esc_attr( sprintf( __( 'View all posts by %s', 'twentythirteen' ), get_the_author() ) ),
    500502                get_the_author()
     
    517519    function twentythirteen_entry_date( $echo = true ) {
    518520        if ( has_post_format( array( 'chat', 'status' ) ) ) {
     521            /* translators: 1: post format name, 2: date */
    519522            $format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'twentythirteen' );
    520523        } else {
     
    525528            '<span class="date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span>',
    526529            esc_url( get_permalink() ),
     530            /* translators: %s: post title */
    527531            esc_attr( sprintf( __( 'Permalink to %s', 'twentythirteen' ), the_title_attribute( 'echo=0' ) ) ),
    528532            esc_attr( get_the_date( 'c' ) ),
  • trunk/src/wp-content/themes/twentythirteen/image.php

    r44496 r45609  
    2727                <div class="entry-meta">
    2828                    <?php
    29                         $published_text = __( '<span class="attachment-meta">Published on <time class="entry-date" datetime="%1$s">%2$s</time> in <a href="%3$s" title="Return to %4$s" rel="gallery">%5$s</a></span>', 'twentythirteen' );
    30                         $post_title     = get_the_title( $post->post_parent );
     29                    /* translators: 1: date, 2: date, 3, parent permalink, 4, post title, 5: post title */
     30                    $published_text = __( '<span class="attachment-meta">Published on <time class="entry-date" datetime="%1$s">%2$s</time> in <a href="%3$s" title="Return to %4$s" rel="gallery">%5$s</a></span>', 'twentythirteen' );
     31                    $post_title     = get_the_title( $post->post_parent );
    3132                    if ( empty( $post_title ) || 0 == $post->post_parent ) {
    3233                        $published_text = '<span class="attachment-meta"><time class="entry-date" datetime="%1$s">%2$s</time></span>';
  • trunk/src/wp-content/themes/twentythirteen/inc/back-compat.php

    r43571 r45609  
    3535 */
    3636function twentythirteen_upgrade_notice() {
     37    /* translators: %s: WordPress version */
    3738    $message = sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] );
    3839    printf( '<div class="error"><p>%s</p></div>', $message );
     
    4647function twentythirteen_customize() {
    4748    wp_die(
     49        /* translators: %s: WordPress version */
    4850        sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ),
    4951        '',
     
    6264function twentythirteen_preview() {
    6365    if ( isset( $_GET['preview'] ) ) {
     66        /* translators: %s: WordPress version */
    6467        wp_die( sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ) );
    6568    }
  • trunk/src/wp-content/themes/twentythirteen/search.php

    r43571 r45609  
    1616
    1717            <header class="page-header">
    18                 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentythirteen' ), get_search_query() ); ?></h1>
     18                <h1 class="page-title">
     19                <?php
     20                /* translators: %s: search query */
     21                printf( __( 'Search Results for: %s', 'twentythirteen' ), get_search_query() );
     22                ?>
     23                </h1>
    1924            </header>
    2025
  • trunk/src/wp-content/themes/twentythirteen/tag.php

    r44496 r45609  
    1919        <?php if ( have_posts() ) : ?>
    2020            <header class="archive-header">
    21                 <h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentythirteen' ), single_tag_title( '', false ) ); ?></h1>
     21                <h1 class="archive-title">
     22                <?php
     23                /* translators: tag title */
     24                printf( __( 'Tag Archives: %s', 'twentythirteen' ), single_tag_title( '', false ) );
     25                ?>
     26                </h1>
    2227
    2328                <?php if ( tag_description() ) : // Show an optional tag description ?>
  • trunk/src/wp-content/themes/twentythirteen/taxonomy-post_format.php

    r44496 r45609  
    2121        <?php if ( have_posts() ) : ?>
    2222            <header class="archive-header">
    23                 <h1 class="archive-title"><?php printf( __( '%s Archives', 'twentythirteen' ), '<span>' . esc_html( get_post_format_string( get_post_format() ) ) . '</span>' ); ?></h1>
     23                <h1 class="archive-title">
     24                <?php
     25                /* translators: %s: post format name */
     26                printf( __( '%s Archives', 'twentythirteen' ), '<span>' . esc_html( get_post_format_string( get_post_format() ) ) . '</span>' );
     27                ?>
     28                </h1>
    2429            </header><!-- .archive-header -->
    2530
  • trunk/src/wp-content/themes/twentytwelve/archive.php

    r44496 r45609  
    2727                <h1 class="archive-title">
    2828                <?php
    29                 if ( is_day() ) :
     29                if ( is_day() ) {
     30                    /* translators: %s: date */
    3031                    printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
    31                     elseif ( is_month() ) :
    32                         printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' );
    33                     elseif ( is_year() ) :
    34                         printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '</span>' );
    35                     else :
    36                         _e( 'Archives', 'twentytwelve' );
    37                     endif;
    38                     ?>
     32                } elseif ( is_month() ) {
     33                    /* translators: %s: date */
     34                    printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' );
     35                } elseif ( is_year() ) {
     36                    /* translators: %s: date */
     37                    printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '</span>' );
     38                } else {
     39                    _e( 'Archives', 'twentytwelve' );
     40                }
     41                ?>
    3942                </h1>
    4043            </header><!-- .archive-header -->
  • trunk/src/wp-content/themes/twentytwelve/author.php

    r44496 r45609  
    3030
    3131            <header class="archive-header">
    32                 <h1 class="archive-title"><?php printf( __( 'Author Archives: %s', 'twentytwelve' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
     32                <h1 class="archive-title">
     33                <?php
     34                /* translators: author display name */
     35                printf( __( 'Author Archives: %s', 'twentytwelve' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' );
     36                ?>
     37                </h1>
    3338            </header><!-- .archive-header -->
    3439
     
    6267                </div><!-- .author-avatar -->
    6368                <div class="author-description">
    64                     <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
     69                    <h2>
     70                    <?php
     71                    /* translators: author display name */
     72                    printf( __( 'About %s', 'twentytwelve' ), get_the_author() );
     73                    ?>
     74                    </h2>
    6575                    <p><?php the_author_meta( 'description' ); ?></p>
    6676                </div><!-- .author-description  -->
  • trunk/src/wp-content/themes/twentytwelve/category.php

    r44496 r45609  
    1919        <?php if ( have_posts() ) : ?>
    2020            <header class="archive-header">
    21                 <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?></h1>
     21                <h1 class="archive-title">
     22                <?php
     23                /* translators: %s: category title */
     24                printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' );
     25                ?>
     26                </h1>
    2227
    2328            <?php if ( category_description() ) : // Show an optional category description ?>
  • trunk/src/wp-content/themes/twentytwelve/content-aside.php

    r24131 r45609  
    77 * @since Twenty Twelve 1.0
    88 */
     9
     10/* translators: %s: post title */
     11$post_title = sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) );
    912?>
    1013
     
    1821
    1922        <footer class="entry-meta">
    20             <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
     23            <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
    2124            <?php if ( comments_open() ) : ?>
    2225            <div class="comments-link">
  • trunk/src/wp-content/themes/twentytwelve/content-link.php

    r22318 r45609  
    77 * @since Twenty Twelve 1.0
    88 */
     9
     10/* translators: %s: post title */
     11$post_title = sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) );
    912?>
    1013
     
    1619
    1720        <footer class="entry-meta">
    18             <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
     21            <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
    1922            <?php if ( comments_open() ) : ?>
    2023            <div class="comments-link">
  • trunk/src/wp-content/themes/twentytwelve/content-quote.php

    r22318 r45609  
    77 * @since Twenty Twelve 1.0
    88 */
     9
     10/* translators: %s: post title */
     11$post_title = sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) );
    912?>
    1013
     
    1518
    1619        <footer class="entry-meta">
    17             <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
     20            <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
    1821            <?php if ( comments_open() ) : ?>
    1922            <div class="comments-link">
  • trunk/src/wp-content/themes/twentytwelve/content-status.php

    r25521 r45609  
    77 * @since Twenty Twelve 1.0
    88 */
     9
     10/* translators: %s: post title */
     11$post_title = sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) );
    912?>
    1013
     
    1316            <header>
    1417                <h1><?php the_author(); ?></h1>
    15                 <h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a></h2>
     18                <h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a></h2>
    1619            </header>
    1720            <?php
  • trunk/src/wp-content/themes/twentytwelve/content.php

    r43571 r45609  
    6969                    </div><!-- .author-avatar -->
    7070                    <div class="author-description">
    71                         <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
     71                        <h2>
     72                        <?php
     73                        /* translators: %s: author display name */
     74                        printf( __( 'About %s', 'twentytwelve' ), get_the_author() );
     75                        ?>
     76                        </h2>
    7277                        <p><?php the_author_meta( 'description' ); ?></p>
    7378                        <div class="author-link">
    7479                            <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
    75                                 <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentytwelve' ), get_the_author() ); ?>
     80                                <?php
     81                                /* translators: %s: author display name */
     82                                printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentytwelve' ), get_the_author() );
     83                                ?>
    7684                            </a>
    7785                        </div><!-- .author-link -->
  • trunk/src/wp-content/themes/twentytwelve/footer.php

    r43051 r45609  
    2020            ?>
    2121            <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwelve' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>">
    22                 <?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?>
     22                <?php
     23                /* translators: %s: WordPress */
     24                printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' );
     25                ?>
    2326            </a>
    2427        </div><!-- .site-info -->
  • trunk/src/wp-content/themes/twentytwelve/functions.php

    r45525 r45609  
    309309    // Add a page number if necessary.
    310310    if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
     311        /* translators: %s: page number */
    311312        $title = "$title $sep " . sprintf( __( 'Page %s', 'twentytwelve' ), max( $paged, $page ) );
    312313    }
     
    503504            '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
    504505            esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
     506            /* translators: %s: author display name */
    505507            esc_attr( sprintf( __( 'View all posts by %s', 'twentytwelve' ), get_the_author() ) ),
    506508            get_the_author()
    507509        );
    508510
    509         // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
    510511        if ( $tag_list ) {
     512            /* translators: 1: category name, 2: tag name, 3: date, 4: author display name */
    511513            $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
    512514        } elseif ( $categories_list ) {
     515            /* translators: 1: category name, 3: date, 4: author display name */
    513516            $utility_text = __( 'This entry was posted in %1$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
    514517        } else {
     518            /* translators: 3: date, 4: author display name */
    515519            $utility_text = __( 'This entry was posted on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
    516520        }
  • trunk/src/wp-content/themes/twentytwelve/image.php

    r44496 r45609  
    2828                                $metadata = wp_get_attachment_metadata();
    2929                                printf(
     30                                    /* translators: 1: date, 2: date, 3: attachment URL, 4: image width in pixels, 5: image height in pixels, 6: post parent permalink, 7: post parent title, 8: post parent title */
    3031                                    __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s &times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ),
    3132                                    esc_attr( get_the_date( 'c' ) ),
  • trunk/src/wp-content/themes/twentytwelve/index.php

    r44496 r45609  
    4444
    4545                <div class="entry-content">
    46                     <p><?php printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) ); ?></p>
     46                    <p>
     47                    <?php
     48                    /* translators: %s: post editor URL */
     49                    printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) );
     50                    ?>
     51                    </p>
    4752                </div><!-- .entry-content -->
    4853
  • trunk/src/wp-content/themes/twentytwelve/search.php

    r43571 r45609  
    1616
    1717            <header class="page-header">
    18                 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
     18                <h1 class="page-title">
     19                <?php
     20                /* translators: %s: search query */
     21                printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' );
     22                ?>
     23                </h1>
    1924            </header>
    2025
  • trunk/src/wp-content/themes/twentytwelve/tag.php

    r44496 r45609  
    1919        <?php if ( have_posts() ) : ?>
    2020            <header class="archive-header">
    21                 <h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentytwelve' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1>
     21                <h1 class="archive-title">
     22                <?php
     23                /* translators: %s: tag title */
     24                printf( __( 'Tag Archives: %s', 'twentytwelve' ), '<span>' . single_tag_title( '', false ) . '</span>' );
     25                ?>
     26                </h1>
    2227
    2328            <?php if ( tag_description() ) : // Show an optional tag description ?>
Note: See TracChangeset for help on using the changeset viewer.