1<?php use Fisharebest\Webtrees\I18N; ?> 2<?= I18N::translate('Hello administrator…') ?> 3 4<?= /* I18N: %1$s is a real-name, %2$s is a username, %3$s is an email address */ I18N::translate( 5 'A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).', 6 e($user->getRealName()), 7 e($user->getUserName()), 8 e($user->getEmail()) 9) ?> 10 11<?= I18N::translate('You need to review the account details.') ?> 12 13<?= route('admin-users-edit', ['user_id' => $user->id()]) ?> 14 15<?= /* I18N: You need to: */ I18N::translate('Set the status to “approved”.') ?> 16<?= /* I18N: You need to: */ I18N::translate('Set the access level for each tree.') ?> 17<?= /* I18N: You need to: */ I18N::translate('Link the user account to an individual.'); 18