1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 6d70512abSGreg Roach 7d70512abSGreg Roach?> 8dd6b2bfcSGreg Roach 9dd6b2bfcSGreg Roach<p> 10dd6b2bfcSGreg 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.') ?> 11dd6b2bfcSGreg Roach</p> 12dd6b2bfcSGreg Roach 13dd6b2bfcSGreg Roach<ul> 14dd6b2bfcSGreg Roach <li> 15dd6b2bfcSGreg Roach <?= I18N::translate('The surname is enclosed by slashes: <%s>John Paul /Smith/<%s>', 'b', '/b') ?> 16dd6b2bfcSGreg Roach </li> 17dd6b2bfcSGreg Roach <li> 18dd6b2bfcSGreg Roach <?= I18N::translate('If the surname is unknown, use empty slashes: <%s>Mary //<%s>', 'b', '/b') ?> 19dd6b2bfcSGreg Roach </li> 20dd6b2bfcSGreg Roach <li> 21dd6b2bfcSGreg 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') ?> 22dd6b2bfcSGreg Roach </li> 23dd6b2bfcSGreg Roach <li> 24dd6b2bfcSGreg Roach <?= I18N::translate('If an individual does not have a surname, no slashes are needed: <%s>Jón Einarsson<%s>', 'b', '/b') ?> 25dd6b2bfcSGreg Roach </li> 26dd6b2bfcSGreg Roach <li> 27dd6b2bfcSGreg 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') ?> 28dd6b2bfcSGreg Roach </li> 29dd6b2bfcSGreg Roach <li> 30dd6b2bfcSGreg 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') ?> 31dd6b2bfcSGreg Roach </li> 32dd6b2bfcSGreg Roach</ul> 33