Opened 13 years ago
Closed 13 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 |
|---|---|---|---|
| Priority: | normal | Milestone: | 3.8.1 |
| Component: | Themes | Version: | 3.8 |
| Severity: | normal | Keywords: | has-patch fixed-major |
| Cc: | Focuses: |
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)
#2
@
13 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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Confirmed. Missed in [26711].