diff --git a/app/Console/Commands/Integrity/ReportsEmptyObjects.php b/app/Console/Commands/Integrity/ReportsEmptyObjects.php index b2d26ba555..936d8cede3 100644 --- a/app/Console/Commands/Integrity/ReportsEmptyObjects.php +++ b/app/Console/Commands/Integrity/ReportsEmptyObjects.php @@ -70,7 +70,7 @@ class ReportsEmptyObjects extends Command /** @var stdClass $entry */ foreach ($set as $entry) { $line = sprintf( - 'User #%d (%s) has budget #%d ("%s") which has no transaction journals.', + 'User #%d (%s) has budget #%d ("%s") which has no transactions.', $entry->user_id, $entry->email, $entry->id, @@ -96,7 +96,7 @@ class ReportsEmptyObjects extends Command /** @var stdClass $entry */ foreach ($set as $entry) { $line = sprintf( - 'User #%d (%s) has category #%d ("%s") which has no transaction journals.', + 'User #%d (%s) has category #%d ("%s") which has no transactions.', $entry->user_id, $entry->email, $entry->id, @@ -119,7 +119,7 @@ class ReportsEmptyObjects extends Command /** @var stdClass $entry */ foreach ($set as $entry) { $line = sprintf( - 'User #%d (%s) has tag #%d ("%s") which has no transaction journals.', + 'User #%d (%s) has tag #%d ("%s") which has no transactions.', $entry->user_id, $entry->email, $entry->id,