Opened 11 years ago
Closed 11 years ago
#26777 closed defect (bug) (fixed)
wp-admin/includes/theme.php $category_translations causes "Layout" in themes install filter not translated
Reported by: | janrenn | Owned by: | nacin |
---|---|---|---|
Milestone: | 3.8.1 | Priority: | normal |
Severity: | normal | Version: | 3.8 |
Component: | Themes | Keywords: | has-patch fixed-major |
Focuses: | Cc: |
Description
wp-admin/includes/theme.php lines 253-254 are
$category_translations = array( 'Colors' => __('Colors'), 'Columns' => __('Columns'), 'Width' => __('Width'), 'Features' => __('Features'), 'Subject' => __('Subject') );
It should turn 'Width' to 'Layout'
$category_translations = array( 'Colors' => __('Colors'), 'Columns' => __('Columns'), 'Layout' => __('Layout'), 'Features' => __('Features'), 'Subject' => __('Subject') );
otherwise Layout section of filter cannot be translated.
Attachments (2)
Change History (6)
#1
@
11 years ago
- Component changed from Administration to Themes
- Milestone changed from Awaiting Review to 3.8.1
#2
@
11 years ago
- Keywords has-patch added
Suggesting 26777.patch for trunk and 26777.branch.patch for 3.8.1.
Note: See
TracTickets for help on using
tickets.
Confirmed. Missed in [26711].