xref: /webtrees/resources/views/emails/verify-notify-text.phtml (revision 89f7189b61a494347591c99bdb92afb7d8b66e1b)
1<?php
2
3use Fisharebest\Webtrees\Http\RequestHandlers\UserEditPage;
4use Fisharebest\Webtrees\I18N;
5
6?>
7<?= I18N::translate('Hello administrator…') ?>
8
9<?= /* I18N: %1$s is a real-name, %2$s is a username, %3$s is an email address */ I18N::translate(
10    'A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).',
11    e($user->realName()),
12    e($user->userName()),
13    e($user->email())
14) ?>
15
16<?= I18N::translate('You need to review the account details.') ?>
17
18<?= route(UserEditPage::class, ['user_id' => $user->id()]) ?>
19
20<?= /* I18N: You need to: */ I18N::translate('Set the status to “approved”.') ?>
21<?= /* I18N: You need to: */ I18N::translate('Set the access level for each tree.') ?>
22<?= /* I18N: You need to: */ I18N::translate('Link the user account to an individual.');
23