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