Changeset 45932 for trunk/src/wp-content/themes/twentyeleven/functions.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/functions.php
r45767 r45932 235 235 'url' => '%s/images/headers/wheel.jpg', 236 236 'thumbnail_url' => '%s/images/headers/wheel-thumbnail.jpg', 237 /* translators: header image description*/237 /* translators: Header image description. */ 238 238 'description' => __( 'Wheel', 'twentyeleven' ), 239 239 ), … … 241 241 'url' => '%s/images/headers/shore.jpg', 242 242 'thumbnail_url' => '%s/images/headers/shore-thumbnail.jpg', 243 /* translators: header image description*/243 /* translators: Header image description. */ 244 244 'description' => __( 'Shore', 'twentyeleven' ), 245 245 ), … … 247 247 'url' => '%s/images/headers/trolley.jpg', 248 248 'thumbnail_url' => '%s/images/headers/trolley-thumbnail.jpg', 249 /* translators: header image description*/249 /* translators: Header image description. */ 250 250 'description' => __( 'Trolley', 'twentyeleven' ), 251 251 ), … … 253 253 'url' => '%s/images/headers/pine-cone.jpg', 254 254 'thumbnail_url' => '%s/images/headers/pine-cone-thumbnail.jpg', 255 /* translators: header image description*/255 /* translators: Header image description. */ 256 256 'description' => __( 'Pine Cone', 'twentyeleven' ), 257 257 ), … … 259 259 'url' => '%s/images/headers/chessboard.jpg', 260 260 'thumbnail_url' => '%s/images/headers/chessboard-thumbnail.jpg', 261 /* translators: header image description*/261 /* translators: Header image description. */ 262 262 'description' => __( 'Chessboard', 'twentyeleven' ), 263 263 ), … … 265 265 'url' => '%s/images/headers/lanterns.jpg', 266 266 'thumbnail_url' => '%s/images/headers/lanterns-thumbnail.jpg', 267 /* translators: header image description*/267 /* translators: Header image description. */ 268 268 'description' => __( 'Lanterns', 'twentyeleven' ), 269 269 ), … … 271 271 'url' => '%s/images/headers/willow.jpg', 272 272 'thumbnail_url' => '%s/images/headers/willow-thumbnail.jpg', 273 /* translators: header image description*/273 /* translators: Header image description. */ 274 274 'description' => __( 'Willow', 'twentyeleven' ), 275 275 ), … … 277 277 'url' => '%s/images/headers/hanoi.jpg', 278 278 'thumbnail_url' => '%s/images/headers/hanoi-thumbnail.jpg', 279 /* translators: header image description*/279 /* translators: Header image description. */ 280 280 'description' => __( 'Hanoi Plant', 'twentyeleven' ), 281 281 ), … … 728 728 729 729 printf( 730 /* translators: 1: comment author, 2: date and time*/730 /* translators: 1: Comment author, 2: Date and time. */ 731 731 __( '%1$s on %2$s <span class="says">said:</span>', 'twentyeleven' ), 732 732 sprintf( '<span class="fn">%s</span>', get_comment_author_link() ), … … 735 735 esc_url( get_comment_link( $comment->comment_ID ) ), 736 736 get_comment_time( 'c' ), 737 /* translators: 1: date, 2: time*/737 /* translators: 1: Date, 2: Time. */ 738 738 sprintf( __( '%1$s at %2$s', 'twentyeleven' ), get_comment_date(), get_comment_time() ) 739 739 ) … … 785 785 function twentyeleven_posted_on() { 786 786 printf( 787 /* translators: 1: The permalink, 2: time, 3: date and time, 4: date and time, 5: Author posts, 6: Author post link text, 7: Author display name*/787 /* translators: 1: The permalink, 2: Time, 3: Date and time, 4: Date and time, 5: Author posts, 6: Author post link text, 7: Author display name. */ 788 788 __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'twentyeleven' ), 789 789 esc_url( get_permalink() ), … … 792 792 esc_html( get_the_date() ), 793 793 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 794 /* translators: %s: Author display name */794 /* translators: %s: Author display name. */ 795 795 esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ), 796 796 get_the_author()
Note: See TracChangeset
for help on using the changeset viewer.