From 58c82069d479581e563f2fa455d40944998dbe73 Mon Sep 17 00:00:00 2001 From: Eloi Torrents Date: Thu, 24 Nov 2022 10:08:02 +0100 Subject: [PATCH] Fix typo: anErrorOccurred --- assets/translations/en.json | 2 +- assets/translations/es.json | 2 +- assets/translations/fr.json | 2 +- lib/screens/transaction_in_progress.dart | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/translations/en.json b/assets/translations/en.json index 23ec6cb..ae4a329 100644 --- a/assets/translations/en.json +++ b/assets/translations/en.json @@ -137,7 +137,7 @@ "sending": "Sending...", "propagating": "Propagating...", "validating": "Validating...", - "anErrorOccured": "An error occurred", + "anErrorOccurred": "An error occurred", "24hbetweenCerts": "You have to wait 24h between certs", "canNotCertifySelf": "You can not certify yourself", "nameAlreadyExist": "This name is already taken", diff --git a/assets/translations/es.json b/assets/translations/es.json index e8bc4b1..c932d4d 100644 --- a/assets/translations/es.json +++ b/assets/translations/es.json @@ -137,7 +137,7 @@ "sending": "Enviando...", "propagating": "Propagando...", "validating": "Validando...", - "anErrorOccured": "Ocurrió un error", + "anErrorOccurred": "Ocurrió un error", "24hbetweenCerts": "You have to wait 24h between certs", "canNotCertifySelf": "You can not certify yourself", "nameAlreadyExist": "This name is already taken", diff --git a/assets/translations/fr.json b/assets/translations/fr.json index 9e3021b..a6ee62f 100644 --- a/assets/translations/fr.json +++ b/assets/translations/fr.json @@ -138,7 +138,7 @@ "sending": "Envoi en cours...", "propagating": "En cours de propagation...", "validating": "En cours de validation...", - "anErrorOccured": "Une erreur s'est produite", + "anErrorOccurred": "Une erreur s'est produite", "24hbetweenCerts": "Vous devez attendre 24h entre chaque certification", "canNotCertifySelf": "Vous ne pouvez pas vous certifier\nvous même ...", "nameAlreadyExist": "Ce nom est déjà pris", diff --git a/lib/screens/transaction_in_progress.dart b/lib/screens/transaction_in_progress.dart index d89c3aa..4ef15d6 100644 --- a/lib/screens/transaction_in_progress.dart +++ b/lib/screens/transaction_in_progress.dart @@ -103,7 +103,7 @@ class TransactionInProgress extends StatelessWidget { 'g1migration Bloc of last transaction: ${sub.blocNumber} --- $result'); } else { isValid = false; - resultText = "${"anErrorOccured".tr()}:\n"; + resultText = "${"anErrorOccurred".tr()}:\n"; final List exceptionSplit = result.split('Exception: '); String exception; if (exceptionSplit.length > 1) {