Changeset 50234
- Timestamp:
- 02/07/2021 12:42:06 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/erase-personal-data.php
r50181 r50234 42 42 43 43 $privacy_policy_guide = '<p>' . sprintf( 44 /* translators: 1: URL to Privacy Policy Guide screen. */45 __( 'If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the <a href="% 1$s">Privacy Policy Guide</a>.' ),44 /* translators: %s: URL to Privacy Policy Guide screen. */ 45 __( 'If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the <a href="%s">Privacy Policy Guide</a>.' ), 46 46 admin_url( 'options-privacy.php?tab=policyguide' ) 47 47 ) . '</p>'; -
trunk/src/wp-admin/export-personal-data.php
r50181 r50234 42 42 43 43 $privacy_policy_guide = '<p>' . sprintf( 44 /* translators: 1: URL to Privacy Policy Guide screen. */45 __( 'If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the <a href="% 1$s">Privacy Policy Guide</a>.' ),44 /* translators: %s: URL to Privacy Policy Guide screen. */ 45 __( 'If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the <a href="%s">Privacy Policy Guide</a>.' ), 46 46 admin_url( 'options-privacy.php?tab=policyguide' ) 47 47 ) . '</p>'; -
trunk/src/wp-admin/includes/ajax-actions.php
r50153 r50234 5430 5430 if ( true === $results ) { 5431 5431 wp_send_json_success( 5432 /* translators: 1: User's display name. */5432 /* translators: %s: User's display name. */ 5433 5433 sprintf( __( 'A password reset link was emailed to %s.' ), $user->display_name ) 5434 5434 ); -
trunk/src/wp-admin/includes/dashboard.php
r50133 r50234 1404 1404 <?php 1405 1405 printf( 1406 /* translators: 1: Localized meetup organization documentation URL. */1407 __( 'Want more events? <a href="% 1$s">Help organize the next one</a>!' ),1406 /* translators: %s: Localized meetup organization documentation URL. */ 1407 __( 'Want more events? <a href="%s">Help organize the next one</a>!' ), 1408 1408 __( 'https://make.wordpress.org/community/organize-event-landing-page/' ) 1409 1409 ); -
trunk/src/wp-admin/user-edit.php
r50129 r50234 624 624 <p class="description"> 625 625 <?php 626 /* translators: 1: User's display name. */626 /* translators: %s: User's display name. */ 627 627 printf( __( 'Send %s a link to reset their password. This will not change their password, nor will it force a change.' ), esc_html( $profileuser->display_name ) ); 628 628 ?> -
trunk/src/wp-content/themes/twentynineteen/template-parts/content/content-none.php
r46827 r50234 23 23 printf( 24 24 '<p>' . wp_kses( 25 /* translators: 1: Link to WP admin new post page. */26 __( 'Ready to publish your first post? <a href="% 1$s">Get started here</a>.', 'twentynineteen' ),25 /* translators: %s: Link to WP admin new post page. */ 26 __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentynineteen' ), 27 27 array( 28 28 'a' => array( -
trunk/src/wp-content/themes/twentytwentyone/template-parts/content/content-none.php
r50233 r50234 40 40 printf( 41 41 '<p>' . wp_kses( 42 /* translators: 1: Link to WP admin new post page. */43 __( 'Ready to publish your first post? <a href="% 1$s">Get started here</a>.', 'twentytwentyone' ),42 /* translators: %s: Link to WP admin new post page. */ 43 __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwentyone' ), 44 44 array( 45 45 'a' => array( -
trunk/src/wp-content/themes/twentytwentyone/template-parts/post/author-bio.php
r49826 r50234 13 13 <?php echo get_avatar( get_the_author_meta( 'ID' ), '85' ); ?> 14 14 <div class="author-bio-content"> 15 <h2 class="author-title"><?php printf( /* translators: 1: Author name. */ esc_html__( 'By %s', 'twentytwentyone' ), get_the_author() ); ?></h2> 15 <h2 class="author-title"> 16 <?php 17 printf( 18 /* translators: %s: Author name. */ 19 esc_html__( 'By %s', 'twentytwentyone' ), 20 get_the_author() 21 ); 22 ?> 23 </h2> 16 24 <p class="author-description"> <?php the_author_meta( 'description' ); ?></p><!-- .author-description --> 17 25 <?php 18 26 printf( 19 /* translators: 1: Link to authors posts. 2: Author name. */ 20 '<a class="author-link" href="%1$s" rel="author">' . esc_html__( 'View all of %2$s\'s posts.', 'twentytwentyone' ) . '</a>', 27 '<a class="author-link" href="%1$s" rel="author">%2$s</a>', 21 28 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 22 get_the_author() 29 sprintf( 30 /* translators: %s: Author name. */ 31 esc_html__( 'View all of %s\'s posts.', 'twentytwentyone' ), 32 get_the_author() 33 ) 23 34 ); 24 35 ?> -
trunk/src/wp-includes/class-wp-block-pattern-categories-registry.php
r49311 r50234 61 61 public function unregister( $category_name ) { 62 62 if ( ! $this->is_registered( $category_name ) ) { 63 /* translators: 1: Block pattern name. */64 $message = sprintf( __( 'Block pattern category "% 1$s" not found.' ), $category_name );63 /* translators: %s: Block pattern name. */ 64 $message = sprintf( __( 'Block pattern category "%s" not found.' ), $category_name ); 65 65 _doing_it_wrong( __METHOD__, $message, '5.5.0' ); 66 66 return false; -
trunk/src/wp-includes/class-wp-block-patterns-registry.php
r49311 r50234 74 74 public function unregister( $pattern_name ) { 75 75 if ( ! $this->is_registered( $pattern_name ) ) { 76 /* translators: 1: Pattern name. */77 $message = sprintf( __( 'Pattern "% 1$s" not found.' ), $pattern_name );76 /* translators: %s: Pattern name. */ 77 $message = sprintf( __( 'Pattern "%s" not found.' ), $pattern_name ); 78 78 _doing_it_wrong( __METHOD__, $message, '5.5.0' ); 79 79 return false; -
trunk/src/wp-includes/rest-api.php
r50150 r50234 1786 1786 } 1787 1787 1788 /* translators: 1: Parameter. */1789 return new WP_Error( 'rest_no_matching_schema', sprintf( __( '% 1$s does not match any of the expected formats.' ), $param ) );1788 /* translators: %s: Parameter. */ 1789 return new WP_Error( 'rest_no_matching_schema', sprintf( __( '%s does not match any of the expected formats.' ), $param ) ); 1790 1790 } 1791 1791 … … 1890 1890 return new WP_Error( 1891 1891 'rest_one_of_multiple_matches', 1892 /* translators: 1: Parameter. */1893 sprintf( __( '% 1$s matches more than one of the expected formats.' ), $param ),1892 /* translators: %s: Parameter. */ 1893 sprintf( __( '%s matches more than one of the expected formats.' ), $param ), 1894 1894 array( 'positions' => $schema_positions ) 1895 1895 ); … … 2381 2381 2382 2382 if ( ! empty( $args['uniqueItems'] ) && ! rest_validate_array_contains_unique_items( $value ) ) { 2383 /* translators: 1: Parameter. */2384 return new WP_Error( 'rest_duplicate_items', sprintf( __( '% 1$s has duplicate items.' ), $param ) );2383 /* translators: %s: Parameter. */ 2384 return new WP_Error( 'rest_duplicate_items', sprintf( __( '%s has duplicate items.' ), $param ) ); 2385 2385 } 2386 2386 … … 2683 2683 2684 2684 if ( ! empty( $args['uniqueItems'] ) && ! rest_validate_array_contains_unique_items( $value ) ) { 2685 /* translators: 1: Parameter. */2686 return new WP_Error( 'rest_duplicate_items', sprintf( __( '% 1$s has duplicate items.' ), $param ) );2685 /* translators: %s: Parameter. */ 2686 return new WP_Error( 'rest_duplicate_items', sprintf( __( '%s has duplicate items.' ), $param ) ); 2687 2687 } 2688 2688
Note: See TracChangeset
for help on using the changeset viewer.