Skip to content

Commit

Permalink
Fix and improve translation context strings
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronrobertshaw committed Oct 16, 2024
1 parent d4ed58a commit 92dbe8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function useMultipleOriginColorsAndGradients() {
result.push( {
name: _x(
'Custom',
'Indicates this palette comes from the theme.'
'Indicates this palette is created by the user.'
),
slug: 'custom',
colors: customColors,
Expand Down
7 changes: 3 additions & 4 deletions packages/edit-site/src/components/style-book/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function useMultiOriginPalettes() {
result.duotones.push( {
name: _x(
'Theme',
'Indicates this palette comes from the theme.'
'Indicates these duotone filters come from the theme.'
),
slug: 'theme',
duotones: themeDuotones,
Expand All @@ -105,7 +105,7 @@ function useMultiOriginPalettes() {
result.duotones.push( {
name: _x(
'Default',
'Indicates this palette comes from WordPress.'
'Indicates these duotone filters come from WordPress.'
),
slug: 'default',
duotones: defaultDuotones,
Expand All @@ -115,8 +115,7 @@ function useMultiOriginPalettes() {
result.duotones.push( {
name: _x(
'Custom',
// TODO: Should the follow saying from the theme or user? It currently matches useMultipleOriginColorsAndGradients.
'Indicates this palette comes from the theme.'
'Indicates these doutone filters are created by the user.'
),
slug: 'custom',
duotones: customDuotones,
Expand Down

0 comments on commit 92dbe8f

Please sign in to comment.