|
@@ 165-169 (lines=5) @@
|
| 162 |
|
<label> |
| 163 |
|
<input type="radio" name="others" value="parents"> |
| 164 |
|
<?php |
| 165 |
|
if ($record->getSex() === 'F') { |
| 166 |
|
echo /* I18N: %s is a woman's name */ I18N::translate('%s, her parents and siblings', $record->getFullName()); |
| 167 |
|
} else { |
| 168 |
|
echo /* I18N: %s is a man's name */ I18N::translate('%s, his parents and siblings', $record->getFullName()); |
| 169 |
|
} |
| 170 |
|
?> |
| 171 |
|
</label> |
| 172 |
|
</td> |
|
@@ 179-183 (lines=5) @@
|
| 176 |
|
<label> |
| 177 |
|
<input type="radio" name="others" value="members"> |
| 178 |
|
<?php |
| 179 |
|
if ($record->getSex() === 'F') { |
| 180 |
|
echo /* I18N: %s is a woman's name */ I18N::translate('%s, her spouses and children', $record->getFullName()); |
| 181 |
|
} else { |
| 182 |
|
echo /* I18N: %s is a man's name */ I18N::translate('%s, his spouses and children', $record->getFullName()); |
| 183 |
|
} |
| 184 |
|
?> |
| 185 |
|
</label> |
| 186 |
|
</td> |
|
@@ 193-197 (lines=5) @@
|
| 190 |
|
<label> |
| 191 |
|
<input type="radio" name="others" value="ancestors" id="ancestors"> |
| 192 |
|
<?php |
| 193 |
|
if ($record->getSex() === 'F') { |
| 194 |
|
echo /* I18N: %s is a woman's name */ I18N::translate('%s and her ancestors', $record->getFullName()); |
| 195 |
|
} else { |
| 196 |
|
echo /* I18N: %s is a man's name */ I18N::translate('%s and his ancestors', $record->getFullName()); |
| 197 |
|
} |
| 198 |
|
?> |
| 199 |
|
</label> |
| 200 |
|
<br> |
|
@@ 210-214 (lines=5) @@
|
| 207 |
|
<label> |
| 208 |
|
<input type="radio" name="others" value="ancestorsfamilies" id="ancestorsfamilies"> |
| 209 |
|
<?php |
| 210 |
|
if ($record->getSex() === 'F') { |
| 211 |
|
echo /* I18N: %s is a woman's name */ I18N::translate('%s, her ancestors and their families', $record->getFullName()); |
| 212 |
|
} else { |
| 213 |
|
echo /* I18N: %s is a man's name */ I18N::translate('%s, his ancestors and their families', $record->getFullName()); |
| 214 |
|
} |
| 215 |
|
?> |
| 216 |
|
</label> |
| 217 |
|
<br > |
|
@@ 227-231 (lines=5) @@
|
| 224 |
|
<label> |
| 225 |
|
<input type="radio" name="others" value="descendants" id="descendants"> |
| 226 |
|
<?php |
| 227 |
|
if ($record->getSex() === 'F') { |
| 228 |
|
echo /* I18N: %s is a woman's name */ I18N::translate('%s, her spouses and descendants', $record->getFullName()); |
| 229 |
|
} else { |
| 230 |
|
echo /* I18N: %s is a man's name */ I18N::translate('%s, his spouses and descendants', $record->getFullName()); |
| 231 |
|
} |
| 232 |
|
?> |
| 233 |
|
</label> |
| 234 |
|
<br > |