1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 2*dd6b2bfcSGreg Roach<?= I18N::translate('Hello administrator…') ?> 3*dd6b2bfcSGreg Roach 4*dd6b2bfcSGreg Roach<?= /* I18N: %s is a server name/URL */I18N::translate('A prospective user has registered with webtrees at %s.', WT_BASE_URL . ' ' . e($tree->getTitle())) ?> 5*dd6b2bfcSGreg Roach 6*dd6b2bfcSGreg Roach<?= I18N::translate('Username') ?> - <?= e($user->getUserName()) ?> 7*dd6b2bfcSGreg Roach<?= I18N::translate('Real name') ?> - <?= e($user->getRealName()) ?> 8*dd6b2bfcSGreg Roach<?= I18N::translate('Email address') ?> - <?= e($user->getEmail()) ?> 9*dd6b2bfcSGreg Roach<?= I18N::translate('Comments') ?> - <?= e($comments) ?> 10*dd6b2bfcSGreg Roach 11*dd6b2bfcSGreg Roach<?= I18N::translate('The user has been sent an email with the information necessary to confirm the access request.') ?> 12*dd6b2bfcSGreg Roach 13*dd6b2bfcSGreg Roach<?= I18N::translate('You will be informed by email when this prospective user has confirmed the request. You can then complete the process by activating the username. The new user will not be able to sign in until you activate the account.') ?> 14