1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 6d70512abSGreg Roach 77c2c99faSGreg Roach/** 87c2c99faSGreg Roach * @var bool $is_admin 97c2c99faSGreg Roach */ 107c2c99faSGreg Roach 11d70512abSGreg Roach?> 12dd6b2bfcSGreg Roach 13dd6b2bfcSGreg Roach<p> 14dd6b2bfcSGreg Roach <?= 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.') ?> 15dd6b2bfcSGreg Roach</p> 16dd6b2bfcSGreg Roach 17dd6b2bfcSGreg Roach<p> 18dd6b2bfcSGreg Roach <?= 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.') ?> 19dd6b2bfcSGreg Roach</p> 20dd6b2bfcSGreg Roach 21dd6b2bfcSGreg Roach<p> 22dd6b2bfcSGreg Roach <?= 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.') ?> 23dd6b2bfcSGreg Roach</p> 24dd6b2bfcSGreg Roach 25dd6b2bfcSGreg Roach<?php if ($is_admin) : ?> 26dd6b2bfcSGreg Roach <p> 27dd6b2bfcSGreg Roach <?= 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.') ?> 28dd6b2bfcSGreg Roach </p> 29dd6b2bfcSGreg Roach<?php endif ?> 30