Changeset 41639
- Timestamp:
- 09/29/2017 11:09:13 AM (7 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r41626 r41639 4615 4615 $section_description .= __( 'Add your own CSS code here to customize the appearance and layout of your site.' ); 4616 4616 $section_description .= sprintf( 4617 ' <a href="%1$s" class="external-link" target="_blank">%2$s<span class="screen-reader-text"> %3$s</span></a>',4617 ' <a href="%1$s" class="external-link" target="_blank">%2$s<span class="screen-reader-text"> %3$s</span></a>', 4618 4618 esc_url( __( 'https://codex.wordpress.org/CSS' ) ), 4619 4619 __( 'Learn more about CSS' ), … … 4633 4633 $section_description .= '<p>'; 4634 4634 $section_description .= sprintf( 4635 /* translators: placeholder is link to user profile */ 4636 __( 'The edit field automatically highlights code syntax. You can disable this in your %s to work in plain text mode.' ), 4637 sprintf( 4638 ' <a href="%1$s" class="external-link" target="_blank">%2$s<span class="screen-reader-text">%3$s</span></a>', 4639 esc_url( get_edit_profile_url() ), 4640 __( 'user profile' ), 4635 /* translators: 1: link to user profile, 2: additional link attributes, 3: accessibility text */ 4636 __( 'The edit field automatically highlights code syntax. You can disable this in your <a href="%1$s" %2$s>user profile%3$s</a> to work in plain text mode.' ), 4637 esc_url( get_edit_profile_url() ), 4638 'class="external-link" target="_blank"', 4639 sprintf( '<span class="screen-reader-text"> %s</span>', 4641 4640 /* translators: accessibility text */ 4642 4641 __( '(opens in a new window)' ) -
trunk/src/wp-includes/widgets/class-wp-widget-custom-html.php
r41586 r41639 258 258 $content .= '<p>'; 259 259 $content .= sprintf( 260 /* translators: placeholder is link to user profile */ 261 __( 'The edit field automatically highlights code syntax. You can disable this in your %s to work in plain text mode.' ), 262 sprintf( 263 ' <a href="%1$s" class="external-link" target="_blank">%2$s<span class="screen-reader-text">%3$s</span></a>', 264 esc_url( get_edit_profile_url() ), 265 __( 'user profile' ), 260 /* translators: 1: link to user profile, 2: additional link attributes, 3: accessibility text */ 261 __( 'The edit field automatically highlights code syntax. You can disable this in your <a href="%1$s" %2$s>user profile%3$s</a> to work in plain text mode.' ), 262 esc_url( get_edit_profile_url() ), 263 'class="external-link" target="_blank"', 264 sprintf( '<span class="screen-reader-text"> %s</span>', 266 265 /* translators: accessibility text */ 267 266 __( '(opens in a new window)' )
Note: See TracChangeset
for help on using the changeset viewer.