1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 2dd6b2bfcSGreg Roach<?= I18N::translate('Hello administrator…') ?> 3dd6b2bfcSGreg Roach 4cc13d6d8SGreg Roach<?= /* I18N: %s is a server name/URL */I18N::translate('A prospective user has registered with webtrees at %s.', WT_BASE_URL . ' ' . e($tree->title())) ?> 5dd6b2bfcSGreg Roach 6dd6b2bfcSGreg Roach<?= I18N::translate('Username') ?> - <?= e($user->getUserName()) ?> 7*e5a6b4d4SGreg Roach<?= I18N::translate('Real name') ?> - <?= e($user->realName()) ?> 8*e5a6b4d4SGreg Roach<?= I18N::translate('Email address') ?> - <?= e($user->email()) ?> 9dd6b2bfcSGreg Roach<?= I18N::translate('Comments') ?> - <?= e($comments) ?> 10dd6b2bfcSGreg Roach 11dd6b2bfcSGreg Roach<?= I18N::translate('The user has been sent an email with the information necessary to confirm the access request.') ?> 12dd6b2bfcSGreg Roach 13dd6b2bfcSGreg 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