Skip to content

Commit

Permalink
Features list: Update to use sentence case
Browse files Browse the repository at this point in the history
  • Loading branch information
ryelle committed May 22, 2024
1 parent 90ffcd0 commit d471122
Showing 1 changed file with 34 additions and 34 deletions .
68 changes: 34 additions & 34 deletions source/wp-content/themes/wporg-themes-2024/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -404,49 +404,49 @@ function wporg_themes_get_feature_list( $include = 'active', $subset = '' ) {
if ( ' active ' === $ include || ' all ' === $ include ) {
$ features = array (
__ ( ' Layout ' , ' wporg-themes ' ) => array (
' grid-layout ' => __ ( ' Grid Layout ' , ' wporg-themes ' ),
' one-column ' => __ ( ' One Column ' , ' wporg-themes ' ),
' two-columns ' => __ ( ' Two Columns ' , ' wporg-themes ' ),
' three-columns ' => __ ( ' Three Columns ' , ' wporg-themes ' ),
' four-columns ' => __ ( ' Four Columns ' , ' wporg-themes ' ),
' left-sidebar ' => __ ( ' Left Sidebar ' , ' wporg-themes ' ),
' right-sidebar ' => __ ( ' Right Sidebar ' , ' wporg-themes ' ),
' wide-blocks ' => __ ( ' Wide Blocks ' , ' wporg-themes ' ),
' grid-layout ' => __ ( ' Grid layout ' , ' wporg-themes ' ),
' one-column ' => __ ( ' One column ' , ' wporg-themes ' ),
' two-columns ' => __ ( ' Two columns ' , ' wporg-themes ' ),
' three-columns ' => __ ( ' Three columns ' , ' wporg-themes ' ),
' four-columns ' => __ ( ' Four columns ' , ' wporg-themes ' ),
' left-sidebar ' => __ ( ' Left sidebar ' , ' wporg-themes ' ),
' right-sidebar ' => __ ( ' Right sidebar ' , ' wporg-themes ' ),
' wide-blocks ' => __ ( ' Wide blocks ' , ' wporg-themes ' ),
),
__ ( ' Features ' , ' wporg-themes ' ) => array (
' accessibility-ready ' => __ ( ' Accessibility Ready ' , ' wporg-themes ' ),
' block-patterns ' => __ ( ' Block Editor Patterns ' , ' wporg-themes ' ),
' block-styles ' => __ ( ' Block Editor Styles ' , ' wporg-themes ' ),
' accessibility-ready ' => __ ( ' Accessibility ready ' , ' wporg-themes ' ),
' block-patterns ' => __ ( ' Block editor patterns ' , ' wporg-themes ' ),
' block-styles ' => __ ( ' Block editor styles ' , ' wporg-themes ' ),
' full-site-editing ' => __ ( ' Block themes ' , ' wporg-themes ' ),
' buddypress ' => __ ( ' BuddyPress ' , ' wporg-themes ' ),
' custom-background ' => __ ( ' Custom Background ' , ' wporg-themes ' ),
' custom-colors ' => __ ( ' Custom Colors ' , ' wporg-themes ' ),
' custom-header ' => __ ( ' Custom Header ' , ' wporg-themes ' ),
' custom-logo ' => __ ( ' Custom Logo ' , ' wporg-themes ' ),
' custom-menu ' => __ ( ' Custom Menu ' , ' wporg-themes ' ),
' editor-style ' => __ ( ' Editor Style ' , ' wporg-themes ' ),
' featured-image-header ' => __ ( ' Featured Image Header ' , ' wporg-themes ' ),
' featured-images ' => __ ( ' Featured Images ' , ' wporg-themes ' ),
' flexible-header ' => __ ( ' Flexible Header ' , ' wporg-themes ' ),
' footer-widgets ' => __ ( ' Footer Widgets ' , ' wporg-themes ' ),
' front-page-post-form ' => __ ( ' Front Page Posting ' , ' wporg-themes ' ),
' full-site-editing ' => __ ( ' Full Site Editing ' , ' wporg-themes ' ),
' full-width-template ' => __ ( ' Full Width Template ' , ' wporg-themes ' ),
' custom-background ' => __ ( ' Custom background ' , ' wporg-themes ' ),
' custom-colors ' => __ ( ' Custom colors ' , ' wporg-themes ' ),
' custom-header ' => __ ( ' Custom header ' , ' wporg-themes ' ),
' custom-logo ' => __ ( ' Custom logo ' , ' wporg-themes ' ),
' custom-menu ' => __ ( ' Custom menu ' , ' wporg-themes ' ),
' editor-style ' => __ ( ' Editor style ' , ' wporg-themes ' ),
' featured-image-header ' => __ ( ' Featured image header ' , ' wporg-themes ' ),
' featured-images ' => __ ( ' Featured images ' , ' wporg-themes ' ),
' flexible-header ' => __ ( ' Flexible header ' , ' wporg-themes ' ),
' footer-widgets ' => __ ( ' Footer widgets ' , ' wporg-themes ' ),
' front-page-post-form ' => __ ( ' Front page posting ' , ' wporg-themes ' ),
' full-width-template ' => __ ( ' Full width template ' , ' wporg-themes ' ),
' microformats ' => __ ( ' Microformats ' , ' wporg-themes ' ),
' post-formats ' => __ ( ' Post Formats ' , ' wporg-themes ' ),
' rtl-language-support ' => __ ( ' RTL Language Support ' , ' wporg-themes ' ),
' sticky-post ' => __ ( ' Sticky Post ' , ' wporg-themes ' ),
' style-variations ' => __ ( ' Style Variations ' , ' wporg-themes ' ),
' template-editing ' => __ ( ' Template Editing ' , ' wporg-themes ' ),
' theme-options ' => __ ( ' Theme Options ' , ' wporg-themes ' ),
' threaded-comments ' => __ ( ' Threaded Comments ' , ' wporg-themes ' ),
' translation-ready ' => __ ( ' Translation Ready ' , ' wporg-themes ' ),
' post-formats ' => __ ( ' Post formats ' , ' wporg-themes ' ),
' rtl-language-support ' => __ ( ' RTL language support ' , ' wporg-themes ' ),
' sticky-post ' => __ ( ' Sticky post ' , ' wporg-themes ' ),
' style-variations ' => __ ( ' Style variations ' , ' wporg-themes ' ),
' template-editing ' => __ ( ' Template editing ' , ' wporg-themes ' ),
' theme-options ' => __ ( ' Theme options ' , ' wporg-themes ' ),
' threaded-comments ' => __ ( ' Threaded comments ' , ' wporg-themes ' ),
' translation-ready ' => __ ( ' Translation ready ' , ' wporg-themes ' ),
),
__ ( ' Subject ' , ' wporg-themes ' ) => array (
' blog ' => __ ( ' Blog ' , ' wporg-themes ' ),
' e-commerce ' => __ ( ' E- Commerce ' , ' wporg-themes ' ),
' e-commerce ' => __ ( ' E- commerce ' , ' wporg-themes ' ),
' education ' => __ ( ' Education ' , ' wporg-themes ' ),
' entertainment ' => __ ( ' Entertainment ' , ' wporg-themes ' ),
' food-and-drink ' => __ ( ' Food & Drink ' , ' wporg-themes ' ),
' food-and-drink ' => __ ( ' Food & drink ' , ' wporg-themes ' ),
' holiday ' => __ ( ' Holiday ' , ' wporg-themes ' ),
' news ' => __ ( ' News ' , ' wporg-themes ' ),
' photography ' => __ ( ' Photography ' , ' wporg-themes ' ),
Expand Down

0 comments on commit d471122

Please sign in to comment.