19fa6ab69SGreg Roach<?php 29fa6ab69SGreg Roach 39fa6ab69SGreg Roachuse Fisharebest\Webtrees\I18N; 49fa6ab69SGreg Roach 59fa6ab69SGreg Roach?> 6dd6b2bfcSGreg Roach<?= I18N::translate('Hello administrator…') ?> 7dd6b2bfcSGreg Roach 89fa6ab69SGreg Roach<?= /* I18N: %s is a server name/URL */ 99fa6ab69SGreg RoachI18N::translate('A prospective user has registered with webtrees at %s.', $base_url) ?> 10dd6b2bfcSGreg Roach 11c65e00b4SGreg Roach<?= I18N::translate('Username') ?> - <?= e($user->userName()) ?> 12*4cf33693Smrqd9 13e5a6b4d4SGreg Roach<?= I18N::translate('Real name') ?> - <?= e($user->realName()) ?> 14*4cf33693Smrqd9 15e5a6b4d4SGreg Roach<?= I18N::translate('Email address') ?> - <?= e($user->email()) ?> 16*4cf33693Smrqd9 17dd6b2bfcSGreg Roach<?= I18N::translate('Comments') ?> - <?= e($comments) ?> 18*4cf33693Smrqd9 199fa6ab69SGreg Roach<?= I18N::translate('Tree') ?> - <?= e($tree ? $tree->name() : '') ?> 20dd6b2bfcSGreg Roach 21dd6b2bfcSGreg Roach<?= I18N::translate('The user has been sent an email with the information necessary to confirm the access request.') ?> 22dd6b2bfcSGreg Roach 23dd6b2bfcSGreg 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.') ?> 24