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