xref: /webtrees/resources/views/help/name.phtml (revision b43e8d2bb2c20432b6d427f0f5d9a32679a9aa4f)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5?>
6
7<p>
8    <?= I18N::translate('The <b>name</b> field contains the individual’s full name, as they would have spelled it or as it was recorded. This is how it will be displayed on screen. It uses standard genealogy annotations to identify different parts of the name.') ?>
9</p>
10
11<ul>
12    <li>
13        <?= I18N::translate('The surname is enclosed by slashes: <%s>John Paul /Smith/<%s>', 'b', '/b') ?>
14    </li>
15    <li>
16        <?= I18N::translate('If the surname is unknown, use empty slashes: <%s>Mary //<%s>', 'b', '/b') ?>
17    </li>
18    <li>
19        <?= I18N::translate('If an individual has two separate surnames, both should be enclosed by slashes: <%s>José Antonio /Gómez/ /Iglesias/<%s>', 'b', '/b') ?>
20    </li>
21    <li>
22        <?= I18N::translate('If an individual does not have a surname, no slashes are needed: <%s>Jón Einarsson<%s>', 'b', '/b') ?>
23    </li>
24    <li>
25        <?= I18N::translate('If an individual was not known by their first given name, the preferred name should be indicated with an asterisk: <%s>John Paul* /Smith/<%s>', 'b', '/b') ?>
26    </li>
27    <li>
28        <?= I18N::translate('If an individual was known by a nickname which is not part of their formal name, it should be enclosed by quotation marks. For example, <%s>John &quot;Nobby&quot; /Clark/<%s>.', 'b', '/b') ?>
29    </li>
30</ul>
31