diff --git a/packages/block-editor/src/components/colors-gradients/control.js b/packages/block-editor/src/components/colors-gradients/control.js index 4277e7f68b2b65..14fb9841e5f921 100644 --- a/packages/block-editor/src/components/colors-gradients/control.js +++ b/packages/block-editor/src/components/colors-gradients/control.js @@ -6,6 +6,7 @@ import classnames from 'classnames'; /** * WordPress dependencies */ +import { __ } from '@wordpress/i18n'; import { BaseControl, __experimentalVStack as VStack, @@ -28,12 +29,12 @@ const colorsAndGradientKeys = [ const TAB_COLOR = { name: 'color', - title: 'Solid', + title: __( 'Solid' ), value: 'color', }; const TAB_GRADIENT = { name: 'gradient', - title: 'Gradient', + title: __( 'Gradient' ), value: 'gradient', };