Ticket #26496: 26496.diff
File 26496.diff, 1.4 KB (added by , 12 years ago) |
---|
-
wp-admin/css/wp-admin.css
6682 6682 font-size: 16px; 6683 6683 font-weight: 300; 6684 6684 line-height: 1.5; 6685 width: 280px; 6685 6686 } 6686 6687 6687 6688 /** -
wp-admin/js/theme.js
70 70 71 71 // Render and append after screen title 72 72 view.render(); 73 $('#wpbody h2:first').append( view.el ); 73 $('#wpbody h2:first') 74 .append( $.parseHTML( '<label class="screen-reader-text" for="theme-search-input">' + l10n.searchLabel + '</label>' ) ) 75 .append( view.el ); 74 76 }, 75 77 76 78 // Checks when the user gets close to the bottom … … 593 595 className: 'theme-search', 594 596 595 597 attributes: { 596 placeholder: l10n.search ,598 placeholder: l10n.searchPlaceholder, 597 599 type: 'search' 598 600 }, 599 601 -
wp-admin/themes.php
106 106 ), 107 107 'l10n' => array( 108 108 'addNew' => __( 'Add New Theme' ), 109 'search' => __( 'Search...' ), 109 'searchLabel' => __( 'Search Installed Themes:' ), 110 'searchPlaceholder' => __( 'Search installed themes...' ), 110 111 ), 111 112 ) ); 112 113