Skip to content

Commit 65942b0

Browse files
committed
Reformat
1 parent ab8c6ac commit 65942b0

File tree

1 file changed

+9
-3
lines changed
  • packages/dataviews/src/components/dataviews-filters

1 file changed

+9
-3
lines changed

packages/dataviews/src/components/dataviews-filters/filter.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,9 @@ const FilterText = ( {
163163
return createInterpolateElement(
164164
sprintf(
165165
/* translators: 1: Filter name. 2: Filter value. e.g.: "Price is less than: 10". */
166-
__( '<Name>%1$s is less than: </Name><Value>%2$s</Value>' ),
166+
__(
167+
'<Name>%1$s is less than or equal to: </Name><Value>%2$s</Value>'
168+
),
167169
filter.name,
168170
activeElements[ 0 ].label
169171
),
@@ -187,7 +189,9 @@ const FilterText = ( {
187189
return createInterpolateElement(
188190
sprintf(
189191
/* translators: 1: Filter name. 2: Filter value. e.g.: "Price is less than or equal to: 10". */
190-
__( '<Name>%1$s is less than or equal to: </Name><Value>%2$s</Value>' ),
192+
__(
193+
'<Name>%1$s is less than or equal to: </Name><Value>%2$s</Value>'
194+
),
191195
filter.name,
192196
activeElements[ 0 ].label
193197
),
@@ -199,7 +203,9 @@ const FilterText = ( {
199203
return createInterpolateElement(
200204
sprintf(
201205
/* translators: 1: Filter name. 2: Filter value. e.g.: "Price is greater than or equal to: 10". */
202-
__( '<Name>%1$s is greater than or equal to: </Name><Value>%2$s</Value>' ),
206+
__(
207+
'<Name>%1$s is greater than or equal to: </Name><Value>%2$s</Value>'
208+
),
203209
filter.name,
204210
activeElements[ 0 ].label
205211
),

0 commit comments

Comments
 (0)