Skip to content

Commit c8d0615

Browse files
committed
refactor: fix texts
1 parent ec83216 commit c8d0615

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/pluggableWidgets/gallery-web/src/Gallery.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,14 +210,14 @@
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>

packages/shared/widget-plugin-grid/src/selection-counter/SelectionCounter.viewModel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)