Ticket #33407: 33407.patch
File 33407.patch, 2.5 KB (added by , 9 years ago) |
---|
-
wp-admin/includes/theme.php
193 193 function get_theme_feature_list( $api = true ) { 194 194 // Hard-coded list is used if api not accessible. 195 195 $features = array( 196 __( 'Colors' ) => array(197 'black' => __( 'Black' ),198 'blue' => __( 'Blue' ),199 'brown' => __( 'Brown' ),200 'gray' => __( 'Gray' ),201 'green' => __( 'Green' ),202 'orange' => __( 'Orange' ),203 'pink' => __( 'Pink' ),204 'purple' => __( 'Purple' ),205 'red' => __( 'Red' ),206 'silver' => __( 'Silver' ),207 'tan' => __( 'Tan' ),208 'white' => __( 'White' ),209 'yellow' => __( 'Yellow' ),210 'dark' => __( 'Dark' ),211 'light' => __( 'Light' ),212 ),213 196 214 197 __( 'Layout' ) => array( 215 'fixed-layout' => __( 'Fixed Layout' ), 216 'fluid-layout' => __( 'Fluid Layout' ), 217 'responsive-layout' => __( 'Responsive Layout' ), 198 'grid-layout' => __( 'Grid Layout' ), 218 199 'one-column' => __( 'One Column' ), 219 200 'two-columns' => __( 'Two Columns' ), 220 201 'three-columns' => __( 'Three Columns' ), … … 225 206 226 207 __( 'Features' ) => array( 227 208 'accessibility-ready' => __( 'Accessibility Ready' ), 228 'blavatar' => __( 'Blavatar' ),229 209 'buddypress' => __( 'BuddyPress' ), 230 210 'custom-background' => __( 'Custom Background' ), 231 211 'custom-colors' => __( 'Custom Colors' ), … … 235 215 'featured-image-header' => __( 'Featured Image Header' ), 236 216 'featured-images' => __( 'Featured Images' ), 237 217 'flexible-header' => __( 'Flexible Header' ), 218 'footer-widgets' => __( 'Footer Widgets' ), 238 219 'front-page-post-form' => __( 'Front Page Posting' ), 239 220 'full-width-template' => __( 'Full Width Template' ), 240 221 'microformats' => __( 'Microformats' ), … … 247 228 ), 248 229 249 230 __( 'Subject' ) => array( 250 'holiday' => __( 'Holiday' ), 251 'photoblogging' => __( 'Photoblogging' ), 252 'seasonal' => __( 'Seasonal' ), 231 'blog' => __( 'Blog' ), 232 'e-commerce' => __( 'E-Commerce' ), 233 'education' => __( 'Education' ), 234 'entertainment' => __( 'Entertainment' ), 235 'food-and-drink' => __( 'Food & Drink' ), 236 'holiday' => __( 'photography' ), 237 'news' => __( 'News' ), 238 'photography' => __( 'Photography' ), 239 'portfolio' => __( 'Portfolio' ), 253 240 ) 254 241 ); 255 242