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