summaryrefslogtreecommitdiff
path: root/help_text.php
diff options
context:
space:
mode:
authorScrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>2015-01-18 21:44:41 +0000
committerScrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>2015-01-18 21:44:41 +0000
commit6f021f780be7c181ecc6fe06a645f1a6ded0936a (patch)
tree82ca621bf5e60120688ce6b5a4a6a70e9ee8a09f /help_text.php
parent36a7643b44914916917dd6ccf1cddc24c66095b8 (diff)
downloadwebtrees-6f021f780be7c181ecc6fe06a645f1a6ded0936a.tar.gz
webtrees-6f021f780be7c181ecc6fe06a645f1a6ded0936a.tar.bz2
webtrees-6f021f780be7c181ecc6fe06a645f1a6ded0936a.zip
Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
Diffstat (limited to 'help_text.php')
-rw-r--r--help_text.php660
1 files changed, 330 insertions, 330 deletions
diff --git a/help_text.php b/help_text.php
index 8bf7a81505..31a6a6d628 100644
--- a/help_text.php
+++ b/help_text.php
@@ -46,34 +46,34 @@ switch ($help) {
//////////////////////////////////////////////////////////////////////////////
case 'ADDR':
- $title=WT_Gedcom_Tag::getLabel('ADDR');
- $text=WT_I18N::translate('Enter the address into the field just as you would write it on an envelope.<br><br>Leave this field blank if you do not want to include an address.');
+ $title = WT_Gedcom_Tag::getLabel('ADDR');
+ $text = WT_I18N::translate('Enter the address into the field just as you would write it on an envelope.<br><br>Leave this field blank if you do not want to include an address.');
break;
case 'AGNC':
- $title=WT_Gedcom_Tag::getLabel('AGNC');
- $text=WT_I18N::translate('The organization, institution, corporation, individual, or other entity that has authority.<br><br>For example, an employer of an individual, or a church that administered rites or events, or an organization responsible for creating and/or archiving records.');
+ $title = WT_Gedcom_Tag::getLabel('AGNC');
+ $text = WT_I18N::translate('The organization, institution, corporation, individual, or other entity that has authority.<br><br>For example, an employer of an individual, or a church that administered rites or events, or an organization responsible for creating and/or archiving records.');
break;
case 'ASSO_1':
- $title=WT_Gedcom_Tag::getLabel('ASSO');
- $text=WT_I18N::translate('An associate is another individual who was involved with this individual, such as a friend or an employer.');
+ $title = WT_Gedcom_Tag::getLabel('ASSO');
+ $text = WT_I18N::translate('An associate is another individual who was involved with this individual, such as a friend or an employer.');
break;
case 'ASSO_2':
- $title=WT_Gedcom_Tag::getLabel('ASSO');
- $text=WT_I18N::translate('An associate is another individual who was involved with this fact or event, such as a witness or a priest.');
+ $title = WT_Gedcom_Tag::getLabel('ASSO');
+ $text = WT_I18N::translate('An associate is another individual who was involved with this fact or event, such as a witness or a priest.');
break;
case 'CAUS':
- $title=WT_Gedcom_Tag::getLabel('CAUS');
- $text=WT_I18N::translate('A description of the cause of the associated event or fact, such as the cause of death.');
+ $title = WT_Gedcom_Tag::getLabel('CAUS');
+ $text = WT_I18N::translate('A description of the cause of the associated event or fact, such as the cause of death.');
break;
case 'DATE':
- $title=WT_Gedcom_Tag::getLabel('DATE');
- $CALENDAR_FORMAT=null; // Don't perform conversions here - it will confuse the examples!
- $dates=array(
+ $title = WT_Gedcom_Tag::getLabel('DATE');
+ $CALENDAR_FORMAT = null; // Don't perform conversions here - it will confuse the examples!
+ $dates = array(
'1900' =>new WT_Date('1900'),
'JAN 1900' =>new WT_Date('JAN 1900'),
'FEB 1900' =>new WT_Date('FEB 1900'),
@@ -149,104 +149,104 @@ case 'DATE':
);
foreach ($dates as &$date) {
- $date=strip_tags($date->Display());
+ $date = strip_tags($date->Display());
}
// These shortcuts work differently for different languages
switch (preg_replace('/[^DMY]/', '', str_replace(array('J', 'F'), array('D', 'M'), strtoupper($DATE_FORMAT)))) {
case 'YMD':
- $example1='11/12/1913'; // Note: we ignore the DMY order if it doesn't make sense.
- $example2='03/02/01';
+ $example1 = '11/12/1913'; // Note: we ignore the DMY order if it doesn't make sense.
+ $example2 = '03/02/01';
break;
case 'MDY':
- $example1='12/11/1913';
- $example2='02/01/03';
+ $example1 = '12/11/1913';
+ $example2 = '02/01/03';
break;
case 'DMY':
default:
- $example1='11/12/1913';
- $example2='01/02/03';
+ $example1 = '11/12/1913';
+ $example2 = '01/02/03';
break;
}
- $example1.='<br>'.str_replace('/', '-', $example1).'<br>'.str_replace('/', '.', $example1);
- $example2.='<br>'.str_replace('/', '-', $example2).'<br>'.str_replace('/', '.', $example2);
- $text=
- '<p>'.WT_I18N::translate('Dates are stored using English abbreviations and keywords. Shortcuts are available as alternatives to these abbreviations and keywords.').'</p>'.
- '<table border="1">'.
- '<tr><th>'.WT_I18N::translate('Date').'</th><th>'.WT_I18N::translate('Format').'</th><th>'.WT_I18N::translate('Shortcut').'</th></tr>'.
- '<tr><td>'.$dates['1900'].'</td><td><tt dir="ltr" lang="en">1900</tt></td><td></td></tr>'.
- '<tr><td>'.$dates['JAN 1900'].'<br>'.$dates['FEB 1900'].'<br>'.$dates['MAR 1900'].'<br>'.$dates['APR 1900'].'<br>'.$dates['MAY 1900'].'<br>'.$dates['JUN 1900'].'<br>'.$dates['JUL 1900'].'<br>'.$dates['AUG 1900'].'<br>'.$dates['SEP 1900'].'<br>'.$dates['OCT 1900'].'<br>'.$dates['NOV 1900'].'<br>'.$dates['DEC 1900'].'</td><td><tt dir="ltr" lang="en">JAN 1900<br>FEB 1900<br>MAR 1900<br>APR 1900<br>MAY 1900<br>JUN 1900<br>JUL 1900<br>AUG 1900<br>SEP 1900<br>OCT 1900<br>NOV 1900<br>DEC 1900</tt></td><td></td></tr>'.
- '<tr><td>'.$dates['11 DEC 1913'].'</td><td><tt dir="ltr" lang="en">11 DEC 1913</tt></td><td><tt dir="ltr" lang="en">'.$example1.'</tt></td></tr>'.
- '<tr><td>'.$dates['01 FEB 2003'].'</td><td><tt dir="ltr" lang="en">01 FEB 2003</tt></td><td><tt dir="ltr" lang="en">'.$example2.'</tt></td></tr>'.
- '<tr><td>'.$dates['ABT 1900'].'</td><td><tt dir="ltr" lang="en">ABT 1900</tt></td><td><tt dir="ltr" lang="en">~1900</tt></td></tr>'.
- '<tr><td>'.$dates['EST 1900'].'</td><td><tt dir="ltr" lang="en">EST 1900</tt></td><td><tt dir="ltr" lang="en">*1900</tt></td></tr>'.
- '<tr><td>'.$dates['CAL 1900'].'</td><td><tt dir="ltr" lang="en">CAL 1900</tt></td><td><tt dir="ltr" lang="en">#1900</tt></td></tr>'.
- '<tr><td>'.$dates['INT 1900 (...)'].'</td><td><tt dir="ltr" lang="en">INT 1900 (...)</tt></td><td></td></tr>'.
- '</table>'.
- '<p>'.WT_I18N::translate('Date ranges are used to indicate that an event, such as a birth, happened on an unknown date within a possible range.').'</p>'.
- '<table border="1">'.
- '<tr><th>'.WT_I18N::translate('Date range').'</th><th>'.WT_I18N::translate('Format').'</th><th>'.WT_I18N::translate('Shortcut').'</th></tr>'.
- '<tr><td>'.$dates['BET 1900 AND 1910'].'</td><td><tt dir="ltr" lang="en">BET 1900 AND 1910</tt></td><td><tt dir="ltr" lang="en">1900-1910</tt></td></tr>'.
- '<tr><td>'.$dates['AFT 1900'].'</td><td><tt dir="ltr" lang="en">AFT 1900</tt></td><td><tt dir="ltr" lang="en">&gt;1900</tt></td></tr>'.
- '<tr><td>'.$dates['BEF 1910'].'</td><td><tt dir="ltr" lang="en">BEF 1910</tt></td><td><tt dir="ltr" lang="en">&lt;1910</tt></td></tr>'.
- '<tr><td>'.$dates['BET JAN 1900 AND MAR 1900'].'</td><td><tt dir="ltr" lang="en">BET JAN 1900 AND MAR 1900</tt></td><td><tt dir="ltr" lang="en">Q1 1900</tt></td></tr>'.
- '<tr><td>'.$dates['BET APR 1900 AND JUN 1900'].'</td><td><tt dir="ltr" lang="en">BET APR 1900 AND JUN 1900</tt></td><td><tt dir="ltr" lang="en">Q2 1900</tt></td></tr>'.
- '<tr><td>'.$dates['BET JUL 1900 AND SEP 1900'].'</td><td><tt dir="ltr" lang="en">BET JUL 1900 AND SEP 1900</tt></td><td><tt dir="ltr" lang="en">Q3 1900</tt></td></tr>'.
- '<tr><td>'.$dates['BET OCT 1900 AND DEC 1900'].'</td><td><tt dir="ltr" lang="en">BET OCT 1900 AND DEC 1900</tt></td><td><tt dir="ltr" lang="en">Q4 1900</tt></td></tr>'.
- '</table>'.
- '<p>'.WT_I18N::translate('Date periods are used to indicate that a fact, such as an occupation, continued for a period of time.').'</p>'.
- '<table border="1">'.
- '<tr><th>'.WT_I18N::translate('Date period').'</th><th>'.WT_I18N::translate('Format').'</th><th>'.WT_I18N::translate('Shortcut').'</th></tr>'.
- '<tr><td>'.$dates['FROM 1900 TO 1910'].'</td><td><tt dir="ltr" lang="en">FROM 1900 TO 1910</tt></td><td><tt dir="ltr" lang="en">1900~1910</tt></td></tr>'.
- '<tr><td>'.$dates['FROM 1900'].'</td><td><tt dir="ltr" lang="en">FROM 1900</tt></td><td><tt dir="ltr" lang="en">1900-</tt></td></tr>'.
- '<tr><td>'.$dates['TO 1910'].'</td><td><tt dir="ltr" lang="en">TO 1910</tt></td><td><tt dir="ltr" lang="en">-1900</tt></td></tr>'.
- '</table>'.
- '<p>'.WT_I18N::translate('Simple dates are assumed to be in the gregorian calendar. To specify a date in another calendar, add a keyword before the date. This keyword is optional if the month or year format make the date unambiguous.').'</p>'.
- '<table border="1">'.
- '<tr><th>'.WT_I18N::translate('Date').'</th><th>'.WT_I18N::translate('Format').'</th></tr>'.
- '<tr><td colspan="2" align="center">'.WT_I18N::translate('Julian').'</td></tr>'.
- '<tr><td>'.$dates['@#DJULIAN@ 14 JAN 1700'].'</td><td><tt dir="ltr" lang="en">@#DJULIAN@ 14 JAN 1700</tt></td></tr>'.
- '<tr><td>'.$dates['@#DJULIAN@ 44 B.C.'].'</td><td><tt dir="ltr" lang="en">@#DJULIAN@ 44 B.C.</tt></td></tr>'.
- '<tr><td>'.$dates['@#DJULIAN@ 20 FEB 1742/43'].'</td><td><tt dir="ltr" lang="en">@#DJULIAN@ 20 FEB 1742/43</tt></td></tr>'.
- '<tr><td>'.$dates['BET @#DJULIAN@ 01 SEP 1752 AND @#DGREGORIAN@ 30 SEP 1752'].'</td><td><tt dir="ltr" lang="en">BET @#DJULIAN@ 01 SEP 1752 AND @#DGREGORIAN@ 30 SEP 1752</tt></td></tr>'.
- '<tr><td colspan="2" align="center">'.WT_I18N::translate('Jewish').'</td></tr>'.
- '<tr><td>'.$dates['@#DHEBREW@ 5481'].'</td><td><tt dir="ltr" lang="en">@#DHEBREW@ 5481</tt></td></tr>'.
- '<tr><td>'.$dates['@#DHEBREW@ TSH 5481'].'</td><td><tt dir="ltr" lang="en">@#DHEBREW@ TSH 5481</tt></td></tr>'.
- '<tr><td>'.$dates['ABT @#DHEBREW@ CSH 5481'].'</td><td><tt dir="ltr" lang="en">ABT @#DHEBREW@ CSH 5481</tt></td></tr>'.
- '<tr><td>'.$dates['BET @#DHEBREW@ KSL 5481 AND @#DHEBREW@ TVT 5481'].'</td><td><tt dir="ltr" lang="en">BET @#DHEBREW@ KSL 5481 AND @#DHEBREW@ TVT 5481</tt></td></tr>'.
- '<tr><td>'.$dates['FROM @#DHEBREW@ SHV 5481 TO @#DHEBREW@ ADR 5481'].'</td><td><tt dir="ltr" lang="en">FROM @#DHEBREW@ SHV 5481 TO @#DHEBREW@ ADR 5481</tt></td></tr>'.
- '<tr><td>'.$dates['AFT @#DHEBREW@ ADR 5481'].'</td><td><tt dir="ltr" lang="en">AFT @#DHEBREW@ ADR 5481</tt></td></tr>'.
- '<tr><td>'.$dates['AFT @#DHEBREW@ ADS 5480'].'</td><td><tt dir="ltr" lang="en">AFT @#DHEBREW@ ADS 5480</tt></td></tr>'.
- '<tr><td>'.$dates['BEF @#DHEBREW@ NSN 5481'].'</td><td><tt dir="ltr" lang="en">BEF @#DHEBREW@ NSN 5481</tt></td></tr>'.
- '<tr><td>'.$dates['ABT @#DHEBREW@ IYR 5481'].'</td><td><tt dir="ltr" lang="en">ABT @#DHEBREW@ IYR 5481</tt></td></tr>'.
- '<tr><td>'.$dates['FROM @#DHEBREW@ SVN 5481'].'</td><td><tt dir="ltr" lang="en">FROM @#DHEBREW@ SVN 5481</tt></td></tr>'.
- '<tr><td>'.$dates['TO @#DHEBREW@ TMZ 5481'].'</td><td><tt dir="ltr" lang="en">TO @#DHEBREW@ TMZ 5481</tt></td></tr>'.
- '<tr><td>'.$dates['EST @#DHEBREW@ AAV 5481'].'</td><td><tt dir="ltr" lang="en">EST @#DHEBREW@ AAV 5481</tt></td></tr>'.
- '<tr><td>'.$dates['@#DHEBREW@ 03 ELL 5481'].'</td><td><tt dir="ltr" lang="en">@#DHEBREW@ 03 ELL 5481</tt></td></tr>'.
- '<tr><td colspan="2" align="center">'.WT_I18N::translate('Hijri').'</td></tr>'.
- '<tr><td>'.$dates['@#DHIJRI@ 1497'].'</td><td><tt dir="ltr" lang="en">@#DHIJRI@ 1497</tt></td></tr>'.
- '<tr><td>'.$dates['@#DHIJRI@ MUHAR 1497'].'</td><td><tt dir="ltr" lang="en">@#DHIJRI@ MUHAR 1497</tt></td></tr>'.
- '<tr><td>'.$dates['ABT @#DHIJRI@ SAFAR 1497'].'</td><td><tt dir="ltr" lang="en">ABT @#DHIJRI@ SAFAR 1497</tt></td></tr>'.
- '<tr><td>'.$dates['BET @#DHIJRI@ RABIA 1497 AND @#DHIJRI@ RABIT 1497'].'</td><td><tt dir="ltr" lang="en">BET @#DHIJRI@ RABIA 1497 AND @#DHIJRI@ RABIT 1497</tt></td></tr>'.
- '<tr><td>'.$dates['FROM @#DHIJRI@ JUMAA 1497 TO @#DHIJRI@ JUMAT 1497'].'</td><td><tt dir="ltr" lang="en">FROM @#DHIJRI@ JUMAA 1497 TO @#DHIJRI@ JUMAT 1497</tt></td></tr>'.
- '<tr><td>'.$dates['AFT @#DHIJRI@ RAJAB 1497'].'</td><td><tt dir="ltr" lang="en">AFT @#DHIJRI@ RAJAB 1497</tt></td></tr>'.
- '<tr><td>'.$dates['BEF @#DHIJRI@ SHAAB 1497'].'</td><td><tt dir="ltr" lang="en">BEF @#DHIJRI@ SHAAB 1497</tt></td></tr>'.
- '<tr><td>'.$dates['ABT @#DHIJRI@ RAMAD 1497'].'</td><td><tt dir="ltr" lang="en">ABT @#DHIJRI@ RAMAD 1497</tt></td></tr>'.
- '<tr><td>'.$dates['FROM @#DHIJRI@ SHAWW 1497'].'</td><td><tt dir="ltr" lang="en">FROM @#DHIJRI@ SHAWW 1497</tt></td></tr>'.
- '<tr><td>'.$dates['TO @#DHIJRI@ DHUAQ 1497'].'</td><td><tt dir="ltr" lang="en">TO @#DHIJRI@ DHUAQ 1497</tt></td></tr>'.
- '<tr><td>'.$dates['@#DHIJRI@ 03 DHUAH 1497'].'</td><td><tt dir="ltr" lang="en">@#DHIJRI@ 03 DHUAH 1497</tt></td></tr>'.
- '<tr><td colspan="2" align="center">'.WT_I18N::translate('French').'</td></tr>'.
- '<tr><td>'.$dates['@#DFRENCH R@ 12'].'</td><td><tt dir="ltr" lang="en">@#DFRENCH R@ 12</tt></td></tr>'.
- '<tr><td>'.$dates['@#DFRENCH R@ VEND 12'].'</td><td><tt dir="ltr" lang="en">@#DFRENCH R@ VEND 12</tt></td></tr>'.
- '<tr><td>'.$dates['ABT @#DFRENCH R@ BRUM 12'].'</td><td><tt dir="ltr" lang="en">ABT @#DFRENCH R@ BRUM 12</tt></td></tr>'.
- '<tr><td>'.$dates['BET @#DFRENCH R@ FRIM 12 AND @#DFRENCH R@ NIVO 12'].'</td><td><tt dir="ltr" lang="en">BET @#DFRENCH R@ FRIM 12 AND @#DFRENCH R@ NIVO 12</tt></td></tr>'.
- '<tr><td>'.$dates['FROM @#DFRENCH R@ PLUV 12 TO @#DFRENCH R@ VENT 12'].'</td><td><tt dir="ltr" lang="en">FROM @#DFRENCH R@ PLUV 12 TO @#DFRENCH R@ VENT 12</tt></td></tr>'.
- '<tr><td>'.$dates['AFT @#DFRENCH R@ GERM 12'].'</td><td><tt dir="ltr" lang="en">AFT @#DFRENCH R@ GERM 12</tt></td></tr>'.
- '<tr><td>'.$dates['BEF @#DFRENCH R@ FLOR 12'].'</td><td><tt dir="ltr" lang="en">BEF @#DFRENCH R@ FLOR 12</tt></td></tr>'.
- '<tr><td>'.$dates['ABT @#DFRENCH R@ PRAI 12'].'</td><td><tt dir="ltr" lang="en">ABT @#DFRENCH R@ PRAI 12</tt></td></tr>'.
- '<tr><td>'.$dates['FROM @#DFRENCH R@ MESS 12'].'</td><td><tt dir="ltr" lang="en">FROM @#DFRENCH R@ MESS 12</tt></td></tr>'.
- '<tr><td>'.$dates['TO @#DFRENCH R@ THER 12'].'</td><td><tt dir="ltr" lang="en">TO @#DFRENCH R@ THER 12</tt></td></tr>'.
- '<tr><td>'.$dates['EST @#DFRENCH R@ FRUC 12'].'</td><td><tt dir="ltr" lang="en">EST @#DFRENCH R@ FRUC 12</tt></td></tr>'.
- '<tr><td>'.$dates['@#DFRENCH R@ 03 COMP 12'].'</td><td><tt dir="ltr" lang="en">@#DFRENCH R@ 03 COMP 12</tt></td></tr>'.
+ $example1 .= '<br>' . str_replace('/', '-', $example1) . '<br>' . str_replace('/', '.', $example1);
+ $example2 .= '<br>' . str_replace('/', '-', $example2) . '<br>' . str_replace('/', '.', $example2);
+ $text =
+ '<p>' . WT_I18N::translate('Dates are stored using English abbreviations and keywords. Shortcuts are available as alternatives to these abbreviations and keywords.') . '</p>' .
+ '<table border="1">' .
+ '<tr><th>' . WT_I18N::translate('Date') . '</th><th>' . WT_I18N::translate('Format') . '</th><th>' . WT_I18N::translate('Shortcut') . '</th></tr>' .
+ '<tr><td>' . $dates['1900'] . '</td><td><tt dir="ltr" lang="en">1900</tt></td><td></td></tr>' .
+ '<tr><td>' . $dates['JAN 1900'] . '<br>' . $dates['FEB 1900'] . '<br>' . $dates['MAR 1900'] . '<br>' . $dates['APR 1900'] . '<br>' . $dates['MAY 1900'] . '<br>' . $dates['JUN 1900'] . '<br>' . $dates['JUL 1900'] . '<br>' . $dates['AUG 1900'] . '<br>' . $dates['SEP 1900'] . '<br>' . $dates['OCT 1900'] . '<br>' . $dates['NOV 1900'] . '<br>' . $dates['DEC 1900'] . '</td><td><tt dir="ltr" lang="en">JAN 1900<br>FEB 1900<br>MAR 1900<br>APR 1900<br>MAY 1900<br>JUN 1900<br>JUL 1900<br>AUG 1900<br>SEP 1900<br>OCT 1900<br>NOV 1900<br>DEC 1900</tt></td><td></td></tr>' .
+ '<tr><td>' . $dates['11 DEC 1913'] . '</td><td><tt dir="ltr" lang="en">11 DEC 1913</tt></td><td><tt dir="ltr" lang="en">' . $example1 . '</tt></td></tr>' .
+ '<tr><td>' . $dates['01 FEB 2003'] . '</td><td><tt dir="ltr" lang="en">01 FEB 2003</tt></td><td><tt dir="ltr" lang="en">' . $example2 . '</tt></td></tr>' .
+ '<tr><td>' . $dates['ABT 1900'] . '</td><td><tt dir="ltr" lang="en">ABT 1900</tt></td><td><tt dir="ltr" lang="en">~1900</tt></td></tr>' .
+ '<tr><td>' . $dates['EST 1900'] . '</td><td><tt dir="ltr" lang="en">EST 1900</tt></td><td><tt dir="ltr" lang="en">*1900</tt></td></tr>' .
+ '<tr><td>' . $dates['CAL 1900'] . '</td><td><tt dir="ltr" lang="en">CAL 1900</tt></td><td><tt dir="ltr" lang="en">#1900</tt></td></tr>' .
+ '<tr><td>' . $dates['INT 1900 (...)'] . '</td><td><tt dir="ltr" lang="en">INT 1900 (...)</tt></td><td></td></tr>' .
+ '</table>' .
+ '<p>' . WT_I18N::translate('Date ranges are used to indicate that an event, such as a birth, happened on an unknown date within a possible range.') . '</p>' .
+ '<table border="1">' .
+ '<tr><th>' . WT_I18N::translate('Date range') . '</th><th>' . WT_I18N::translate('Format') . '</th><th>' . WT_I18N::translate('Shortcut') . '</th></tr>' .
+ '<tr><td>' . $dates['BET 1900 AND 1910'] . '</td><td><tt dir="ltr" lang="en">BET 1900 AND 1910</tt></td><td><tt dir="ltr" lang="en">1900-1910</tt></td></tr>' .
+ '<tr><td>' . $dates['AFT 1900'] . '</td><td><tt dir="ltr" lang="en">AFT 1900</tt></td><td><tt dir="ltr" lang="en">&gt;1900</tt></td></tr>' .
+ '<tr><td>' . $dates['BEF 1910'] . '</td><td><tt dir="ltr" lang="en">BEF 1910</tt></td><td><tt dir="ltr" lang="en">&lt;1910</tt></td></tr>' .
+ '<tr><td>' . $dates['BET JAN 1900 AND MAR 1900'] . '</td><td><tt dir="ltr" lang="en">BET JAN 1900 AND MAR 1900</tt></td><td><tt dir="ltr" lang="en">Q1 1900</tt></td></tr>' .
+ '<tr><td>' . $dates['BET APR 1900 AND JUN 1900'] . '</td><td><tt dir="ltr" lang="en">BET APR 1900 AND JUN 1900</tt></td><td><tt dir="ltr" lang="en">Q2 1900</tt></td></tr>' .
+ '<tr><td>' . $dates['BET JUL 1900 AND SEP 1900'] . '</td><td><tt dir="ltr" lang="en">BET JUL 1900 AND SEP 1900</tt></td><td><tt dir="ltr" lang="en">Q3 1900</tt></td></tr>' .
+ '<tr><td>' . $dates['BET OCT 1900 AND DEC 1900'] . '</td><td><tt dir="ltr" lang="en">BET OCT 1900 AND DEC 1900</tt></td><td><tt dir="ltr" lang="en">Q4 1900</tt></td></tr>' .
+ '</table>' .
+ '<p>' . WT_I18N::translate('Date periods are used to indicate that a fact, such as an occupation, continued for a period of time.') . '</p>' .
+ '<table border="1">' .
+ '<tr><th>' . WT_I18N::translate('Date period') . '</th><th>' . WT_I18N::translate('Format') . '</th><th>' . WT_I18N::translate('Shortcut') . '</th></tr>' .
+ '<tr><td>' . $dates['FROM 1900 TO 1910'] . '</td><td><tt dir="ltr" lang="en">FROM 1900 TO 1910</tt></td><td><tt dir="ltr" lang="en">1900~1910</tt></td></tr>' .
+ '<tr><td>' . $dates['FROM 1900'] . '</td><td><tt dir="ltr" lang="en">FROM 1900</tt></td><td><tt dir="ltr" lang="en">1900-</tt></td></tr>' .
+ '<tr><td>' . $dates['TO 1910'] . '</td><td><tt dir="ltr" lang="en">TO 1910</tt></td><td><tt dir="ltr" lang="en">-1900</tt></td></tr>' .
+ '</table>' .
+ '<p>' . WT_I18N::translate('Simple dates are assumed to be in the gregorian calendar. To specify a date in another calendar, add a keyword before the date. This keyword is optional if the month or year format make the date unambiguous.') . '</p>' .
+ '<table border="1">' .
+ '<tr><th>' . WT_I18N::translate('Date') . '</th><th>' . WT_I18N::translate('Format') . '</th></tr>' .
+ '<tr><td colspan="2" align="center">' . WT_I18N::translate('Julian') . '</td></tr>' .
+ '<tr><td>' . $dates['@#DJULIAN@ 14 JAN 1700'] . '</td><td><tt dir="ltr" lang="en">@#DJULIAN@ 14 JAN 1700</tt></td></tr>' .
+ '<tr><td>' . $dates['@#DJULIAN@ 44 B.C.'] . '</td><td><tt dir="ltr" lang="en">@#DJULIAN@ 44 B.C.</tt></td></tr>' .
+ '<tr><td>' . $dates['@#DJULIAN@ 20 FEB 1742/43'] . '</td><td><tt dir="ltr" lang="en">@#DJULIAN@ 20 FEB 1742/43</tt></td></tr>' .
+ '<tr><td>' . $dates['BET @#DJULIAN@ 01 SEP 1752 AND @#DGREGORIAN@ 30 SEP 1752'] . '</td><td><tt dir="ltr" lang="en">BET @#DJULIAN@ 01 SEP 1752 AND @#DGREGORIAN@ 30 SEP 1752</tt></td></tr>' .
+ '<tr><td colspan="2" align="center">' . WT_I18N::translate('Jewish') . '</td></tr>' .
+ '<tr><td>' . $dates['@#DHEBREW@ 5481'] . '</td><td><tt dir="ltr" lang="en">@#DHEBREW@ 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['@#DHEBREW@ TSH 5481'] . '</td><td><tt dir="ltr" lang="en">@#DHEBREW@ TSH 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['ABT @#DHEBREW@ CSH 5481'] . '</td><td><tt dir="ltr" lang="en">ABT @#DHEBREW@ CSH 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['BET @#DHEBREW@ KSL 5481 AND @#DHEBREW@ TVT 5481'] . '</td><td><tt dir="ltr" lang="en">BET @#DHEBREW@ KSL 5481 AND @#DHEBREW@ TVT 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['FROM @#DHEBREW@ SHV 5481 TO @#DHEBREW@ ADR 5481'] . '</td><td><tt dir="ltr" lang="en">FROM @#DHEBREW@ SHV 5481 TO @#DHEBREW@ ADR 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['AFT @#DHEBREW@ ADR 5481'] . '</td><td><tt dir="ltr" lang="en">AFT @#DHEBREW@ ADR 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['AFT @#DHEBREW@ ADS 5480'] . '</td><td><tt dir="ltr" lang="en">AFT @#DHEBREW@ ADS 5480</tt></td></tr>' .
+ '<tr><td>' . $dates['BEF @#DHEBREW@ NSN 5481'] . '</td><td><tt dir="ltr" lang="en">BEF @#DHEBREW@ NSN 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['ABT @#DHEBREW@ IYR 5481'] . '</td><td><tt dir="ltr" lang="en">ABT @#DHEBREW@ IYR 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['FROM @#DHEBREW@ SVN 5481'] . '</td><td><tt dir="ltr" lang="en">FROM @#DHEBREW@ SVN 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['TO @#DHEBREW@ TMZ 5481'] . '</td><td><tt dir="ltr" lang="en">TO @#DHEBREW@ TMZ 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['EST @#DHEBREW@ AAV 5481'] . '</td><td><tt dir="ltr" lang="en">EST @#DHEBREW@ AAV 5481</tt></td></tr>' .
+ '<tr><td>' . $dates['@#DHEBREW@ 03 ELL 5481'] . '</td><td><tt dir="ltr" lang="en">@#DHEBREW@ 03 ELL 5481</tt></td></tr>' .
+ '<tr><td colspan="2" align="center">' . WT_I18N::translate('Hijri') . '</td></tr>' .
+ '<tr><td>' . $dates['@#DHIJRI@ 1497'] . '</td><td><tt dir="ltr" lang="en">@#DHIJRI@ 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['@#DHIJRI@ MUHAR 1497'] . '</td><td><tt dir="ltr" lang="en">@#DHIJRI@ MUHAR 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['ABT @#DHIJRI@ SAFAR 1497'] . '</td><td><tt dir="ltr" lang="en">ABT @#DHIJRI@ SAFAR 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['BET @#DHIJRI@ RABIA 1497 AND @#DHIJRI@ RABIT 1497'] . '</td><td><tt dir="ltr" lang="en">BET @#DHIJRI@ RABIA 1497 AND @#DHIJRI@ RABIT 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['FROM @#DHIJRI@ JUMAA 1497 TO @#DHIJRI@ JUMAT 1497'] . '</td><td><tt dir="ltr" lang="en">FROM @#DHIJRI@ JUMAA 1497 TO @#DHIJRI@ JUMAT 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['AFT @#DHIJRI@ RAJAB 1497'] . '</td><td><tt dir="ltr" lang="en">AFT @#DHIJRI@ RAJAB 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['BEF @#DHIJRI@ SHAAB 1497'] . '</td><td><tt dir="ltr" lang="en">BEF @#DHIJRI@ SHAAB 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['ABT @#DHIJRI@ RAMAD 1497'] . '</td><td><tt dir="ltr" lang="en">ABT @#DHIJRI@ RAMAD 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['FROM @#DHIJRI@ SHAWW 1497'] . '</td><td><tt dir="ltr" lang="en">FROM @#DHIJRI@ SHAWW 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['TO @#DHIJRI@ DHUAQ 1497'] . '</td><td><tt dir="ltr" lang="en">TO @#DHIJRI@ DHUAQ 1497</tt></td></tr>' .
+ '<tr><td>' . $dates['@#DHIJRI@ 03 DHUAH 1497'] . '</td><td><tt dir="ltr" lang="en">@#DHIJRI@ 03 DHUAH 1497</tt></td></tr>' .
+ '<tr><td colspan="2" align="center">' . WT_I18N::translate('French') . '</td></tr>' .
+ '<tr><td>' . $dates['@#DFRENCH R@ 12'] . '</td><td><tt dir="ltr" lang="en">@#DFRENCH R@ 12</tt></td></tr>' .
+ '<tr><td>' . $dates['@#DFRENCH R@ VEND 12'] . '</td><td><tt dir="ltr" lang="en">@#DFRENCH R@ VEND 12</tt></td></tr>' .
+ '<tr><td>' . $dates['ABT @#DFRENCH R@ BRUM 12'] . '</td><td><tt dir="ltr" lang="en">ABT @#DFRENCH R@ BRUM 12</tt></td></tr>' .
+ '<tr><td>' . $dates['BET @#DFRENCH R@ FRIM 12 AND @#DFRENCH R@ NIVO 12'] . '</td><td><tt dir="ltr" lang="en">BET @#DFRENCH R@ FRIM 12 AND @#DFRENCH R@ NIVO 12</tt></td></tr>' .
+ '<tr><td>' . $dates['FROM @#DFRENCH R@ PLUV 12 TO @#DFRENCH R@ VENT 12'] . '</td><td><tt dir="ltr" lang="en">FROM @#DFRENCH R@ PLUV 12 TO @#DFRENCH R@ VENT 12</tt></td></tr>' .
+ '<tr><td>' . $dates['AFT @#DFRENCH R@ GERM 12'] . '</td><td><tt dir="ltr" lang="en">AFT @#DFRENCH R@ GERM 12</tt></td></tr>' .
+ '<tr><td>' . $dates['BEF @#DFRENCH R@ FLOR 12'] . '</td><td><tt dir="ltr" lang="en">BEF @#DFRENCH R@ FLOR 12</tt></td></tr>' .
+ '<tr><td>' . $dates['ABT @#DFRENCH R@ PRAI 12'] . '</td><td><tt dir="ltr" lang="en">ABT @#DFRENCH R@ PRAI 12</tt></td></tr>' .
+ '<tr><td>' . $dates['FROM @#DFRENCH R@ MESS 12'] . '</td><td><tt dir="ltr" lang="en">FROM @#DFRENCH R@ MESS 12</tt></td></tr>' .
+ '<tr><td>' . $dates['TO @#DFRENCH R@ THER 12'] . '</td><td><tt dir="ltr" lang="en">TO @#DFRENCH R@ THER 12</tt></td></tr>' .
+ '<tr><td>' . $dates['EST @#DFRENCH R@ FRUC 12'] . '</td><td><tt dir="ltr" lang="en">EST @#DFRENCH R@ FRUC 12</tt></td></tr>' .
+ '<tr><td>' . $dates['@#DFRENCH R@ 03 COMP 12'] . '</td><td><tt dir="ltr" lang="en">@#DFRENCH R@ 03 COMP 12</tt></td></tr>' .
'</table>';
break;
@@ -254,24 +254,24 @@ case 'EMAI':
case 'EMAIL':
case 'EMAL':
case '_EMAIL':
- $title=WT_Gedcom_Tag::getLabel('EMAIL');
- $text=WT_I18N::translate('Enter the email address.<br><br>An example email address looks like this: <b>name@hotmail.com</b> Leave this field blank if you do not want to include an email address.');
+ $title = WT_Gedcom_Tag::getLabel('EMAIL');
+ $text = WT_I18N::translate('Enter the email address.<br><br>An example email address looks like this: <b>name@hotmail.com</b> Leave this field blank if you do not want to include an email address.');
break;
case 'FAX':
- $title=WT_Gedcom_Tag::getLabel('FAX');
- $text=WT_I18N::translate('Enter the FAX number including the country and area code.<br><br>Leave this field blank if you do not want to include a FAX number. For example, a number in Germany might be +49 25859 56 76 89 and a number in USA or Canada might be +1 888 555-1212.');
+ $title = WT_Gedcom_Tag::getLabel('FAX');
+ $text = WT_I18N::translate('Enter the FAX number including the country and area code.<br><br>Leave this field blank if you do not want to include a FAX number. For example, a number in Germany might be +49 25859 56 76 89 and a number in USA or Canada might be +1 888 555-1212.');
break;
case 'FORM':
- $title=WT_Gedcom_Tag::getLabel('FORM');
- $text=WT_I18N::translate('This is an optional field that can be used to enter the file format of the media object. Some genealogy programs may look at this field to determine how to handle the item. However, since media do not transfer across computer systems very well, this field is not very important.');
+ $title = WT_Gedcom_Tag::getLabel('FORM');
+ $text = WT_I18N::translate('This is an optional field that can be used to enter the file format of the media object. Some genealogy programs may look at this field to determine how to handle the item. However, since media do not transfer across computer systems very well, this field is not very important.');
break;
// This help text is used for all NAME components
case 'NAME':
- $title=WT_Gedcom_Tag::getLabel('NAME');
- $text=
+ $title = WT_Gedcom_Tag::getLabel('NAME');
+ $text =
'<p>' .
WT_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 genealogical annotations to identify different parts of the name.') .
'</p>' .
@@ -291,111 +291,111 @@ case 'NAME':
break;
case 'SURN':
- $title=WT_Gedcom_Tag::getLabel('SURN');
- $text='<p>' .
+ $title = WT_Gedcom_Tag::getLabel('SURN');
+ $text = '<p>' .
WT_I18N::translate('The <b>surname</b> field contains a name that is used for sorting and grouping. It can be different to the individual’s actual surname which is always taken from the <b>name</b> field. This field can be used to sort surnames with or without a prefix (Gogh / van Gogh) and to group spelling variations or inflections (Kowalski / Kowalska). If an individual needs to be listed under more than one surname, each name should be separated by a comma.') .
'</p>';
break;
case 'NOTE':
- $title=WT_Gedcom_Tag::getLabel('NOTE');
- $text=WT_I18N::translate('Notes are free-form text and will appear in the Fact Details section of the page.');
+ $title = WT_Gedcom_Tag::getLabel('NOTE');
+ $text = WT_I18N::translate('Notes are free-form text and will appear in the Fact Details section of the page.');
break;
case 'OBJE':
- $title=WT_Gedcom_Tag::getLabel('OBJE');
- $text=
- '<p>'.
- WT_I18N::translate('A media object is a record in the family tree which contains information about a media file. This information may include a title, a copyright notice, a transcript, privacy restrictions, etc. The media file, such as the photo or video, can be stored locally (on this webserver) or remotely (on a different webserver).').
+ $title = WT_Gedcom_Tag::getLabel('OBJE');
+ $text =
+ '<p>' .
+ WT_I18N::translate('A media object is a record in the family tree which contains information about a media file. This information may include a title, a copyright notice, a transcript, privacy restrictions, etc. The media file, such as the photo or video, can be stored locally (on this webserver) or remotely (on a different webserver).') .
'</p>';
break;
case 'PAGE':
- $title=WT_Gedcom_Tag::getLabel('PAGE');
- $text=WT_I18N::translate('In the citation details field you would enter the page number or other information that might help someone find the information in the source.');
+ $title = WT_Gedcom_Tag::getLabel('PAGE');
+ $text = WT_I18N::translate('In the citation details field you would enter the page number or other information that might help someone find the information in the source.');
break;
case 'PEDI':
- $title=WT_Gedcom_Tag::getLabel('PEDI');
- $text=WT_I18N::translate('A child may have more than one set of parents. The relationship between the child and the parents can be biological, legal, or based on local culture and tradition. If no pedigree is specified, then a biological relationship will be assumed.');
+ $title = WT_Gedcom_Tag::getLabel('PEDI');
+ $text = WT_I18N::translate('A child may have more than one set of parents. The relationship between the child and the parents can be biological, legal, or based on local culture and tradition. If no pedigree is specified, then a biological relationship will be assumed.');
break;
case 'PHON':
- $title=WT_Gedcom_Tag::getLabel('PHON');
- $text=WT_I18N::translate('Enter the phone number including the country and area code.<br><br>Leave this field blank if you do not want to include a phone number. For example, a number in Germany might be +49 25859 56 76 89 and a number in USA or Canada might be +1 888 555-1212.');
+ $title = WT_Gedcom_Tag::getLabel('PHON');
+ $text = WT_I18N::translate('Enter the phone number including the country and area code.<br><br>Leave this field blank if you do not want to include a phone number. For example, a number in Germany might be +49 25859 56 76 89 and a number in USA or Canada might be +1 888 555-1212.');
break;
case 'PLAC':
- $title=WT_Gedcom_Tag::getLabel('PLAC');
- $text=WT_I18N::translate('Places should be entered according to the standards for genealogy. In genealogy, places are recorded with the most specific information about the place first and then working up to the least specific place last, using commas to separate the different place levels. The level at which you record the place information should represent the levels of government or church where vital records for that place are kept.<br><br>For example, a place like Salt Lake City would be entered as “Salt Lake City, Salt Lake, Utah, USA”.<br><br>Let’s examine each part of this place. The first part, “Salt Lake City,” is the city or township where the event occurred. In some countries, there may be municipalities or districts inside a city which are important to note. In that case, they should come before the city. The next part, “Salt Lake,” is the county. “Utah” is the state, and “USA” is the country. It is important to note each place because genealogical records are kept by the governments of each level.<br><br>If a level of the place is unknown, you should leave a space between the commas. Suppose, in the example above, you didn’t know the county for Salt Lake City. You should then record it like this: “Salt Lake City, , Utah, USA”. Suppose you only know that an individual was born in Utah. You would enter the information like this: “, , Utah, USA”. <br><br>You can use the <b>Find Place</b> link to help you find places that already exist in the database.');
+ $title = WT_Gedcom_Tag::getLabel('PLAC');
+ $text = WT_I18N::translate('Places should be entered according to the standards for genealogy. In genealogy, places are recorded with the most specific information about the place first and then working up to the least specific place last, using commas to separate the different place levels. The level at which you record the place information should represent the levels of government or church where vital records for that place are kept.<br><br>For example, a place like Salt Lake City would be entered as “Salt Lake City, Salt Lake, Utah, USA”.<br><br>Let’s examine each part of this place. The first part, “Salt Lake City,” is the city or township where the event occurred. In some countries, there may be municipalities or districts inside a city which are important to note. In that case, they should come before the city. The next part, “Salt Lake,” is the county. “Utah” is the state, and “USA” is the country. It is important to note each place because genealogical records are kept by the governments of each level.<br><br>If a level of the place is unknown, you should leave a space between the commas. Suppose, in the example above, you didn’t know the county for Salt Lake City. You should then record it like this: “Salt Lake City, , Utah, USA”. Suppose you only know that an individual was born in Utah. You would enter the information like this: “, , Utah, USA”. <br><br>You can use the <b>Find Place</b> link to help you find places that already exist in the database.');
break;
case 'RELA':
- $title=WT_Gedcom_Tag::getLabel('RELA');
- $text=WT_I18N::translate('Select a relationship name from the list. Selecting <b>Godfather</b> means: <i>This associate is the godfather of the current individual</i>.');
+ $title = WT_Gedcom_Tag::getLabel('RELA');
+ $text = WT_I18N::translate('Select a relationship name from the list. Selecting <b>Godfather</b> means: <i>This associate is the godfather of the current individual</i>.');
break;
case 'RESN':
- $title=WT_Gedcom_Tag::getLabel('RESN');
- $text=
- WT_I18N::translate('Restrictions can be added to records and/or facts. They restrict who can view the data and who can edit it.').
- '<br><br>'.
+ $title = WT_Gedcom_Tag::getLabel('RESN');
+ $text =
+ WT_I18N::translate('Restrictions can be added to records and/or facts. They restrict who can view the data and who can edit it.') .
+ '<br><br>' .
WT_I18N::translate('Note that if a user account is linked to a record, then that user will always be able to view that record.');
break;
case 'ROMN':
- $title=WT_Gedcom_Tag::getLabel('ROMN');
- $text=WT_I18N::translate('In many cultures it is customary to have a traditional name spelled in the traditional characters and also a romanized version of the name as it would be spelled or pronounced in languages based on the Latin alphabet, such as English.<br><br>If you prefer to use a non-Latin alphabet such as Hebrew, Greek, Russian, Chinese, or Arabic to enter the name in the standard name fields, then you can use this field to enter the same name using the Latin alphabet. Both versions of the name will appear in lists and charts.<br><br>Although this field is labeled “Romanized”, it is not restricted to containing only characters based on the Latin alphabet. This might be of use with Japanese names, where three different alphabets may occur.');
+ $title = WT_Gedcom_Tag::getLabel('ROMN');
+ $text = WT_I18N::translate('In many cultures it is customary to have a traditional name spelled in the traditional characters and also a romanized version of the name as it would be spelled or pronounced in languages based on the Latin alphabet, such as English.<br><br>If you prefer to use a non-Latin alphabet such as Hebrew, Greek, Russian, Chinese, or Arabic to enter the name in the standard name fields, then you can use this field to enter the same name using the Latin alphabet. Both versions of the name will appear in lists and charts.<br><br>Although this field is labeled “Romanized”, it is not restricted to containing only characters based on the Latin alphabet. This might be of use with Japanese names, where three different alphabets may occur.');
break;
case 'SEX':
- $title=WT_Gedcom_Tag::getLabel('SEX');
- $text=WT_I18N::translate('Choose the appropriate gender from the drop-down list. The <b>unknown</b> option indicates that the gender is unknown.');
+ $title = WT_Gedcom_Tag::getLabel('SEX');
+ $text = WT_I18N::translate('Choose the appropriate gender from the drop-down list. The <b>unknown</b> option indicates that the gender is unknown.');
break;
case 'SHARED_NOTE':
- $title=WT_Gedcom_Tag::getLabel('SHARED_NOTE');
- $text=WT_I18N::translate('Shared notes are free-form text and will appear in the Fact Details section of the page.<br><br>Each shared note can be linked to more than one individual, family, source, or event.');
+ $title = WT_Gedcom_Tag::getLabel('SHARED_NOTE');
+ $text = WT_I18N::translate('Shared notes are free-form text and will appear in the Fact Details section of the page.<br><br>Each shared note can be linked to more than one individual, family, source, or event.');
break;
case 'SOUR':
- $title=WT_Gedcom_Tag::getLabel('SOUR');
- $text=WT_I18N::translate('This field allows you to change the source record that this fact’s source citation links to. This field takes a source ID. Beside the field will be listed the title of the current source ID. Use the <b>Find ID</b> link to look up the source’s ID number. To remove the entire citation, make this field blank.');
+ $title = WT_Gedcom_Tag::getLabel('SOUR');
+ $text = WT_I18N::translate('This field allows you to change the source record that this fact’s source citation links to. This field takes a source ID. Beside the field will be listed the title of the current source ID. Use the <b>Find ID</b> link to look up the source’s ID number. To remove the entire citation, make this field blank.');
break;
case 'STAT':
- $title=WT_Gedcom_Tag::getLabel('STAT');
- $text=WT_I18N::translate('This is an optional status field and is used mostly for LDS ordinances as they are run through the TempleReady program.');
+ $title = WT_Gedcom_Tag::getLabel('STAT');
+ $text = WT_I18N::translate('This is an optional status field and is used mostly for LDS ordinances as they are run through the TempleReady program.');
break;
case 'TEMP':
- $title=WT_Gedcom_Tag::getLabel('TEMP');
- $text=WT_I18N::translate('For LDS ordinances, this field records the temple where it was performed.');
+ $title = WT_Gedcom_Tag::getLabel('TEMP');
+ $text = WT_I18N::translate('For LDS ordinances, this field records the temple where it was performed.');
break;
case 'TEXT':
- $title=WT_Gedcom_Tag::getLabel('TEXT');
- $text=WT_I18N::translate('In this field you would enter the citation text for this source. Examples of data may be a transcription of the text from the source, or a description of what was in the citation.');
+ $title = WT_Gedcom_Tag::getLabel('TEXT');
+ $text = WT_I18N::translate('In this field you would enter the citation text for this source. Examples of data may be a transcription of the text from the source, or a description of what was in the citation.');
break;
case 'TIME':
- $title=WT_Gedcom_Tag::getLabel('TIME');
- $text=WT_I18N::translate('Enter the time for this event in 24-hour format with leading zeroes. Midnight is 00:00. Examples: 04:50 13:00 20:30.');
+ $title = WT_Gedcom_Tag::getLabel('TIME');
+ $text = WT_I18N::translate('Enter the time for this event in 24-hour format with leading zeroes. Midnight is 00:00. Examples: 04:50 13:00 20:30.');
break;
case 'WWW':
- $title=WT_Gedcom_Tag::getLabel('WWW');
- $text=WT_I18N::translate('Enter the URL address including the http://.<br><br>An example URL looks like this: <b>http://www.webtrees.net/</b>. Leave this field blank if you do not want to include a URL.');
+ $title = WT_Gedcom_Tag::getLabel('WWW');
+ $text = WT_I18N::translate('Enter the URL address including the http://.<br><br>An example URL looks like this: <b>http://www.webtrees.net/</b>. Leave this field blank if you do not want to include a URL.');
break;
case '_HEB':
- $title=WT_Gedcom_Tag::getLabel('_HEB');
- $text=WT_I18N::translate('In many cultures it is customary to have a traditional name spelled in the traditional characters and also a romanized version of the name as it would be spelled or pronounced in languages based on the Latin alphabet, such as English.<br><br>If you prefer to use the Latin alphabet to enter the name in the standard name fields, then you can use this field to enter the same name in the non-Latin alphabet such as Greek, Hebrew, Russian, Arabic, or Chinese. Both versions of the name will appear in lists and charts.<br><br>Although this field is labeled “Hebrew”, it is not restricted to containing only Hebrew characters.');
+ $title = WT_Gedcom_Tag::getLabel('_HEB');
+ $text = WT_I18N::translate('In many cultures it is customary to have a traditional name spelled in the traditional characters and also a romanized version of the name as it would be spelled or pronounced in languages based on the Latin alphabet, such as English.<br><br>If you prefer to use the Latin alphabet to enter the name in the standard name fields, then you can use this field to enter the same name in the non-Latin alphabet such as Greek, Hebrew, Russian, Arabic, or Chinese. Both versions of the name will appear in lists and charts.<br><br>Although this field is labeled “Hebrew”, it is not restricted to containing only Hebrew characters.');
break;
case '_PRIM':
- $title=WT_Gedcom_Tag::getLabel('_PRIM');
- $text=WT_I18N::translate('Use this field to signal that this media item is the highlighted or primary item for the individual it is attached to. The highlighted image is the one that will be used on charts and on the individual’s page.');
+ $title = WT_Gedcom_Tag::getLabel('_PRIM');
+ $text = WT_I18N::translate('Use this field to signal that this media item is the highlighted or primary item for the individual it is attached to. The highlighted image is the one that will be used on charts and on the individual’s page.');
break;
//////////////////////////////////////////////////////////////////////////////
@@ -403,59 +403,59 @@ case '_PRIM':
//////////////////////////////////////////////////////////////////////////////
case 'CHECK_MARRIAGE_RELATIONS':
- $title=WT_I18N::translate('Check relationships by marriage');
- $text=WT_I18N::translate('When calculating relationships, this option controls whether webtrees will include spouses/partners as well as blood relatives.');
+ $title = WT_I18N::translate('Check relationships by marriage');
+ $text = WT_I18N::translate('When calculating relationships, this option controls whether webtrees will include spouses/partners as well as blood relatives.');
break;
case 'MAX_DESCENDANCY_GENERATIONS':
- $title=WT_I18N::translate('Maximum descendancy generations');
- $text=WT_I18N::translate('Set the maximum number of generations to display on descendancy charts.');
+ $title = WT_I18N::translate('Maximum descendancy generations');
+ $text = WT_I18N::translate('Set the maximum number of generations to display on descendancy charts.');
break;
case 'PEDIGREE_LAYOUT':
- $title=/* I18N: A site configuration setting */ WT_I18N::translate('Default pedigree chart layout');
- $text=/* I18N: Help text for the “Default pedigree chart layout” tree configuration setting */ WT_I18N::translate('This option indicates whether the pedigree chart should be generated in landscape or portrait mode.');
+ $title = /* I18N: A site configuration setting */ WT_I18N::translate('Default pedigree chart layout');
+ $text = /* I18N: Help text for the “Default pedigree chart layout” tree configuration setting */ WT_I18N::translate('This option indicates whether the pedigree chart should be generated in landscape or portrait mode.');
break;
case 'PEDIGREE_SHOW_GENDER':
- $title=WT_I18N::translate('Gender icon on charts');
- $text=WT_I18N::translate('This option controls whether or not to show the individual’s gender icon on charts.<br><br>Since the gender is also indicated by the color of the box, this option doesn’t conceal the gender. The option simply removes some duplicate information from the box.');
+ $title = WT_I18N::translate('Gender icon on charts');
+ $text = WT_I18N::translate('This option controls whether or not to show the individual’s gender icon on charts.<br><br>Since the gender is also indicated by the color of the box, this option doesn’t conceal the gender. The option simply removes some duplicate information from the box.');
break;
case 'RELATIONSHIP_PATH_LENGTH':
- $title=WT_I18N::translate('Restrict to immediate family');
- $text=
- WT_I18N::translate('Where a user is associated to an individual record in a family tree and has a role of member, editor, or moderator, you can prevent them from accessing the details of distant, living relations. You specify the number of relationship steps that the user is allowed to see.').
- '<br><br>'.
- WT_I18N::translate('For example, if you specify a path length of 2, the individual will be able to see their grandson (child, child), their aunt (parent, sibling), their step-daughter (spouse, child), but not their first cousin (parent, sibling, child).').
- '<br><br>'.
+ $title = WT_I18N::translate('Restrict to immediate family');
+ $text =
+ WT_I18N::translate('Where a user is associated to an individual record in a family tree and has a role of member, editor, or moderator, you can prevent them from accessing the details of distant, living relations. You specify the number of relationship steps that the user is allowed to see.') .
+ '<br><br>' .
+ WT_I18N::translate('For example, if you specify a path length of 2, the individual will be able to see their grandson (child, child), their aunt (parent, sibling), their step-daughter (spouse, child), but not their first cousin (parent, sibling, child).') .
+ '<br><br>' .
WT_I18N::translate('Note: longer path lengths require a lot of calculation, which can make your site run slowly for these users.');
break;
case 'SHOW_EST_LIST_DATES':
- $title=WT_I18N::translate('Estimated dates for birth and death');
- $text=WT_I18N::translate('This option controls whether or not to show estimated dates for birth and death instead of leaving blanks on individual lists and charts for individuals whose dates are not known.');
+ $title = WT_I18N::translate('Estimated dates for birth and death');
+ $text = WT_I18N::translate('This option controls whether or not to show estimated dates for birth and death instead of leaving blanks on individual lists and charts for individuals whose dates are not known.');
break;
case 'SHOW_MEDIA_DOWNLOAD':
- $title=WT_I18N::translate('Show download link in media viewer');
- $text=WT_I18N::translate('The Media Viewer can show a link which, when clicked, will download the media file to the local PC.<br><br>You may want to hide the download link for security reasons.');
+ $title = WT_I18N::translate('Show download link in media viewer');
+ $text = WT_I18N::translate('The Media Viewer can show a link which, when clicked, will download the media file to the local PC.<br><br>You may want to hide the download link for security reasons.');
break;
case 'SHOW_PARENTS_AGE':
- $title=WT_I18N::translate('Show age of parents next to child’s birthdate');
- $text=WT_I18N::translate('This option controls whether or not to show age of father and mother next to child’s birthdate on charts.');
+ $title = WT_I18N::translate('Show age of parents next to child’s birthdate');
+ $text = WT_I18N::translate('This option controls whether or not to show age of father and mother next to child’s birthdate on charts.');
break;
case 'THUMBNAIL_WIDTH':
- $title=WT_I18N::translate('Width of generated thumbnails');
- $text=WT_I18N::translate('This is the width (in pixels) that the program will use when automatically generating thumbnails. The default setting is 100.');
+ $title = WT_I18N::translate('Width of generated thumbnails');
+ $text = WT_I18N::translate('This is the width (in pixels) that the program will use when automatically generating thumbnails. The default setting is 100.');
break;
case 'USE_RELATIONSHIP_PRIVACY':
- $title=WT_I18N::translate('Use relationship privacy');
- $text=WT_I18N::translate('<b>No</b> means that authenticated users can see the details of all living individuals. <b>Yes</b> means that users can only see the private information of living individuals they are related to.<br><br>This option sets the default for all users who have access to this genealogical database. The administrator can override this option for individual users by editing the user’s account details.');
+ $title = WT_I18N::translate('Use relationship privacy');
+ $text = WT_I18N::translate('<b>No</b> means that authenticated users can see the details of all living individuals. <b>Yes</b> means that users can only see the private information of living individuals they are related to.<br><br>This option sets the default for all users who have access to this genealogical database. The administrator can override this option for individual users by editing the user’s account details.');
break;
//////////////////////////////////////////////////////////////////////////////
@@ -463,121 +463,121 @@ case 'USE_RELATIONSHIP_PRIVACY':
//////////////////////////////////////////////////////////////////////////////
case 'add_facts':
- $title=WT_I18N::translate('Add a fact');
- $text=WT_I18N::translate('Here you can add a fact to the record being edited.<br><br>First choose a fact from the drop-down list, then click the <b>Add</b> button. All possible facts that you can add to the database are in that drop-down list.');
- $text.='<br><br>';
- $text.='<b>'.WT_I18N::translate('Add from clipboard').'</b>';
- $text.='<br><br>';
- $text.=WT_I18N::translate('webtrees allows you to copy up to 10 facts, with all their details, to a clipboard. This clipboard is different from the clippings cart that you can use to export portions of your database.<br><br>You can select any of the facts from the clipboard and copy the selected fact to the individual, family, media, source, or repository record currently being edited. However, you cannot copy facts of dissimilar record types. For example, you cannot copy a marriage fact to a source or an individual record since the marriage fact is associated only with family records.<br><br>This is very helpful when entering similar facts, such as census facts, for many individuals or families.');
+ $title = WT_I18N::translate('Add a fact');
+ $text = WT_I18N::translate('Here you can add a fact to the record being edited.<br><br>First choose a fact from the drop-down list, then click the <b>Add</b> button. All possible facts that you can add to the database are in that drop-down list.');
+ $text .= '<br><br>';
+ $text .= '<b>' . WT_I18N::translate('Add from clipboard') . '</b>';
+ $text .= '<br><br>';
+ $text .= WT_I18N::translate('webtrees allows you to copy up to 10 facts, with all their details, to a clipboard. This clipboard is different from the clippings cart that you can use to export portions of your database.<br><br>You can select any of the facts from the clipboard and copy the selected fact to the individual, family, media, source, or repository record currently being edited. However, you cannot copy facts of dissimilar record types. For example, you cannot copy a marriage fact to a source or an individual record since the marriage fact is associated only with family records.<br><br>This is very helpful when entering similar facts, such as census facts, for many individuals or families.');
break;
case 'add_note':
// This is a general help text for multiple pages
- $title=WT_I18N::translate('Add a new note');
- $text=WT_I18N::translate('If you have a note to add to this record, this is the place to do so.<br><br>Just click the link, a window will open, and you can type your note. When you are finished typing, just click the button below the box, close the window, and that’s all.');
+ $title = WT_I18N::translate('Add a new note');
+ $text = WT_I18N::translate('If you have a note to add to this record, this is the place to do so.<br><br>Just click the link, a window will open, and you can type your note. When you are finished typing, just click the button below the box, close the window, and that’s all.');
break;
case 'add_shared_note':
// This is a general help text for multiple pages
- $title=WT_I18N::translate('Add a new shared note');
- $text=WT_I18N::translate('When you click the <b>Add a new shared note</b> link, a new window will open. You can choose to link to an existing shared note, or you can create a new shared note and at the same time create a link to it.');
+ $title = WT_I18N::translate('Add a new shared note');
+ $text = WT_I18N::translate('When you click the <b>Add a new shared note</b> link, a new window will open. You can choose to link to an existing shared note, or you can create a new shared note and at the same time create a link to it.');
break;
case 'add_source':
// This is a general help text for multiple pages
- $title=WT_I18N::translate('Add a new source citation');
- $text=WT_I18N::translate('Here you can add a source <b>Citation</b> to this record.<br><br>Just click the link, a window will open, and you can choose the source from the list (Find ID) or create a new source and then add the citation.<br><br>Adding sources is an important part of genealogy because it allows other researchers to verify where you obtained your information.');
+ $title = WT_I18N::translate('Add a new source citation');
+ $text = WT_I18N::translate('Here you can add a source <b>Citation</b> to this record.<br><br>Just click the link, a window will open, and you can choose the source from the list (Find ID) or create a new source and then add the citation.<br><br>Adding sources is an important part of genealogy because it allows other researchers to verify where you obtained your information.');
break;
case 'annivers_year_select':
- $title=WT_I18N::translate('Year input box');
- $text=WT_I18N::translate('This input box lets you change that year of the calendar. Type a year into the box and press <b>Enter</b> to change the calendar to that year.<br><br><b>Advanced features</b> for <b>View year</b><dl><dt><b>More than one year</b></dt><dd>You can search for dates in a range of years.<br><br>Year ranges are <u>inclusive</u>. This means that the date range extends from 1 January of the first year of the range to 31 December of the last year mentioned. Here are a few examples of year ranges:<br><br><b>1992-5</b> for all events from 1992 to 1995.<br><b>1972-89</b> for all events from 1972 to 1989.<br><b>1610-759</b> for all events from 1610 to 1759.<br><b>1880-1905</b> for all events from 1880 to 1905.<br><b>880-1105</b> for all events from 880 to 1105.<br><br>To see all the events in a given decade or century, you can use <b>?</b> in place of the final digits. For example, <b>197?</b> for all events from 1970 to 1979 or <b>16??</b> for all events from 1600 to 1699.<br><br>Selecting a range of years will change the calendar to the year view.</dd></dl>');
+ $title = WT_I18N::translate('Year input box');
+ $text = WT_I18N::translate('This input box lets you change that year of the calendar. Type a year into the box and press <b>Enter</b> to change the calendar to that year.<br><br><b>Advanced features</b> for <b>View year</b><dl><dt><b>More than one year</b></dt><dd>You can search for dates in a range of years.<br><br>Year ranges are <u>inclusive</u>. This means that the date range extends from 1 January of the first year of the range to 31 December of the last year mentioned. Here are a few examples of year ranges:<br><br><b>1992-5</b> for all events from 1992 to 1995.<br><b>1972-89</b> for all events from 1972 to 1989.<br><b>1610-759</b> for all events from 1610 to 1759.<br><b>1880-1905</b> for all events from 1880 to 1905.<br><b>880-1105</b> for all events from 880 to 1105.<br><br>To see all the events in a given decade or century, you can use <b>?</b> in place of the final digits. For example, <b>197?</b> for all events from 1970 to 1979 or <b>16??</b> for all events from 1600 to 1699.<br><br>Selecting a range of years will change the calendar to the year view.</dd></dl>');
break;
case 'block_move_right':
- $title=WT_I18N::translate('Move list entries');
- $text=WT_I18N::translate('Use these buttons to move an entry from one list to another.<br><br>Highlight the entry to be moved, and then click a button to move or copy that entry in the direction of the arrow. Use the <b>&raquo;</b> and <b>&laquo;</b> buttons to move the highlighted entry from the leftmost to the rightmost list or vice-versa. Use the <b>&gt;</b> and <b>&lt;</b> buttons to move the highlighted entry between the Available blocks list and the list to its right or left.<br><br>The entries in the Available Blocks list do not change, regardless of what you do with the Move right and Move left buttons. This is so because the same block can appear several times on the same page. The HTML block is a good example of why you might want to do this.');
+ $title = WT_I18N::translate('Move list entries');
+ $text = WT_I18N::translate('Use these buttons to move an entry from one list to another.<br><br>Highlight the entry to be moved, and then click a button to move or copy that entry in the direction of the arrow. Use the <b>&raquo;</b> and <b>&laquo;</b> buttons to move the highlighted entry from the leftmost to the rightmost list or vice-versa. Use the <b>&gt;</b> and <b>&lt;</b> buttons to move the highlighted entry between the Available blocks list and the list to its right or left.<br><br>The entries in the Available Blocks list do not change, regardless of what you do with the Move right and Move left buttons. This is so because the same block can appear several times on the same page. The HTML block is a good example of why you might want to do this.');
break;
case 'block_move_up':
- $title=WT_I18N::translate('Move list entries');
- $text=WT_I18N::translate('Use these buttons to re-arrange the order of the entries within the list. The blocks will be printed in the order in which they are listed.<br><br>Highlight the entry to be moved, and then click a button to move that entry up or down.');
+ $title = WT_I18N::translate('Move list entries');
+ $text = WT_I18N::translate('Use these buttons to re-arrange the order of the entries within the list. The blocks will be printed in the order in which they are listed.<br><br>Highlight the entry to be moved, and then click a button to move that entry up or down.');
break;
case 'default_gedcom':
- $title=WT_I18N::translate('Default family tree');
- $text=WT_I18N::translate('This option selects the family tree that is shown to visitors when they first arrive at the site.');
+ $title = WT_I18N::translate('Default family tree');
+ $text = WT_I18N::translate('This option selects the family tree that is shown to visitors when they first arrive at the site.');
break;
case 'download_gedcom':
- $title=WT_I18N::translate('Download family tree');
- $text=WT_I18N::translate('This option will download the family tree to a GEDCOM file on your computer.');
+ $title = WT_I18N::translate('Download family tree');
+ $text = WT_I18N::translate('This option will download the family tree to a GEDCOM file on your computer.');
break;
case 'edit_add_ASSO':
- $title=WT_I18N::translate('Add a new associate');
- $text=WT_I18N::translate('Add a new associate allows you to link a fact with an associated individual in the site. This is one way in which you might record that someone was the godfather of another individual.');
+ $title = WT_I18N::translate('Add a new associate');
+ $text = WT_I18N::translate('Add a new associate allows you to link a fact with an associated individual in the site. This is one way in which you might record that someone was the godfather of another individual.');
break;
case 'edit_add_GEDFact_ASSISTED':
- $title=WT_I18N::translate('GEDFact shared note assistant');
- $text=WT_I18N::translate('Clicking the “+” icon will open the GEDFact shared note assistant window.<br>Specific help will be found there.<br><br>When you click the “save” button, the ID of the shared note will be pasted here.');
+ $title = WT_I18N::translate('GEDFact shared note assistant');
+ $text = WT_I18N::translate('Clicking the “+” icon will open the GEDFact shared note assistant window.<br>Specific help will be found there.<br><br>When you click the “save” button, the ID of the shared note will be pasted here.');
break;
case 'edit_add_NOTE':
- $title=WT_I18N::translate('Add a new note');
- $text=WT_I18N::translate('This section allows you to add a new note to the fact that you are currently editing. Notes are free-form text and will appear in the Fact Details section of the page.');
+ $title = WT_I18N::translate('Add a new note');
+ $text = WT_I18N::translate('This section allows you to add a new note to the fact that you are currently editing. Notes are free-form text and will appear in the Fact Details section of the page.');
break;
case 'edit_add_SHARED_NOTE':
- $title=WT_I18N::translate('Add a new shared note');
- $text=WT_I18N::translate('Shared notes, like regular notes, are free-form text. Unlike regular notes, each shared note can be linked to more than one individual, family, source, or fact.<br><br>By clicking the appropriate icon, you can establish a link to an existing shared note or create a new shared note and at the same time link to it. If a link to an existing shared note has already been established, you can also edit that note’s contents.<br><ul><li><b>Link to an existing shared note</b><div style="padding-left:20px;">If you already know the ID number of the desired shared note, you can enter that number directly into the field.<br><br>When you click the <b>Find shared note</b> icon, you will be able to search the text of all existing shared notes and then choose one of them. The ID number of the chosen note will be entered into the field automatically.<br><br>You must click the <b>Add</b> button to update the original record.</div><br></li><li><b>Create a new shared note</b><div style="padding-left:20px;">When you click the <b>Create a new shared note</b> icon, a new window will open. You can enter the text of the new note as you wish. As with regular notes, you can enter URLs.<br><br>When you click the <b>Save</b> button, you will see a message with the ID number of the newly created shared note. You should click on this message to close the editing window and also copy that new ID number directly into the ID number field. If you just close the window, the newly created ID number will not be copied automatically.<br><br>You must click the <b>Add</b> button to update the original record.</div><br></li><li><b>Edit an existing shared note</b><div style="padding-left:20px;">When you click the <b>Edit shared note</b> icon, a new window will open. You can change the text of the existing shared note as you wish. As with regular notes, you can enter URLs.<br><br>When you click the <b>Save</b> button, the text of the shared note will be updated. You can close the window and then click the <b>Save</b> button again.<br><br>When you change the text of a shared note, your change will be reflected in all places to which that shared note is currently linked. New links that you establish after having made your change will also use the updated text.</div></li></ul>');
+ $title = WT_I18N::translate('Add a new shared note');
+ $text = WT_I18N::translate('Shared notes, like regular notes, are free-form text. Unlike regular notes, each shared note can be linked to more than one individual, family, source, or fact.<br><br>By clicking the appropriate icon, you can establish a link to an existing shared note or create a new shared note and at the same time link to it. If a link to an existing shared note has already been established, you can also edit that note’s contents.<br><ul><li><b>Link to an existing shared note</b><div style="padding-left:20px;">If you already know the ID number of the desired shared note, you can enter that number directly into the field.<br><br>When you click the <b>Find shared note</b> icon, you will be able to search the text of all existing shared notes and then choose one of them. The ID number of the chosen note will be entered into the field automatically.<br><br>You must click the <b>Add</b> button to update the original record.</div><br></li><li><b>Create a new shared note</b><div style="padding-left:20px;">When you click the <b>Create a new shared note</b> icon, a new window will open. You can enter the text of the new note as you wish. As with regular notes, you can enter URLs.<br><br>When you click the <b>Save</b> button, you will see a message with the ID number of the newly created shared note. You should click on this message to close the editing window and also copy that new ID number directly into the ID number field. If you just close the window, the newly created ID number will not be copied automatically.<br><br>You must click the <b>Add</b> button to update the original record.</div><br></li><li><b>Edit an existing shared note</b><div style="padding-left:20px;">When you click the <b>Edit shared note</b> icon, a new window will open. You can change the text of the existing shared note as you wish. As with regular notes, you can enter URLs.<br><br>When you click the <b>Save</b> button, the text of the shared note will be updated. You can close the window and then click the <b>Save</b> button again.<br><br>When you change the text of a shared note, your change will be reflected in all places to which that shared note is currently linked. New links that you establish after having made your change will also use the updated text.</div></li></ul>');
if (array_key_exists('GEDFact_assistant', WT_Module::getActiveModules())) {
- $text.='<p class="warning">'.WT_I18N::translate('You should avoid using the vertical line character “|” in your notes. It is used internally by webtrees and may cause your note to display incorrectly.').'</p>';
+ $text .= '<p class="warning">' . WT_I18N::translate('You should avoid using the vertical line character “|” in your notes. It is used internally by webtrees and may cause your note to display incorrectly.') . '</p>';
}
break;
case 'edit_add_SOUR':
- $title=WT_I18N::translate('Add a new source citation');
- $text=WT_I18N::translate('This section allows you to add a new source citation to the fact that you are currently editing.<br><br>In the Source field you enter the ID for the source. Click the “Create a new source” link if you need to enter a new source. In the citation details field you would enter the page number or other information that might help someone find the information in the source. In the Text field you would enter the text transcription from the source.');
+ $title = WT_I18N::translate('Add a new source citation');
+ $text = WT_I18N::translate('This section allows you to add a new source citation to the fact that you are currently editing.<br><br>In the Source field you enter the ID for the source. Click the “Create a new source” link if you need to enter a new source. In the citation details field you would enter the page number or other information that might help someone find the information in the source. In the Text field you would enter the text transcription from the source.');
break;
case 'edit_edit_raw':
- $title=WT_I18N::translate('Edit raw GEDCOM');
- $text=
- WT_I18N::translate('This page allows you to bypass the usual forms, and edit the underlying data directly. It is an advanced option, and you should not use it unless you understand the GEDCOM format. If you make a mistake here, it can be difficult to fix.').
- '<br><br>'.
+ $title = WT_I18N::translate('Edit raw GEDCOM');
+ $text =
+ WT_I18N::translate('This page allows you to bypass the usual forms, and edit the underlying data directly. It is an advanced option, and you should not use it unless you understand the GEDCOM format. If you make a mistake here, it can be difficult to fix.') .
+ '<br><br>' .
/* I18N: %s is a URL */ WT_I18N::translate('You can download a copy of the GEDCOM specification from %s.', '<a href="http://wiki.webtrees.net/w/images-en/Ged551-5.pdf">http://wiki.webtrees.net/w/images-en/Ged551-5.pdf</a>');
break;
case 'edit_merge':
- $title=WT_I18N::translate('Merge records');
- $text=WT_I18N::translate('This page will allow you to merge two GEDCOM records from the same GEDCOM file.<br><br>This is useful for individuals who have merged GEDCOMs and now have many individuals, families, and sources that are the same.<br><br>The page consists of three steps.<br><ol><li>You enter two GEDCOM IDs. The IDs <u>must</u> be of the same type. You cannot merge an individual and a family or family and source, for example.<br>In the <b>Merge To ID:</b> field enter the ID of the record you want to be the new record after the merge is complete.<br>In the <b>Merge From ID:</b> field enter the ID of the record whose information will be merged into the Merge To ID: record. This record will be deleted after the Merge.</li><li>You select what facts you want to keep from the two records when they are merged. Just click the checkboxes next to the ones you want to keep.</li><li>You inspect the results of the merge, just like with all other changes made online.</li></ol>Someone with Accept rights will have to authorize your changes to make them permanent.');
+ $title = WT_I18N::translate('Merge records');
+ $text = WT_I18N::translate('This page will allow you to merge two GEDCOM records from the same GEDCOM file.<br><br>This is useful for individuals who have merged GEDCOMs and now have many individuals, families, and sources that are the same.<br><br>The page consists of three steps.<br><ol><li>You enter two GEDCOM IDs. The IDs <u>must</u> be of the same type. You cannot merge an individual and a family or family and source, for example.<br>In the <b>Merge To ID:</b> field enter the ID of the record you want to be the new record after the merge is complete.<br>In the <b>Merge From ID:</b> field enter the ID of the record whose information will be merged into the Merge To ID: record. This record will be deleted after the Merge.</li><li>You select what facts you want to keep from the two records when they are merged. Just click the checkboxes next to the ones you want to keep.</li><li>You inspect the results of the merge, just like with all other changes made online.</li></ol>Someone with Accept rights will have to authorize your changes to make them permanent.');
break;
case 'edit_SOUR_EVEN':
- $title=WT_I18N::translate('Associate events with this source');
- $text=WT_I18N::translate('Each source records specific events, generally for a given date range and for a place jurisdiction. For example a Census records census events and church records record birth, marriage, and death events.<br><br>Select the events that are recorded by this source from the list of events provided. The date should be specified in a range format such as <i>FROM 1900 TO 1910</i>. The place jurisdiction is the name of the lowest jurisdiction that encompasses all lower-level places named in this source. For example, “Oneida, Idaho, USA” would be used as a source jurisdiction place for events occurring in the various towns within Oneida County. “Idaho, USA” would be the source jurisdiction place if the events recorded took place not only in Oneida County but also in other counties in Idaho.');
+ $title = WT_I18N::translate('Associate events with this source');
+ $text = WT_I18N::translate('Each source records specific events, generally for a given date range and for a place jurisdiction. For example a Census records census events and church records record birth, marriage, and death events.<br><br>Select the events that are recorded by this source from the list of events provided. The date should be specified in a range format such as <i>FROM 1900 TO 1910</i>. The place jurisdiction is the name of the lowest jurisdiction that encompasses all lower-level places named in this source. For example, “Oneida, Idaho, USA” would be used as a source jurisdiction place for events occurring in the various towns within Oneida County. “Idaho, USA” would be the source jurisdiction place if the events recorded took place not only in Oneida County but also in other counties in Idaho.');
break;
case 'edituser_contact_meth':
- $title=WT_I18N::translate('Contact method');
- $text=WT_I18N::translate('Site members can send each other messages. You can choose to how these messages are sent to you, or choose not receive them at all.');
+ $title = WT_I18N::translate('Contact method');
+ $text = WT_I18N::translate('Site members can send each other messages. You can choose to how these messages are sent to you, or choose not receive them at all.');
break;
case 'edituser_gedcomid':
- $title=WT_I18N::translate('Individual record');
- $text=WT_I18N::translate('This is a link to your own record in the family tree. If this is the wrong individual, contact an administrator.');
+ $title = WT_I18N::translate('Individual record');
+ $text = WT_I18N::translate('This is a link to your own record in the family tree. If this is the wrong individual, contact an administrator.');
break;
case 'email':
- $title=WT_I18N::translate('Email address');
- $text=WT_I18N::translate('This email address will be used to send you password reminders, site notifications, and messages from other family members who are registered on the site.');
+ $title = WT_I18N::translate('Email address');
+ $text = WT_I18N::translate('This email address will be used to send you password reminders, site notifications, and messages from other family members who are registered on the site.');
break;
case 'export_gedcom':
- $title=WT_I18N::translate('Export family tree');
- $text=
+ $title = WT_I18N::translate('Export family tree');
+ $text =
'<p>' .
WT_I18N::translate('This option will save the family tree to a GEDCOM file on the server.') .
'</p><p>' .
@@ -587,43 +587,43 @@ case 'export_gedcom':
break;
case 'fambook_descent':
- $title=WT_I18N::translate('Descendant generations');
- $text=WT_I18N::translate('This value determines the number of descendant generations of the root individual that will be printed in hourglass format.');
+ $title = WT_I18N::translate('Descendant generations');
+ $text = WT_I18N::translate('This value determines the number of descendant generations of the root individual that will be printed in hourglass format.');
break;
case 'fan_width':
- $title=WT_I18N::translate('Width');
- $text=WT_I18N::translate('Here you can change the diagram width from 50 percent to 300 percent. At 100 percent the output image is about 640 pixels wide.');
+ $title = WT_I18N::translate('Width');
+ $text = WT_I18N::translate('Here you can change the diagram width from 50 percent to 300 percent. At 100 percent the output image is about 640 pixels wide.');
break;
case 'gedcom_news_archive':
- $title=WT_I18N::translate('View archive');
- $text=WT_I18N::translate('To reduce the height of the News block, the administrator has hidden some articles. You can reveal these hidden articles by clicking the <b>View archive</b> link.');
+ $title = WT_I18N::translate('View archive');
+ $text = WT_I18N::translate('To reduce the height of the News block, the administrator has hidden some articles. You can reveal these hidden articles by clicking the <b>View archive</b> link.');
break;
case 'gedcom_news_flag':
- $title=WT_I18N::translate('Limit:');
- $text=WT_I18N::translate('Enter the limiting value here.<br><br>If you have opted to limit the news article display according to age, any article older than the number of days entered here will be hidden from view. If you have opted to limit the news article display by number, only the specified number of recent articles, ordered by age, will be shown. The remaining articles will be hidden from view.<br><br>Zeros entered here will disable the limit, causing all news articles to be shown.');
+ $title = WT_I18N::translate('Limit:');
+ $text = WT_I18N::translate('Enter the limiting value here.<br><br>If you have opted to limit the news article display according to age, any article older than the number of days entered here will be hidden from view. If you have opted to limit the news article display by number, only the specified number of recent articles, ordered by age, will be shown. The remaining articles will be hidden from view.<br><br>Zeros entered here will disable the limit, causing all news articles to be shown.');
break;
case 'gedcom_news_limit':
- $title=WT_I18N::translate('Limit display by:');
- $text=WT_I18N::translate('You can limit the number of news articles displayed, thereby reducing the height of the GEDCOM News block.<br><br>This option determines whether any limits should be applied or whether the limit should be according to the age of the article or according to the number of articles.');
+ $title = WT_I18N::translate('Limit display by:');
+ $text = WT_I18N::translate('You can limit the number of news articles displayed, thereby reducing the height of the GEDCOM News block.<br><br>This option determines whether any limits should be applied or whether the limit should be according to the age of the article or according to the number of articles.');
break;
case 'google_chart_surname':
- $title=WT_I18N::translate('Surname');
- $text=WT_I18N::translate('The number of occurrences of the specified name will be shown on the map. If you leave this field empty, the most common surname will be used.');
+ $title = WT_I18N::translate('Surname');
+ $text = WT_I18N::translate('The number of occurrences of the specified name will be shown on the map. If you leave this field empty, the most common surname will be used.');
break;
case 'header_favorites':
- $title=WT_I18N::translate('Favorites');
- $text=WT_I18N::translate('The Favorites drop-down list shows the favorites that you have selected on your “My page”. It also shows the favorites that the site administrator has selected for the currently active GEDCOM. Clicking on one of the favorites entries will take you directly to the Individual Information page of that individual.<br><br>More help about adding favorites is available in your “My page”.');
+ $title = WT_I18N::translate('Favorites');
+ $text = WT_I18N::translate('The Favorites drop-down list shows the favorites that you have selected on your “My page”. It also shows the favorites that the site administrator has selected for the currently active GEDCOM. Clicking on one of the favorites entries will take you directly to the Individual Information page of that individual.<br><br>More help about adding favorites is available in your “My page”.');
break;
case 'import_gedcom':
- $title=WT_I18N::translate('Import family tree');
- $text=
+ $title = WT_I18N::translate('Import family tree');
+ $text =
'<p>' .
WT_I18N::translate('This option deletes all the genealogy data in your family tree and replaces it with data from a GEDCOM file on the server.') .
'</p><p>' .
@@ -633,176 +633,176 @@ case 'import_gedcom':
break;
case 'include_media':
- $title=WT_I18N::translate('Include media (automatically zips files)');
- $text=WT_I18N::translate('Select this option to include the media files associated with the records in your clippings cart. Choosing this option will automatically zip the files during download.');
+ $title = WT_I18N::translate('Include media (automatically zips files)');
+ $text = WT_I18N::translate('Select this option to include the media files associated with the records in your clippings cart. Choosing this option will automatically zip the files during download.');
break;
case 'lifespan_chart':
- $title=WT_I18N::translate('Lifespans');
- $text=WT_I18N::translate('On this chart you can display one or more individuals along a horizontal timeline. This chart allows you to see how the lives of different individuals overlapped.<br><br>You can add individuals to the chart individually or by family groups by their IDs. The previous list will be remembered as you add more individuals to the chart. You can clear the chart at any time with the <b>Clear chart</b> button.<br><br>You can also add individuals to the chart by searching for them by date range or locality.');
+ $title = WT_I18N::translate('Lifespans');
+ $text = WT_I18N::translate('On this chart you can display one or more individuals along a horizontal timeline. This chart allows you to see how the lives of different individuals overlapped.<br><br>You can add individuals to the chart individually or by family groups by their IDs. The previous list will be remembered as you add more individuals to the chart. You can clear the chart at any time with the <b>Clear chart</b> button.<br><br>You can also add individuals to the chart by searching for them by date range or locality.');
break;
case 'next_path':
- $title=WT_I18N::translate('Find the next relationship path');
- $text=WT_I18N::translate('You can click this button to see whether there is another relationship path between the two individuals. Previously found paths can be displayed again by clicking the link with the path number.');
+ $title = WT_I18N::translate('Find the next relationship path');
+ $text = WT_I18N::translate('You can click this button to see whether there is another relationship path between the two individuals. Previously found paths can be displayed again by clicking the link with the path number.');
break;
case 'no_update_CHAN':
- $title=WT_I18N::translate('Do not update the “last change” record');
- $text=WT_I18N::translate('Administrators sometimes need to clean up and correct the data submitted by users. For example, they might need to correct the PLAC location to include the country. When administrators make such corrections, information about the original change is normally replaced. This may not be desirable.<br><br>When this option is selected, webtrees will retain the original change information instead of replacing it with that of the current session. With this option selected, administrators also have the ability to modify or delete the information associated with the original CHAN tag.');
+ $title = WT_I18N::translate('Do not update the “last change” record');
+ $text = WT_I18N::translate('Administrators sometimes need to clean up and correct the data submitted by users. For example, they might need to correct the PLAC location to include the country. When administrators make such corrections, information about the original change is normally replaced. This may not be desirable.<br><br>When this option is selected, webtrees will retain the original change information instead of replacing it with that of the current session. With this option selected, administrators also have the ability to modify or delete the information associated with the original CHAN tag.');
break;
case 'oldest_top':
- $title=WT_I18N::translate('Show oldest top');
- $text=WT_I18N::translate('When this check box is checked, the chart will be printed with oldest individuals at the top. When it is unchecked, youngest individuals will appear at the top.');
+ $title = WT_I18N::translate('Show oldest top');
+ $text = WT_I18N::translate('When this check box is checked, the chart will be printed with oldest individuals at the top. When it is unchecked, youngest individuals will appear at the top.');
break;
case 'password':
- $title=WT_I18N::translate('Password');
- $text=WT_I18N::translate('Passwords must be at least 6 characters long and are case-sensitive, so that “secret” is different to “SECRET”.');
+ $title = WT_I18N::translate('Password');
+ $text = WT_I18N::translate('Passwords must be at least 6 characters long and are case-sensitive, so that “secret” is different to “SECRET”.');
break;
case 'password_confirm':
- $title=WT_I18N::translate('Confirm password');
- $text=WT_I18N::translate('Type your password again, to make sure you have typed it correctly.');
+ $title = WT_I18N::translate('Confirm password');
+ $text = WT_I18N::translate('Type your password again, to make sure you have typed it correctly.');
break;
case 'pending_changes':
- $title=WT_I18N::translate('Pending changes');
- $text=
- '<p>'.
- WT_I18N::translate('When you add, edit, or delete information, the changes are not saved immediately. Instead, they are kept in a “pending” area. These pending changes need to be reviewed by a moderator before they are accepted.').
- '</p><p>'.
- WT_I18N::translate('This process allows the site’s owner to ensure that the new information follows the site’s standards and conventions, has proper source attributions, etc.').
- '</p><p>'.
- WT_I18N::translate('Pending changes are only shown when your account has permission to edit. When you log out, you will no longer be able to see them. Also, pending changes are only shown on certain pages. For example, they are not shown in lists, reports, or search results.').
+ $title = WT_I18N::translate('Pending changes');
+ $text =
+ '<p>' .
+ WT_I18N::translate('When you add, edit, or delete information, the changes are not saved immediately. Instead, they are kept in a “pending” area. These pending changes need to be reviewed by a moderator before they are accepted.') .
+ '</p><p>' .
+ WT_I18N::translate('This process allows the site’s owner to ensure that the new information follows the site’s standards and conventions, has proper source attributions, etc.') .
+ '</p><p>' .
+ WT_I18N::translate('Pending changes are only shown when your account has permission to edit. When you log out, you will no longer be able to see them. Also, pending changes are only shown on certain pages. For example, they are not shown in lists, reports, or search results.') .
'</p>';
if (Auth::isAdmin()) {
- $text.=
- '<p>'.
- WT_I18N::translate('Each user account has an option to “automatically accept changes”. When this is enabled, any changes made by that user are saved immediately. Many administrators enable this for their own user account.').
+ $text .=
+ '<p>' .
+ WT_I18N::translate('Each user account has an option to “automatically accept changes”. When this is enabled, any changes made by that user are saved immediately. Many administrators enable this for their own user account.') .
'</p>';
}
break;
case 'ppp_view_records':
- $title=WT_I18N::translate('View all records');
- $text=WT_I18N::translate('Clicking on this link will show you a list of all of the individuals and families that have events occurring in this place. When you get to the end of a place hierarchy, which is normally a town or city, the name list will be shown automatically.');
+ $title = WT_I18N::translate('View all records');
+ $text = WT_I18N::translate('Clicking on this link will show you a list of all of the individuals and families that have events occurring in this place. When you get to the end of a place hierarchy, which is normally a town or city, the name list will be shown automatically.');
break;
case 'real_name':
- $title=WT_I18N::translate('Real name');
- $text=WT_I18N::translate('This is your real name, as you would like it displayed on screen.');
+ $title = WT_I18N::translate('Real name');
+ $text = WT_I18N::translate('This is your real name, as you would like it displayed on screen.');
break;
case 'register_comments':
- $title=WT_I18N::translate('Comments');
- $text=WT_I18N::translate('Use this field to tell the site administrator why you are requesting an account and how you are related to the genealogy displayed on this site. You can also use this to enter any other comments you may have for the site administrator.');
+ $title = WT_I18N::translate('Comments');
+ $text = WT_I18N::translate('Use this field to tell the site administrator why you are requesting an account and how you are related to the genealogy displayed on this site. You can also use this to enter any other comments you may have for the site administrator.');
break;
case 'register_gedcomid':
- $title=WT_I18N::translate('Individual record');
- $text=WT_I18N::translate('Every individual in the database has a unique ID number on this site. If you know the ID number for your own record, please enter it here. If you don’t know your ID number or could not find it because of privacy settings, please provide enough information in the comments field to help the site administrator identify who you are on this site so that he can set the ID for you.');
+ $title = WT_I18N::translate('Individual record');
+ $text = WT_I18N::translate('Every individual in the database has a unique ID number on this site. If you know the ID number for your own record, please enter it here. If you don’t know your ID number or could not find it because of privacy settings, please provide enough information in the comments field to help the site administrator identify who you are on this site so that he can set the ID for you.');
break;
case 'remove_person':
- $title=WT_I18N::translate('Remove person');
- $text=WT_I18N::translate('Click this link to remove the individual from the timeline.');
+ $title = WT_I18N::translate('Remove person');
+ $text = WT_I18N::translate('Click this link to remove the individual from the timeline.');
break;
case 'role':
- $title=WT_I18N::translate('Role');
- $text=
- WT_I18N::translate('A role is a set of access rights, which give permission to view data, change configuration settings, etc. Access rights are assigned to roles, and roles are granted to users. Each family tree can assign different access to each role, and users can have a different role in each family tree.').
- '<br><br>'.
- '<dl>'.
- '<dt>'.WT_I18N::translate('Visitor').'</dt><dd>'.
- WT_I18N::translate('Everybody has this role, including visitors to the site and search engines.').
- '</dd>'.
- '<dl>'.
- '<dt>'.WT_I18N::translate('Member').'</dt><dd>'.
- WT_I18N::translate('This role has all the permissions of the visitor role, plus any additional access granted by the family tree configuration.').
- '</dd>'.
- '<dl>'.
- '<dt>'.WT_I18N::translate('Editor').'</dt><dd>'.
- WT_I18N::translate('This role has all the permissions of the member role, plus permission to add/change/delete data. Any changes will need to be approved by a moderator, unless the user has the “automatically accept changes” option enabled.').
- '</dd>'.
- '<dl>'.
- '<dt>'.WT_I18N::translate('Moderator').'</dt><dd>'.
- WT_I18N::translate('This role has all the permissions of the editor role, plus permission to approve/reject changes made by other users.').
- '</dd>'.
- '<dl>'.
- '<dt>'.WT_I18N::translate('Manager').'</dt><dd>'.
- WT_I18N::translate('This role has all the permissions of the moderator role, plus any additional access granted by the family tree configuration, plus permission to change the settings/configuration of a family tree.').
- '</dd>'.
- '<dl>'.
- '<dt>'.WT_I18N::translate('Administrator').'</dt><dd>'.
- WT_I18N::translate('This role has all the permissions of the manager role in all family trees, plus permission to change the settings/configuration of the site, users, and modules.').
+ $title = WT_I18N::translate('Role');
+ $text =
+ WT_I18N::translate('A role is a set of access rights, which give permission to view data, change configuration settings, etc. Access rights are assigned to roles, and roles are granted to users. Each family tree can assign different access to each role, and users can have a different role in each family tree.') .
+ '<br><br>' .
+ '<dl>' .
+ '<dt>' . WT_I18N::translate('Visitor') . '</dt><dd>' .
+ WT_I18N::translate('Everybody has this role, including visitors to the site and search engines.') .
+ '</dd>' .
+ '<dl>' .
+ '<dt>' . WT_I18N::translate('Member') . '</dt><dd>' .
+ WT_I18N::translate('This role has all the permissions of the visitor role, plus any additional access granted by the family tree configuration.') .
+ '</dd>' .
+ '<dl>' .
+ '<dt>' . WT_I18N::translate('Editor') . '</dt><dd>' .
+ WT_I18N::translate('This role has all the permissions of the member role, plus permission to add/change/delete data. Any changes will need to be approved by a moderator, unless the user has the “automatically accept changes” option enabled.') .
+ '</dd>' .
+ '<dl>' .
+ '<dt>' . WT_I18N::translate('Moderator') . '</dt><dd>' .
+ WT_I18N::translate('This role has all the permissions of the editor role, plus permission to approve/reject changes made by other users.') .
+ '</dd>' .
+ '<dl>' .
+ '<dt>' . WT_I18N::translate('Manager') . '</dt><dd>' .
+ WT_I18N::translate('This role has all the permissions of the moderator role, plus any additional access granted by the family tree configuration, plus permission to change the settings/configuration of a family tree.') .
+ '</dd>' .
+ '<dl>' .
+ '<dt>' . WT_I18N::translate('Administrator') . '</dt><dd>' .
+ WT_I18N::translate('This role has all the permissions of the manager role in all family trees, plus permission to change the settings/configuration of the site, users, and modules.') .
'</dd>';
break;
case 'show_fact_sources':
- $title=WT_I18N::translate('Show all sources');
- $text=WT_I18N::translate('When this option is checked, you can see all source or note records for this individual. When this option is unchecked, source or note records that are associated with other facts for this individual will not be shown.');
+ $title = WT_I18N::translate('Show all sources');
+ $text = WT_I18N::translate('When this option is checked, you can see all source or note records for this individual. When this option is unchecked, source or note records that are associated with other facts for this individual will not be shown.');
break;
case 'show_spouse':
- $title=WT_I18N::translate('Show spouses');
- $text=WT_I18N::translate('By default this chart does not show spouses for the descendants because it makes the chart harder to read and understand. Turning this option on will show spouses on the chart.');
+ $title = WT_I18N::translate('Show spouses');
+ $text = WT_I18N::translate('By default this chart does not show spouses for the descendants because it makes the chart harder to read and understand. Turning this option on will show spouses on the chart.');
break;
case 'simple_filter':
- $title=WT_I18N::translate('Simple search filter');
- $text=WT_I18N::translate('Simple search filter based on the characters entered, no wildcards are accepted.');
+ $title = WT_I18N::translate('Simple search filter');
+ $text = WT_I18N::translate('Simple search filter based on the characters entered, no wildcards are accepted.');
break;
case 'upload_gedcom':
- $title=WT_I18N::translate('Upload family tree');
- $text=WT_I18N::translate('This option deletes all the genealogy data in your family tree and replaces it with data from a GEDCOM file on your computer.');
+ $title = WT_I18N::translate('Upload family tree');
+ $text = WT_I18N::translate('This option deletes all the genealogy data in your family tree and replaces it with data from a GEDCOM file on your computer.');
break;
case 'upload_media':
- $title=WT_I18N::translate('Upload media files');
- $text=WT_I18N::translate('Upload one or more media files from your local computer. Media files can be pictures, video, audio, or other formats.');
+ $title = WT_I18N::translate('Upload media files');
+ $text = WT_I18N::translate('Upload one or more media files from your local computer. Media files can be pictures, video, audio, or other formats.');
break;
case 'upload_server_file':
- $title=WT_I18N::translate('Filename on server');
- $text=WT_I18N::translate('The media file you are uploading can be, and probably should be, named differently on the server than it is on your local computer. This is so because often the local filename has meaning to you but is much less meaningful to others visiting this site. Consider also the possibility that you and someone else both try to upload different files called “granny.jpg“.<br><br>In this field, you specify the new name of the file you are uploading. The name you enter here will also be used to name the thumbnail, which can be uploaded separately or generated automatically. You do not need to enter the filename extension (jpg, gif, pdf, doc, etc.)<br><br>Leave this field blank to keep the original name of the file you have uploaded from your local computer.');
+ $title = WT_I18N::translate('Filename on server');
+ $text = WT_I18N::translate('The media file you are uploading can be, and probably should be, named differently on the server than it is on your local computer. This is so because often the local filename has meaning to you but is much less meaningful to others visiting this site. Consider also the possibility that you and someone else both try to upload different files called “granny.jpg“.<br><br>In this field, you specify the new name of the file you are uploading. The name you enter here will also be used to name the thumbnail, which can be uploaded separately or generated automatically. You do not need to enter the filename extension (jpg, gif, pdf, doc, etc.)<br><br>Leave this field blank to keep the original name of the file you have uploaded from your local computer.');
break;
case 'upload_server_folder':
- $title=WT_I18N::translate('Folder name on server');
- $text=
+ $title = WT_I18N::translate('Folder name on server');
+ $text =
'<p>' .
WT_I18N::translate('If you have a large number of media files, you can organize them into folders and subfolders.') .
'</p>';
break;
case 'upload_thumbnail_file':
- $title=WT_I18N::translate('Thumbnail to upload');
- $text=WT_I18N::translate('Choose the thumbnail image that you want to upload. Although thumbnails can be generated automatically for images, you may wish to generate your own thumbnail, especially for other media types. For example, you can provide a still image from a video, or a photograph of the individual who made an audio recording.');
+ $title = WT_I18N::translate('Thumbnail to upload');
+ $text = WT_I18N::translate('Choose the thumbnail image that you want to upload. Although thumbnails can be generated automatically for images, you may wish to generate your own thumbnail, especially for other media types. For example, you can provide a still image from a video, or a photograph of the individual who made an audio recording.');
break;
case 'useradmin_gedcomid':
- $title=WT_I18N::translate('Individual record');
- $text=WT_I18N::translate('The individual record identifies the user in each family tree. Since a user can view the details of their individual record, this can only be set by an administrator. If the user does not have a record in a family tree, leave it empty.');
+ $title = WT_I18N::translate('Individual record');
+ $text = WT_I18N::translate('The individual record identifies the user in each family tree. Since a user can view the details of their individual record, this can only be set by an administrator. If the user does not have a record in a family tree, leave it empty.');
break;
case 'username':
- $title=WT_I18N::translate('Username');
- $text=
- '<p>'.
- WT_I18N::translate('Usernames are case-insensitive and ignore accented letters, so that “chloe”, “chloë”, and “Chloe” are considered to be the same.').
- '</p><p>'.
- WT_I18N::translate('Usernames may not contain the following characters: &lt; &gt; &quot; %% { } ;').
+ $title = WT_I18N::translate('Username');
+ $text =
+ '<p>' .
+ WT_I18N::translate('Usernames are case-insensitive and ignore accented letters, so that “chloe”, “chloë”, and “Chloe” are considered to be the same.') .
+ '</p><p>' .
+ WT_I18N::translate('Usernames may not contain the following characters: &lt; &gt; &quot; %% { } ;') .
'</p>';
break;
case 'zip':
- $title=WT_I18N::translate('Zip clippings');
- $text=WT_I18N::translate('Select this option as to save your clippings in a ZIP file. For more information about ZIP files, please visit <a href="http://www.winzip.com" target="_blank">http://www.winzip.com</a>.');
+ $title = WT_I18N::translate('Zip clippings');
+ $text = WT_I18N::translate('Select this option as to save your clippings in a ZIP file. For more information about ZIP files, please visit <a href="http://www.winzip.com" target="_blank">http://www.winzip.com</a>.');
break;
default:
@@ -810,7 +810,7 @@ default:
$text = WT_I18N::translate('The help text has not been written for this item.');
// If we've been called from a module, allow the module to provide the help text
$mod = WT_Filter::get('mod', '[A-Za-z0-9_]+');
- if (array_key_exists($mod, WT_Module::getActiveModules()) && file_exists(WT_ROOT.WT_MODULES_DIR.$mod.'/help_text.php')) {
+ if (array_key_exists($mod, WT_Module::getActiveModules()) && file_exists(WT_ROOT . WT_MODULES_DIR . $mod . '/help_text.php')) {
require WT_ROOT . WT_MODULES_DIR . $mod . '/help_text.php';
}
break;