xref: /webtrees/resources/views/admin/trees-renumber.phtml (revision 0c0910bf0f275a14f35d2ccdf698f91f79e269d4)
1*0c0910bfSGreg Roach<?php
2dd6b2bfcSGreg Roach
3*0c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
4*0c0910bfSGreg Roachuse Fisharebest\Webtrees\I18N;
5*0c0910bfSGreg Roach
6*0c0910bfSGreg Roach?>
7*0c0910bfSGreg Roach
8*0c0910bfSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route('manage-trees', ['tree' => $tree->name()]) => I18N::translate('Manage family trees '), $title]]) ?>
9dd6b2bfcSGreg Roach
10dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
11dd6b2bfcSGreg Roach
12dd6b2bfcSGreg Roach<p>
13dd6b2bfcSGreg Roach    <?= I18N::translate('In a family tree, each record has an internal reference number (called an “XREF”) such as “F123” or “R14”.') ?>
14dd6b2bfcSGreg Roach</p>
15dd6b2bfcSGreg Roach
16dd6b2bfcSGreg Roach<p>
17dd6b2bfcSGreg Roach    <?= I18N::translate('You can renumber the records in a family tree, so that these internal reference numbers are not duplicated in any other family tree.') ?>
18dd6b2bfcSGreg Roach</p>
19dd6b2bfcSGreg Roach
20dd6b2bfcSGreg Roach<p>
21dd6b2bfcSGreg Roach    <?= I18N::plural('This family tree has %s record which uses the same “XREF” as another family tree.', 'This family tree has %s records which use the same “XREF” as another family tree.', count($xrefs), I18N::number(count($xrefs))) ?>
22dd6b2bfcSGreg Roach</p>
23dd6b2bfcSGreg Roach
24dd6b2bfcSGreg Roach<?php if (!empty($xrefs)) : ?>
25dd6b2bfcSGreg Roach    <p>
26dd6b2bfcSGreg Roach        <?= I18N::translate('You can renumber this family tree.') ?>
27dd6b2bfcSGreg Roach    </p>
28dd6b2bfcSGreg Roach
29dd6b2bfcSGreg Roach    <form method="post">
30dd6b2bfcSGreg Roach        <?= csrf_field() ?>
31dd6b2bfcSGreg Roach        <button type="submit" class="btn btn-primary">
32dd6b2bfcSGreg Roach            <?= view('icons/save') ?>
33dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */
34dd6b2bfcSGreg Roach            I18N::translate('continue') ?>
35dd6b2bfcSGreg Roach        </button>
36dd6b2bfcSGreg Roach
37dd6b2bfcSGreg Roach        <?= I18N::translate('Caution! This may take a long time. Be patient.') ?>
38dd6b2bfcSGreg Roach    </form>
39dd6b2bfcSGreg Roach<?php endif ?>
40