xref: /webtrees/resources/views/help/pending-changes.phtml (revision 6bf0af166b27d50bc0dc213975b1116b197adb10)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5/**
6 * @var bool $is_admin
7 */
8
9?>
10
11<p>
12    <?= I18N::translate('When you add, edit, or delete information, the changes are not saved immediately. Instead, they are kept in a “pending” area. These pending changes need to be reviewed by a moderator before they are accepted.') ?>
13</p>
14
15<p>
16    <?= I18N::translate('This process allows the site’s owner to ensure that the new information follows the site’s standards and conventions, has proper source attributions, etc.') ?>
17</p>
18
19<p>
20    <?= I18N::translate('Pending changes are only shown when your account has permission to edit. When you sign out, you will no longer be able to see them. Also, pending changes are only shown on certain pages. For example, they are not shown in lists, reports, or search results.') ?>
21</p>
22
23<?php if ($is_admin) : ?>
24    <p>
25        <?= I18N::translate('Each user account has an option to “automatically accept changes”. When this is enabled, any changes made by that user are saved immediately. Many administrators enable this for their own user account.') ?>
26    </p>
27<?php endif ?>
28