blob: bd7e3ddc24d03531373c6e87fe0733de7911ac3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php namespace Fisharebest\Webtrees; ?>
<?= I18N::translate('Hello administrator…') ?>
<?= /* I18N: %1$s is a real-name, %2$s is a username, %3$s is an email address */ I18N::translate(
'A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).',
e($user->getRealName()),
e($user->getUserName()),
e($user->getEmail())
) ?>
<?= I18N::translate('You need to review the account details.') ?>
<?= route('admin-users-edit', ['user_id' => $user->getUserId()]) ?>
<?= /* I18N: You need to: */ I18N::translate('Set the status to “approved”.') ?>
<?= /* I18N: You need to: */ I18N::translate('Set the access level for each tree.') ?>
<?= /* I18N: You need to: */ I18N::translate('Link the user account to an individual.');
|