Skip to content

Commit

Permalink
Fix some theme filters appearing untranslated (#95995)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-alleyne authored Nov 3, 2024
1 parent e02df9d commit 8673d99
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions client/my-sites/themes/theme-showcase.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,21 @@ const optionShape = PropTypes.shape( {
const staticFilters = {
MYTHEMES: {
key: STATIC_FILTERS.MYTHEMES,
text: translate( 'My Themes' ),
get text() {
return translate( 'My Themes' );
},
},
RECOMMENDED: {
key: STATIC_FILTERS.RECOMMENDED,
text: translate( 'Recommended' ),
get text() {
return translate( 'Recommended' );
},
},
ALL: {
key: STATIC_FILTERS.ALL,
text: translate( 'All' ),
get text() {
return translate( 'All' );
},
},
};

Expand Down

0 comments on commit 8673d99

Please sign in to comment.