fix(i18n): add Plural support for bulk download limit alert (#3209) (#3260)

This commit is contained in:
Rodrigo Flávio
2026-08-24 16:53:01 +10:00
committed by GitHub
parent ead3104896
commit 5beb57dbf0
@@ -290,10 +290,11 @@ export const EnvelopesBulkDownloadDialog = ({
{isOverDownloadLimit && ( {isOverDownloadLimit && (
<Alert variant="warning"> <Alert variant="warning">
<AlertDescription> <AlertDescription>
<Trans> <Plural
You can download up to {MAX_BULK_DOWNLOAD_ENVELOPES} documents at a time. Deselect some documents to value={MAX_BULK_DOWNLOAD_ENVELOPES}
continue. one="You can download up to # document at a time. Deselect some documents to continue."
</Trans> other="You can download up to # documents at a time. Deselect some documents to continue."
/>
</AlertDescription> </AlertDescription>
</Alert> </Alert>
)} )}