diff --git a/assets/translations/en.json b/assets/translations/en.json
index 23ec6cb2c44facd594d154b287d0b2f54578d72e..ae4a329e0afb4ffc274fecebb589261658e64cca 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 e8bc4b13ef6881ab83fd22f9bd91c9dec42a3a13..c932d4d47746932ac478b82d3abfef8db143d5c1 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 9e3021b6ed828df0f14925e1b95119126477af77..a6ee62fb3e89d5ce540af156211b95ef151d2b05 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 d89c3aaaf70088e80dfdf540c3f27489e932c467..4ef15d6bb758901e63a54555846b79d5d2d8e1b3 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) {