xref: /webtrees/resources/views/emails/verify-notify-text.phtml (revision 895230eed7521b5cd885b90d4f5310405ff0b69a)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach<?= I18N::translate('Hello administrator…') ?>
3dd6b2bfcSGreg Roach
4dd6b2bfcSGreg Roach<?= /* I18N: %1$s is a real-name, %2$s is a username, %3$s is an email address */ I18N::translate(
5dd6b2bfcSGreg Roach    'A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).',
6dd6b2bfcSGreg Roach    e($user->getRealName()),
7dd6b2bfcSGreg Roach    e($user->getUserName()),
8dd6b2bfcSGreg Roach    e($user->getEmail())
9dd6b2bfcSGreg Roach) ?>
10dd6b2bfcSGreg Roach
11dd6b2bfcSGreg Roach<?= I18N::translate('You need to review the account details.') ?>
12dd6b2bfcSGreg Roach
13*895230eeSGreg Roach<?= route('admin-users-edit', ['user_id' => $user->id()]) ?>
14dd6b2bfcSGreg Roach
15dd6b2bfcSGreg Roach<?= /* I18N: You need to: */ I18N::translate('Set the status to “approved”.') ?>
16dd6b2bfcSGreg Roach<?= /* I18N: You need to: */ I18N::translate('Set the access level for each tree.') ?>
17dd6b2bfcSGreg Roach<?= /* I18N: You need to: */ I18N::translate('Link the user account to an individual.');
18