xref: /webtrees/resources/views/emails/register-notify-text.phtml (revision 7c2c99fad7cacd17c98be88238ff735d82c6351b)
1<?php
2
3use Fisharebest\Webtrees\Contracts\UserInterface;
4use Fisharebest\Webtrees\I18N;
5use Fisharebest\Webtrees\Tree;
6
7/**
8 * @var string        $base_url
9 * @var string        $comments
10 * @var Tree|null     $tree
11 * @var UserInterface $user
12 */
13
14?>
15<?= I18N::translate('Hello administrator…') ?>
16
17<?= /* I18N: %s is a server name/URL */
18I18N::translate('A prospective user has registered with webtrees at %s.', $base_url) ?>
19
20<?= I18N::translate('Username') ?> - <?= e($user->userName()) ?>
21
22<?= I18N::translate('Real name') ?> - <?= e($user->realName()) ?>
23
24<?= I18N::translate('Email address') ?> - <?= e($user->email()) ?>
25
26<?= I18N::translate('Comments') ?> - <?= e($comments) ?>
27
28<?= I18N::translate('Tree') ?> - <?= e($tree ? $tree->name() : '') ?>
29
30<?= I18N::translate('The user has been sent an email with the information necessary to confirm the access request.') ?>
31
32<?= 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.') ?>
33