165cf5706SGreg Roach<?php 265cf5706SGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 57c2c99faSGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 64c3563c0SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\UserEditPage; 765cf5706SGreg Roachuse Fisharebest\Webtrees\I18N; 865cf5706SGreg Roach 97c2c99faSGreg Roach/** 107c2c99faSGreg Roach * @var UserInterface $user 117c2c99faSGreg Roach */ 127c2c99faSGreg Roach 1365cf5706SGreg Roach?> 14dd6b2bfcSGreg Roach<?= I18N::translate('Hello administrator…') ?> 15dd6b2bfcSGreg Roach 16dd6b2bfcSGreg Roach<?= /* I18N: %1$s is a real-name, %2$s is a username, %3$s is an email address */ I18N::translate( 17dd6b2bfcSGreg Roach 'A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).', 18e5a6b4d4SGreg Roach e($user->realName()), 19c65e00b4SGreg Roach e($user->userName()), 20e5a6b4d4SGreg Roach e($user->email()) 21dd6b2bfcSGreg Roach) ?> 22dd6b2bfcSGreg Roach 23dd6b2bfcSGreg Roach<?= I18N::translate('You need to review the account details.') ?> 24dd6b2bfcSGreg Roach 254c3563c0SGreg Roach<?= route(UserEditPage::class, ['user_id' => $user->id()]) ?> 26dd6b2bfcSGreg Roach 27dd6b2bfcSGreg Roach<?= /* I18N: You need to: */ I18N::translate('Set the status to “approved”.') ?> 28dd6b2bfcSGreg Roach<?= /* I18N: You need to: */ I18N::translate('Set the access level for each tree.') ?> 29d70512abSGreg Roach<?= /* I18N: You need to: */ I18N::translate('Link the user account to an individual.'); 30