blob: 1b25507f9fd4f6fb63127132f8d05037a3653a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
declare(strict_types=1);
use Fisharebest\Webtrees\I18N;
?>
<p>
<?= I18N::translate('Data fixes can require lots of slow calculations, so it is not possible to create an exact list of records that need to be updated.') ?>
</p>
<p>
<?= I18N::translate('For example, we can quickly find individuals that do not have a death event, but it is much slower to calculate if the individual is dead.') ?>
</p>
<p>
<?= I18N::translate('This list is created using a simple (but fast) search, and therefore includes records that will not be updated.') ?>
</p>
|