diff --git a/lang/en/texts.php b/lang/en/texts.php index d5b4b8f080..f6555d098f 100644 --- a/lang/en/texts.php +++ b/lang/en/texts.php @@ -5137,6 +5137,8 @@ $lang = array( 'nordigen_handler_error_contents_institution_invalid' => 'The provided institution-id is invalid or no longer valid.', 'nordigen_handler_error_heading_ref_invalid' => 'Invalid Reference', 'nordigen_handler_error_contents_ref_invalid' => 'GoCardless did not provide a valid reference. Please run flow again and contact support, if this issue persists.', + 'nordigen_handler_error_heading_eua_failure' => 'EUA Failure', + 'nordigen_handler_error_contents_eua_failure' => 'An error occurred during End User Agreement creation:', 'nordigen_handler_error_heading_not_found' => 'Invalid Requisition', 'nordigen_handler_error_contents_not_found' => 'GoCardless did not provide a valid reference. Please run flow again and contact support, if this issue persists.', 'nordigen_handler_error_heading_requisition_invalid_status' => 'Not Ready', @@ -5366,7 +5368,7 @@ $lang = array( 'peppol_plan_warning' => 'Enterprise plan required in order to use einvoicing over the PEPPOL network.', 'peppol_credits_info' => 'Ecredits are required to send and receive einvoices. These are charged on a per document basis.', 'buy_credits' => 'Buy E Credits', - 'peppol_successfully_configured' => 'PEPPOL successsfully configured.', + 'peppol_successfully_configured' => 'PEPPOL successsfully configured.', 'peppol_not_paid_message' => 'Enterprise plan required for PEPPOL. Please upgrade your plan.', 'peppol_country_not_supported' => 'PEPPOL network not yet available for this country.', 'peppol_disconnect' => 'Disconnect from the PEPPOL network', diff --git a/lang/en_GB/texts.php b/lang/en_GB/texts.php index 8bc57af05a..3bee6835b0 100644 --- a/lang/en_GB/texts.php +++ b/lang/en_GB/texts.php @@ -5136,6 +5136,8 @@ $lang = array( 'nordigen_handler_error_contents_institution_invalid' => 'The provided institution-id is invalid or no longer valid.', 'nordigen_handler_error_heading_ref_invalid' => 'Invalid Reference', 'nordigen_handler_error_contents_ref_invalid' => 'GoCardless did not provide a valid reference. Please run flow again and contact support, if this issue persists.', + 'nordigen_handler_error_heading_eua_failure' => 'EUA Failure', + 'nordigen_handler_error_contents_eua_failure' => 'An error occurred during End User Agreement creation:', 'nordigen_handler_error_heading_not_found' => 'Invalid Requisition', 'nordigen_handler_error_contents_not_found' => 'GoCardless did not provide a valid reference. Please run flow again and contact support, if this issue persists.', 'nordigen_handler_error_heading_requisition_invalid_status' => 'Not Ready', diff --git a/resources/views/bank/nordigen/handler.blade.php b/resources/views/bank/nordigen/handler.blade.php index bb62c66caa..3ebdbfe18e 100644 --- a/resources/views/bank/nordigen/handler.blade.php +++ b/resources/views/bank/nordigen/handler.blade.php @@ -159,6 +159,10 @@ heading.innerHTML = "{{ ctrans('texts.nordigen_handler_error_heading_institution_invalid', [], $lang ?? 'en') }}"; contents.innerHTML = "{{ ctrans('texts.nordigen_handler_error_contents_institution_invalid', [], $lang ?? 'en') }}"; break; + case "eua-failure": + heading.innerHTML = "{{ ctrans('texts.nordigen_handler_error_heading_eua_failure', [], $lang ?? 'en') }}"; + contents.innerHTML = "{{ ctrans('texts.nordigen_handler_error_contents_eua_failure', [], $lang ?? 'en') }} " + failedReason; + break; // Confirm Screen Errors case "ref-invalid": heading.innerHTML = "{{ ctrans('texts.nordigen_handler_error_heading_ref_invalid', [], $lang ?? 'en') }}";