Skip to content

Commit

Permalink
Global Styles: Make strings translatable (WordPress#60127)
Browse files Browse the repository at this point in the history
Co-authored-by: pedro-mendonca <[email protected]>
Co-authored-by: swissspidy <[email protected]>
  • Loading branch information
3 people authored Mar 23, 2024
1 parent 4056660 commit 21bb478
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ function ScreenColorPalette( { name } ) {
/>
<Tabs>
<Tabs.TabList>
<Tabs.Tab tabId="solid">Solid</Tabs.Tab>
<Tabs.Tab tabId="gradient">Gradient</Tabs.Tab>
<Tabs.Tab tabId="solid">{ __( 'Solid' ) }</Tabs.Tab>
<Tabs.Tab tabId="gradient">{ __( 'Gradient' ) }</Tabs.Tab>
</Tabs.TabList>
<Tabs.TabPanel tabId="solid" focusable={ false }>
<ColorPalettePanel name={ name } />
Expand Down

0 comments on commit 21bb478

Please sign in to comment.