xref: /webtrees/resources/views/edit/initialize-calendar-popup.phtml (revision d70512ab02636ee884ef6d7907223ed02c754ff5)
1*d70512abSGreg Roach<?php
2*d70512abSGreg Roach
3*d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
4*d70512abSGreg Roach
5*d70512abSGreg Roach?>
6dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?>
7dd6b2bfcSGreg Roach
8dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
9dd6b2bfcSGreg Roach<script>
10dd6b2bfcSGreg Roach  cal_setMonthNames(
11dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'January')) ?>,
12dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'February')) ?>,
13dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'March')) ?>,
14dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'April')) ?>,
15dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'May')) ?>,
16dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'June')) ?>,
17dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'July')) ?>,
18dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'August')) ?>,
19dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'September')) ?>,
20dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'October')) ?>,
21dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'November')) ?>,
22dd6b2bfcSGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'December')) ?>
23dd6b2bfcSGreg Roach  );
24dd6b2bfcSGreg Roach
25dd6b2bfcSGreg Roach  cal_setDayHeaders(
26dd6b2bfcSGreg Roach        <?= json_encode(I18N::translate('Sun')) ?>,
27dd6b2bfcSGreg Roach        <?= json_encode(I18N::translate('Mon')) ?>,
28dd6b2bfcSGreg Roach        <?= json_encode(I18N::translate('Tue')) ?>,
29dd6b2bfcSGreg Roach        <?= json_encode(I18N::translate('Wed')) ?>,
30dd6b2bfcSGreg Roach        <?= json_encode(I18N::translate('Thu')) ?>,
31dd6b2bfcSGreg Roach        <?= json_encode(I18N::translate('Fri')) ?>,
32dd6b2bfcSGreg Roach        <?= json_encode(I18N::translate('Sat')) ?>
33dd6b2bfcSGreg Roach  );
34dd6b2bfcSGreg Roach
3565cf5706SGreg Roach  cal_setWeekStart(<?= I18N::locale()->territory()->firstDay() ?>);
36dd6b2bfcSGreg Roach</script>
37dd6b2bfcSGreg Roach<?php View::endpush() ?>
38