Make WordPress Core

Ticket #33407: 33407.patch

File 33407.patch, 2.5 KB (added by grapplerulrich, 9 years ago)
  • wp-admin/includes/theme.php

     
    193193function get_theme_feature_list( $api = true ) {
    194194        // Hard-coded list is used if api not accessible.
    195195        $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                         ),
    213196
    214197                __( 'Layout' ) => array(
    215                         'fixed-layout'      => __( 'Fixed Layout' ),
    216                         'fluid-layout'      => __( 'Fluid Layout' ),
    217                         'responsive-layout' => __( 'Responsive Layout' ),
     198                        'grid-layout'   => __( 'Grid Layout' ),
    218199                        'one-column'    => __( 'One Column' ),
    219200                        'two-columns'   => __( 'Two Columns' ),
    220201                        'three-columns' => __( 'Three Columns' ),
     
    225206
    226207                __( 'Features' ) => array(
    227208                        'accessibility-ready'   => __( 'Accessibility Ready' ),
    228                         'blavatar'              => __( 'Blavatar' ),
    229209                        'buddypress'            => __( 'BuddyPress' ),
    230210                        'custom-background'     => __( 'Custom Background' ),
    231211                        'custom-colors'         => __( 'Custom Colors' ),
     
    235215                        'featured-image-header' => __( 'Featured Image Header' ),
    236216                        'featured-images'       => __( 'Featured Images' ),
    237217                        'flexible-header'       => __( 'Flexible Header' ),
     218                        'footer-widgets'        => __( 'Footer Widgets' ),
    238219                        'front-page-post-form'  => __( 'Front Page Posting' ),
    239220                        'full-width-template'   => __( 'Full Width Template' ),
    240221                        'microformats'          => __( 'Microformats' ),
     
    247228                ),
    248229
    249230                __( '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' ),
    253240                )
    254241        );
    255242