Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
i18n: Make the tab labels of ColorGradientSettingsDropdown componen…
…t translatable
  • Loading branch information
t-hamano committed Jul 17, 2023
commit 20ac811531f6e81631e699a24fd4fde375ed7d56
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import {
BaseControl,
__experimentalVStack as VStack,
Expand All @@ -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',
};

Expand Down