File tree 1 file changed +9
-3
lines changed
packages/dataviews/src/components/dataviews-filters 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,9 @@ const FilterText = ( {
163
163
return createInterpolateElement (
164
164
sprintf (
165
165
/* 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
+ ) ,
167
169
filter . name ,
168
170
activeElements [ 0 ] . label
169
171
) ,
@@ -187,7 +189,9 @@ const FilterText = ( {
187
189
return createInterpolateElement (
188
190
sprintf (
189
191
/* 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
+ ) ,
191
195
filter . name ,
192
196
activeElements [ 0 ] . label
193
197
) ,
@@ -199,7 +203,9 @@ const FilterText = ( {
199
203
return createInterpolateElement (
200
204
sprintf (
201
205
/* 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
+ ) ,
203
209
filter . name ,
204
210
activeElements [ 0 ] . label
205
211
) ,
You can’t perform that action at this time.
0 commit comments