Make WordPress Core

Changeset 26905


Ignore:
Timestamp:
01/05/2014 05:15:14 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Change 'Width' to 'Layout' to match the hard-coded list of translatable theme features in get_theme_feature_list().

props janrenn.
fixes #26777 for trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/theme.php

    r26851 r26905  
    251251    set_site_transient( 'wporg_theme_feature_list', $feature_list, 10800 );
    252252
    253     $category_translations = array( 'Colors' => __('Colors'), 'Columns' => __('Columns'), 'Width' => __('Width'),
    254                                    'Features' => __('Features'), 'Subject' => __('Subject') );
     253    $category_translations = array(
     254        'Colors'   => __( 'Colors' ),
     255        'Columns'  => __( 'Columns' ),
     256        'Layout'   => __( 'Layout' ),
     257        'Features' => __( 'Features' ),
     258        'Subject'  => __( 'Subject' )
     259    );
    255260
    256261    // Loop over the wporg canonical list and apply translations
Note: See TracChangeset for help on using the changeset viewer.