Browse Source

fix/avoid ICU count token in market data delete label

pull/7064/head
David Requeno 4 weeks ago
parent
commit
2a4b543deb
  1. 11
      apps/client/src/app/components/admin-market-data/admin-market-data.html

11
apps/client/src/app/components/admin-market-data/admin-market-data.html

@ -239,10 +239,13 @@
[disabled]="!selection.hasValue()"
(click)="onDeleteAssetProfiles()"
>
<ng-container i18n>{selection.selected.length, plural,
=1 {Delete 1 Profile}
other {Delete # Profiles}
}</ng-container>
<ng-container i18n
>Delete {{ selection.selected.length }}
{selection.selected.length, plural,
=1 {Profile}
other {Profiles}
}</ng-container
>
</button>
</mat-menu>
</th>

Loading…
Cancel
Save