We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87f2807 commit 523c9a3Copy full SHA for 523c9a3
packages/shared/widget-plugin-grid/src/stores/SelectionCountStore.ts
@@ -11,8 +11,8 @@ type Gate = DerivedPropsGate<{
11
12
export class SelectionCountStore {
13
private gate: Gate;
14
- private singular: string = "row.count.singular";
15
- private plural: string = "row.count.plural";
+ private singular: string = "%d.row.count";
+ private plural: string = "%d.rows.count";
16
17
constructor(gate: Gate, spec: { singular?: string; plural?: string } = {}) {
18
this.singular = spec.singular ?? this.singular;
0 commit comments