1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 4d70512abSGreg Roach 5d70512abSGreg Roach?> 6dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?> 7dd6b2bfcSGreg Roach 8dd6b2bfcSGreg Roach<?php View::push('javascript') ?> 9dd6b2bfcSGreg Roach<script> 102cf1b3d7SGreg Roach webtrees.calLocalize( 11*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'January'), JSON_THROW_ON_ERROR) ?>, 12*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'February'), JSON_THROW_ON_ERROR) ?>, 13*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'March'), JSON_THROW_ON_ERROR) ?>, 14*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'April'), JSON_THROW_ON_ERROR) ?>, 15*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'May'), JSON_THROW_ON_ERROR) ?>, 16*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'June'), JSON_THROW_ON_ERROR) ?>, 17*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'July'), JSON_THROW_ON_ERROR) ?>, 18*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'August'), JSON_THROW_ON_ERROR) ?>, 19*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'September'), JSON_THROW_ON_ERROR) ?>, 20*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'October'), JSON_THROW_ON_ERROR) ?>, 21*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'November'), JSON_THROW_ON_ERROR) ?>, 22*728c8c27SGreg Roach <?= json_encode(I18N::translateContext('NOMINATIVE', 'December'), JSON_THROW_ON_ERROR) ?>, 23*728c8c27SGreg Roach <?= json_encode(I18N::translate('Sun'), JSON_THROW_ON_ERROR) ?>, 24*728c8c27SGreg Roach <?= json_encode(I18N::translate('Mon'), JSON_THROW_ON_ERROR) ?>, 25*728c8c27SGreg Roach <?= json_encode(I18N::translate('Tue'), JSON_THROW_ON_ERROR) ?>, 26*728c8c27SGreg Roach <?= json_encode(I18N::translate('Wed'), JSON_THROW_ON_ERROR) ?>, 27*728c8c27SGreg Roach <?= json_encode(I18N::translate('Thu'), JSON_THROW_ON_ERROR) ?>, 28*728c8c27SGreg Roach <?= json_encode(I18N::translate('Fri'), JSON_THROW_ON_ERROR) ?>, 29*728c8c27SGreg Roach <?= json_encode(I18N::translate('Sat'), JSON_THROW_ON_ERROR) ?>, 302cf1b3d7SGreg Roach <?= I18N::locale()->territory()->firstDay() ?> 31dd6b2bfcSGreg Roach ); 32dd6b2bfcSGreg Roach</script> 33dd6b2bfcSGreg Roach<?php View::endpush() ?> 34