![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/webtrees/resources/views/help/ |
Upload File : |
<?php declare(strict_types=1); use Fisharebest\Webtrees\I18N; /** * @var array<string,string> $date_dates * @var array<string,string> $date_period_dates * @var array<string,string> $date_period_shortcuts * @var array<string,string> $date_range_dates * @var array<string,string> $date_range_shortcuts * @var array<string,string> $date_shortcuts * @var array<string,string> $french_dates * @var array<string,string> $hijri_dates * @var array<string,string> $jalali_dates * @var array<string,string> $jewish_dates * @var array<string,string> $julian_dates */ ?> <p> <?= I18N::translate('Dates are stored using English abbreviations and keywords. Shortcuts are available as alternatives to these abbreviations and keywords.') ?> </p> <table class="table table-bordered table-sm"> <thead> <tr> <th> <?= I18N::translate('Date') ?> </th> <th> <?= I18N::translate('Format') ?> </th> <th> <?= I18N::translate('Shortcut') ?> </th> </tr> </thead> <tbody> <?php foreach ($date_dates as $code => $date) : ?> <tr> <td> <?= $date ?> </td> <td> <kbd dir="ltr" lang="en"><?= $code ?></kbd> </td> <td> <?php foreach ($date_shortcuts[$code] as $shortcut) : ?> <kbd dir="ltr" lang="en"><?= $shortcut ?></kbd> <br> <?php endforeach ?> </td> </tr> <?php endforeach ?> </tbody> </table> <p> <?= 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 class="table table-bordered table-sm"> <thead> <tr> <th> <?= I18N::translate('Date range') ?> </th> <th> <?= I18N::translate('Format') ?> </th> <th> <?= I18N::translate('Shortcut') ?> </th> </tr> </thead> <tbody> <?php foreach ($date_range_dates as $code => $date) : ?> <tr> <td> <?= $date ?> </td> <td> <kbd dir="ltr" lang="en"><?= $code ?></kbd> </td> <td> <?php foreach ($date_range_shortcuts[$code] as $shortcut) : ?> <kbd dir="ltr" lang="en"><?= $shortcut ?></kbd> <br> <?php endforeach ?> </td> </tr> <?php endforeach ?> </tbody> </table> <p> <?=I18N::translate('Date periods are used to indicate that a fact, such as an occupation, continued for a period of time.') ?> </p> <table class="table table-bordered table-sm"> <thead> <tr> <th> <?= I18N::translate('Date period') ?> </th> <th> <?= I18N::translate('Format') ?> </th> <th> <?= I18N::translate('Shortcut') ?> </th> </tr> </thead> <tbody> <?php foreach ($date_period_dates as $code => $date) : ?> <tr> <td> <?= $date ?> </td> <td> <kbd dir="ltr" lang="en"><?= $code ?></kbd> </td> <td> <?php foreach ($date_period_shortcuts[$code] as $shortcut) : ?> <kbd dir="ltr" lang="en"><?= $shortcut ?></kbd> <br> <?php endforeach ?> </td> </tr> <?php endforeach ?> </tbody> </table> <p> <?= 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 class="table table-bordered table-sm"> <thead> <tr> <th> <?= I18N::translate('Date') ?> </th> <th> <?= I18N::translate('Format') ?> </th> </tr> </thead> <tbody> <tr> <th colspan="2"> <?= I18N::translate('Julian') ?> </th> </tr> <?php foreach ($julian_dates as $code => $date) : ?> <tr> <td> <?= $date ?> </td> <td> <kbd dir="ltr" lang="en"><?= $code ?></kbd> </td> </tr> <?php endforeach ?> <tr> <th colspan="2"> <?= I18N::translate('Jewish') ?> </th> </tr> <?php foreach ($jewish_dates as $code => $date) : ?> <tr> <td> <?= $date ?> </td> <td> <kbd dir="ltr" lang="en"><?= $code ?></kbd> </td> </tr> <?php endforeach ?> <tr> <th colspan="2"> <?= I18N::translate('Hijri') ?> </th> </tr> <?php foreach ($hijri_dates as $code => $date) : ?> <tr> <td> <?= $date ?> </td> <td> <kbd dir="ltr" lang="en"><?= $code ?></kbd> </td> </tr> <?php endforeach ?> <tr> <th colspan="2"> <?= I18N::translate('Jalali') ?> </th> </tr> <?php foreach ($jalali_dates as $code => $date) : ?> <tr> <td> <?= $date ?> </td> <td> <kbd dir="ltr" lang="en"><?= $code ?></kbd> </td> </tr> <?php endforeach ?> <tr> <th colspan="2"> <?= I18N::translate('French') ?> </th> </tr> <?php foreach ($french_dates as $code => $date) : ?> <tr> <td> <?= $date ?> </td> <td> <kbd dir="ltr" lang="en"><?= $code ?></kbd> </td> </tr> <?php endforeach ?> </tbody> </table>