Skip to content

Commit 523c9a3

Browse files
committed
chore: apply feedback
1 parent 87f2807 commit 523c9a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/shared/widget-plugin-grid/src/stores/SelectionCountStore.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ type Gate = DerivedPropsGate<{
1111

1212
export class SelectionCountStore {
1313
private gate: Gate;
14-
private singular: string = "row.count.singular";
15-
private plural: string = "row.count.plural";
14+
private singular: string = "%d.row.count";
15+
private plural: string = "%d.rows.count";
1616

1717
constructor(gate: Gate, spec: { singular?: string; plural?: string } = {}) {
1818
this.singular = spec.singular ?? this.singular;

0 commit comments

Comments
 (0)