File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
pluggableWidgets/gallery-web/src
shared/widget-plugin-grid/src/selection-counter Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 210210 <caption >Item count singular</caption >
211211 <description >Must include '%d' to denote number position</description >
212212 <translations >
213- <translation lang =" en_US" >%d row selected</translation >
213+ <translation lang =" en_US" >%d items selected</translation >
214214 </translations >
215215 </property >
216216 <property key =" selectedCountTemplatePlural" type =" textTemplate" required =" false" >
217217 <caption >Item count plural</caption >
218218 <description >Must include '%d' to denote number position</description >
219219 <translations >
220- <translation lang =" en_US" >%d rows selected</translation >
220+ <translation lang =" en_US" >%d items selected</translation >
221221 </translations >
222222 </property >
223223 </propertyGroup >
Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ export class SelectionCounterViewModel {
2323 }
2424
2525 private get formatSingular ( ) : string {
26- return this . props . selectedCountTemplateSingular ?. value || "%d row selected" ;
26+ return this . props . selectedCountTemplateSingular ?. value || "%d items selected" ;
2727 }
2828
2929 private get formatPlural ( ) : string {
30- return this . props . selectedCountTemplatePlural ?. value || "%d rows selected" ;
30+ return this . props . selectedCountTemplatePlural ?. value || "%d items selected" ;
3131 }
3232
3333 get isTopCounterVisible ( ) : boolean {
You can’t perform that action at this time.
0 commit comments