diff --git a/app/Helpers/Csv/Specifix/AbnAmroDescription.php b/app/Helpers/Csv/Specifix/AbnAmroDescription.php index 49295b28e9..6e6dc4f02a 100644 --- a/app/Helpers/Csv/Specifix/AbnAmroDescription.php +++ b/app/Helpers/Csv/Specifix/AbnAmroDescription.php @@ -29,9 +29,10 @@ class AbnAmroDescription // Try to parse the description in known formats. $parsed = $this->parseSepaDescription() || $this->parseTRTPDescription() || $this->parseGEABEADescription() || $this->parseABNAMRODescription(); - // If the description could not be parsed, specify an unknown opposing account, as an opposing account is required + // If the description could not be parsed, specify an unknown opposing + // account, as an opposing account is required if( !$parsed ) { - $this->data[ "opposing-account-name" ] = trans('unknown'); + $this->data[ "opposing-account-name" ] = trans('firefly.unknown'); } return $this->data;