Ticket #19346: 19346.patch
| File 19346.patch, 4.1 KB (added by , 14 years ago) |
|---|
-
wp-admin/css/wp-admin.dev.css
4866 4866 min-height: 60px; 4867 4867 font-size: 24px; 4868 4868 } 4869 4870 .about-wrap h2 { 4871 font-size: 32px; 4872 } 4873 4869 4874 .about-wrap h3 { 4870 4875 font-size: 24px; 4871 4876 margin-bottom: 1em; 4872 4877 padding-top: 20px; 4878 } 4879 4880 .about-wrap .changelog.point-release { 4881 padding: 20px 0; 4873 4882 } 4874 4875 4883 .about-wrap .changelog { 4876 4884 padding-bottom: 10px; 4877 4885 overflow: hidden; … … 4880 4888 list-style-type: disc; 4881 4889 margin-left: 3em; 4882 4890 } 4891 4892 .about-wrap .changelog.point-release h3 { 4893 padding-top: 10px; 4894 } 4895 .about-wrap .changelog.point-release .feature { 4896 margin-bottom: 10px; 4897 } 4898 4883 4899 .about-wrap .feature-section h4 { 4884 4900 margin-bottom: 0.6em; 4885 4901 } -
wp-admin/css/colors-classic.dev.css
2168 2168 color: #464646; 2169 2169 } 2170 2170 2171 .about-wrap .changelog.point-release { 2172 border-bottom: 1px #dfdfdf solid; 2173 } 2174 2171 2175 .about-wrap .feature-section img, 2172 2176 .about-wrap .feature-section .image-mask { 2173 2177 background: #fff; -
wp-admin/css/colors-fresh.dev.css
1795 1795 color: #464646; 1796 1796 } 1797 1797 1798 .about-wrap .changelog.point-release { 1799 border-bottom: 1px #dfdfdf solid; 1800 } 1801 1798 1802 .about-wrap .feature-section img, 1799 1803 .about-wrap .feature-section .image-mask { 1800 1804 background: #fff; -
wp-admin/about.php
25 25 26 26 <h2 class="nav-tab-wrapper"> 27 27 <a href="about.php" class="nav-tab nav-tab-active"> 28 <?php printf( __( 'What’s New in %s' ), $display_version); ?>28 <?php _e( 'What’s New'); ?> 29 29 </a><a href="credits.php" class="nav-tab"> 30 30 <?php _e( 'Credits' ); ?> 31 31 </a><a href="freedoms.php" class="nav-tab"> … … 33 33 </a> 34 34 </h2> 35 35 36 <div class="changelog point-release"> 37 <h2><?php _e( 'In 3.3.1' ); ?></h2> 38 39 <div class="feature"> 40 <h3><?php _e( 'Security' ); ?></h3> 41 <p><?php _e( 'WordPress 3.1.1 addresses some security issues.' ); ?></p> 42 </div> 43 44 <div class="feature"> 45 <h3><?php _e( 'Bugfixes' ); ?></h3> 46 <p><?php _e( 'WordPress 3.1.1 is a maintenance release that contains more than 50 bug fixes.' ); ?></p> 47 </div> 48 49 <p><?php _e( 'For more information, see <a href="#">the release post</a>.' ); ?></p> 50 </div> 51 36 52 <div class="changelog"> 37 53 <h3><?php _e( 'Easier Uploading' ); ?></h3> 38 54 … … 118 134 </div> 119 135 <div class="last-feature"> 120 136 <h4><?php _e( 'Widget Improvements' ); ?></h4> 121 <p><?php _e( 'Changing themes often requires widget re-configuration based on the number and position of sidebars. Now if you change back to a previous theme within a week, the widgets will automatically go back to how you had them arranged in that theme. <em>Note: if you’ve added new widgets since the switch, you’ll need to rescue them from the Inactive Widgets area.</em>' ); ?></p>137 <p><?php _e( 'Changing themes often requires widget re-configuration based on the number and position of sidebars. Now if you change back to a previous theme, the widgets will automatically go back to how you had them arranged in that theme. <em>Note: if you’ve added new widgets since the switch, you’ll need to rescue them from the Inactive Widgets area.</em>' ); ?></p> 122 138 </div> 123 139 </div> 124 140 … … 149 165 </div> 150 166 <div> 151 167 <h4><?php _e( 'WP_Screen API' ); ?></h4> 152 <p><?php _e( 'WordPress admin screens have a nice new API. Create rich screens with help documentation, settings, and more.' ); ?></p>168 <p><?php _e( 'WordPress has a nice new API for working with admin screens. Create rich screens, add help documentation, adapts screen contexts, and more.' ); ?></p> 153 169 </div> 154 170 <div class="last-feature"> 155 171 <h4><?php _e( 'Editor API Overhaul' ); ?></h4>