Translation for purge user

This commit is contained in:
David Bomba
2026-01-13 10:40:28 +11:00
parent 250549f78d
commit d94ea48bbf
2 changed files with 10 additions and 1 deletions

View File

@@ -258,7 +258,15 @@ class UserRepository extends BaseRepository
});
}
}
/**
* purge a user and all of their data across
* all companies and accounts.
*
* @param User $user
* @param User $new_owner_user
* @return void
*/
public function purge(User $user, User $new_owner_user): void
{

View File

@@ -5686,6 +5686,7 @@ $lang = array(
'enter_reason' => 'Enter a reason...',
'notification_invoice_overdue_summary_subject' => 'Invoice Overdue Summary: :date',
'notification_invoice_overdue_summary' => 'The following invoices are overdue:',
'purge_user_confirmation' => 'Warning! This action will reassign all entities to the account owner and permanently delete the user across all companies and accounts. Are you sure you want to proceed?',
);
return $lang;