From a65dc62efbdcc1c18c15365da82a4cf9e0aee8bd Mon Sep 17 00:00:00 2001 From: Karim Dalaize Date: Thu, 8 Feb 2024 17:18:56 +0100 Subject: [PATCH] =?UTF-8?q?[Updated]=C2=A0Use=20of=20plurals=20for=20CsvFi?= =?UTF-8?q?leInput?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/en.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/locales/en.ts b/src/locales/en.ts index cf3d55a..8e8da6e 100644 --- a/src/locales/en.ts +++ b/src/locales/en.ts @@ -650,7 +650,11 @@ export default { invalidAddress: 'The address provided at row {{ row }} in your CSV is invalid, please check that everything is valid before processing', invalidAmount: 'The amount provided at row {{ row }} is invalid, please check your CSV entries', lessThanMinDeposit: 'The amount provided at row {{ row }} is less than the minimum deposit amount, please check your CSV entries', - success: '{{ walletCount }} unique wallets will receive a deposit drop.\nYou will have to sign {{ batchCount }} transactions', + success: '$t(depositDrops.depositFlow.fileInputSubLabel.uniqueWallets, { "count": {{walletCount}} }) will receive a deposit drop.\nYou will have to sign $t(depositDrops.depositFlow.fileInputSubLabel.transactions, { "count": {{batchCount}} })', + uniqueWallets_one: '{{ count }} unique wallet', + uniqueWallets_other: '{{ count }} unique wallets', + transactions_one: '{{ count }} transaction', + transactions_other: '{{ count }} transactions', }, manualInputsErrors: { greaterThanAvailable: 'Total deposits amount is greater than your available balance',