Ticket #40733: 40733.2.diff
File 40733.2.diff, 4.0 KB (added by , 6 years ago) |
---|
-
src/wp-admin/css/dashboard.css
440 440 color: #ddd; 441 441 } 442 442 443 /* Safari 10 + VoiceOver specific: without this, the hidden text gets read out before the link. */ 444 .community-events-footer .screen-reader-text { 445 height: inherit; 446 white-space: nowrap; 447 } 448 443 449 /* Dashboard WordPress news */ 444 450 445 451 #dashboard_primary .inside { -
src/wp-admin/includes/dashboard.php
1125 1125 </div> 1126 1126 1127 1127 <p class="community-events-footer"> 1128 <a href="https://make.wordpress.org/community/meetups-landing-page" target="_blank"> 1129 <?php _e( 'Meetups' ); ?> <span class="dashicons dashicons-external"></span> 1130 </a> 1128 <?php 1129 printf( 1130 '<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', 1131 'https://make.wordpress.org/community/meetups-landing-page', 1132 __( 'Meetups' ), 1133 /* translators: accessibility text */ 1134 __( '(opens in a new window)' ) 1135 ); 1136 ?> 1131 1137 1132 1138 | 1133 1139 1134 <a href="https://central.wordcamp.org/schedule/" target="_blank"> 1135 <?php _e( 'WordCamps' ); ?> <span class="dashicons dashicons-external"></span> 1136 </a> 1140 <?php 1141 printf( 1142 '<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', 1143 'https://central.wordcamp.org/schedule/', 1144 __( 'WordCamps' ), 1145 /* translators: accessibility text */ 1146 __( '(opens in a new window)' ) 1147 ); 1148 ?> 1137 1149 1138 1150 | 1139 1151 1140 <?php // translators: If a Rosetta site exists (e.g. https://es.wordpress.org/news/), then use that. Otherwise, leave untranslated. ?> 1141 <a href="<?php _e( 'https://wordpress.org/news/' ); ?>" target="_blank"> 1142 <?php _e( 'News' ); ?> <span class="dashicons dashicons-external"></span> 1143 </a> 1152 <?php 1153 printf( 1154 '<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', 1155 /* translators: If a Rosetta site exists (e.g. https://es.wordpress.org/news/), then use that. Otherwise, leave untranslated. */ 1156 esc_attr__( 'https://wordpress.org/news/' ), 1157 __( 'News' ), 1158 /* translators: accessibility text */ 1159 __( '(opens in a new window)' ) 1160 ); 1161 ?> 1144 1162 </p> 1145 1163 1146 1164 <?php -
src/wp-admin/includes/meta-boxes.php
58 58 $preview_button = sprintf( '%1$s<span class="screen-reader-text"> %2$s</span>', 59 59 $preview_button_text, 60 60 /* translators: accessibility text */ 61 __( '( linkopens in a new window)' )61 __( '(opens in a new window)' ) 62 62 ); 63 63 ?> 64 64 <a class="preview button" href="<?php echo $preview_link; ?>" target="wp-preview-<?php echo (int) $post->ID; ?>" id="post-preview"><?php echo $preview_button; ?></a> -
src/wp-includes/class-wp-customize-manager.php
4144 4144 __( 'CSS allows you to customize the appearance and layout of your site with code. Separate CSS is saved for each of your themes. In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key.' ), 4145 4145 esc_url( __( 'https://codex.wordpress.org/CSS' ) ), 4146 4146 __( 'Learn more about CSS' ), 4147 __( '(link opens in a new window)' ) 4147 /* translators: accessibility text */ 4148 __( '(opens in a new window)' ) 4148 4149 ), 4149 4150 ) ); 4150 4151