1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 2*dd6b2bfcSGreg Roach 3*dd6b2bfcSGreg Roach<p> 4*dd6b2bfcSGreg Roach <?= 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.') ?> 5*dd6b2bfcSGreg Roach</p> 6*dd6b2bfcSGreg Roach 7*dd6b2bfcSGreg Roach<ul> 8*dd6b2bfcSGreg Roach <li> 9*dd6b2bfcSGreg Roach <?= I18N::translate('The surname is enclosed by slashes: <%s>John Paul /Smith/<%s>', 'b', '/b') ?> 10*dd6b2bfcSGreg Roach </li> 11*dd6b2bfcSGreg Roach <li> 12*dd6b2bfcSGreg Roach <?= I18N::translate('If the surname is unknown, use empty slashes: <%s>Mary //<%s>', 'b', '/b') ?> 13*dd6b2bfcSGreg Roach </li> 14*dd6b2bfcSGreg Roach <li> 15*dd6b2bfcSGreg Roach <?= I18N::translate('If an individual has two separate surnames, both should be enclosed by slashes: <%s>José Antonio /Gómez/ /Iglesias/<%s>', 'b', '/b') ?> 16*dd6b2bfcSGreg Roach </li> 17*dd6b2bfcSGreg Roach <li> 18*dd6b2bfcSGreg Roach <?= I18N::translate('If an individual does not have a surname, no slashes are needed: <%s>Jón Einarsson<%s>', 'b', '/b') ?> 19*dd6b2bfcSGreg Roach </li> 20*dd6b2bfcSGreg Roach <li> 21*dd6b2bfcSGreg Roach <?= 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') ?> 22*dd6b2bfcSGreg Roach </li> 23*dd6b2bfcSGreg Roach <li> 24*dd6b2bfcSGreg Roach <?= 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 "Nobby" /Clark/<%s>.', 'b', '/b') ?> 25*dd6b2bfcSGreg Roach </li> 26*dd6b2bfcSGreg Roach</ul> 27