blob: a77daff71fb8ac79024b32ffca12a0a14b286325 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php use Fisharebest\Webtrees\I18N; ?>
<h2 class="wt-page-title">
<?= $title ?>
</h2>
<p>
<?= I18N::translate('The data in this website has been collected for the purposes of genealogical research.') ?>
</p>
<h3>
<?= I18N::translate('Cookies') ?>
</h3>
<p>
<?= I18N::translate('This site uses cookies to store your preferences on this site, such as the language you have selected.') ?>
</p>
<h3>
<?= I18N::translate('Tracking and analytics') ?>
</h3>
<?php if ($uses_analytics) : ?>
<p>
<?= I18N::translate('This site does not use any third-party tracking or analytics services.') ?>
</p>
<?php else : ?>
<?php endif ?>
|