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