- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/functions.php
r45768 r45932 220 220 $fonts_url = ''; 221 221 222 /* Translators: If there are characters in your language that are not223 * supported by Source Sans Pro, translate this to 'off'. Do not translate224 * into your own language.222 /* 223 * translators: If there are characters in your language that are not supported 224 * by Source Sans Pro, translate this to 'off'. Do not translate into your own language. 225 225 */ 226 226 $source_sans_pro = _x( 'on', 'Source Sans Pro font: on or off', 'twentythirteen' ); 227 227 228 /* Translators: If there are characters in your language that are not229 * supported by Bitter, translate this to 'off'. Do not translate into your230 * own language.228 /* 229 * translators: If there are characters in your language that are not supported 230 * by Bitter, translate this to 'off'. Do not translate into your own language. 231 231 */ 232 232 $bitter = _x( 'on', 'Bitter font: on or off', 'twentythirteen' ); … … 362 362 // Add a page number if necessary. 363 363 if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { 364 /* translators: %s: page number*/364 /* translators: %s: Page number. */ 365 365 $title = "$title $sep " . sprintf( __( 'Page %s', 'twentythirteen' ), max( $paged, $page ) ); 366 366 } … … 481 481 } 482 482 483 / / Translators: used between list items, there is a space after the comma.483 /* translators: Used between list items, there is a space after the comma. */ 484 484 $categories_list = get_the_category_list( __( ', ', 'twentythirteen' ) ); 485 485 if ( $categories_list ) { … … 487 487 } 488 488 489 / / Translators: used between list items, there is a space after the comma.489 /* translators: Used between list items, there is a space after the comma. */ 490 490 $tag_list = get_the_tag_list( '', __( ', ', 'twentythirteen' ) ); 491 491 if ( $tag_list ) { … … 498 498 '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', 499 499 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 500 /* translators: %s: author display name*/500 /* translators: %s: Author display name. */ 501 501 esc_attr( sprintf( __( 'View all posts by %s', 'twentythirteen' ), get_the_author() ) ), 502 502 get_the_author() … … 519 519 function twentythirteen_entry_date( $echo = true ) { 520 520 if ( has_post_format( array( 'chat', 'status' ) ) ) { 521 /* translators: 1: post format name, 2: date*/521 /* translators: 1: Post format name, 2: Date. */ 522 522 $format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'twentythirteen' ); 523 523 } else { … … 528 528 '<span class="date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span>', 529 529 esc_url( get_permalink() ), 530 /* translators: %s: post title*/530 /* translators: %s: Post title. */ 531 531 esc_attr( sprintf( __( 'Permalink to %s', 'twentythirteen' ), the_title_attribute( 'echo=0' ) ) ), 532 532 esc_attr( get_the_date( 'c' ) ), … … 642 642 '<a href="%1$s" class="more-link">%2$s</a>', 643 643 esc_url( get_permalink( get_the_ID() ) ), 644 /* translators: %s: Name of current post*/644 /* translators: %s: Post title. */ 645 645 sprintf( __( 'Continue reading %s <span class="meta-nav">→</span>', 'twentythirteen' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>' ) 646 646 );
Note: See TracChangeset
for help on using the changeset viewer.