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