xref: /webtrees/resources/views/edit/initialize-calendar-popup.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
6d70512abSGreg Roach
7d70512abSGreg Roach?>
8dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?>
9dd6b2bfcSGreg Roach
10dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
11dd6b2bfcSGreg Roach<script>
122cf1b3d7SGreg Roach  webtrees.calLocalize(
13728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'January'), JSON_THROW_ON_ERROR) ?>,
14728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'February'), JSON_THROW_ON_ERROR) ?>,
15728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'March'), JSON_THROW_ON_ERROR) ?>,
16728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'April'), JSON_THROW_ON_ERROR) ?>,
17728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'May'), JSON_THROW_ON_ERROR) ?>,
18728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'June'), JSON_THROW_ON_ERROR) ?>,
19728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'July'), JSON_THROW_ON_ERROR) ?>,
20728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'August'), JSON_THROW_ON_ERROR) ?>,
21728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'September'), JSON_THROW_ON_ERROR) ?>,
22728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'October'), JSON_THROW_ON_ERROR) ?>,
23728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'November'), JSON_THROW_ON_ERROR) ?>,
24728c8c27SGreg Roach        <?= json_encode(I18N::translateContext('NOMINATIVE', 'December'), JSON_THROW_ON_ERROR) ?>,
25728c8c27SGreg Roach        <?= json_encode(I18N::translate('Sun'), JSON_THROW_ON_ERROR) ?>,
26728c8c27SGreg Roach        <?= json_encode(I18N::translate('Mon'), JSON_THROW_ON_ERROR) ?>,
27728c8c27SGreg Roach        <?= json_encode(I18N::translate('Tue'), JSON_THROW_ON_ERROR) ?>,
28728c8c27SGreg Roach        <?= json_encode(I18N::translate('Wed'), JSON_THROW_ON_ERROR) ?>,
29728c8c27SGreg Roach        <?= json_encode(I18N::translate('Thu'), JSON_THROW_ON_ERROR) ?>,
30728c8c27SGreg Roach        <?= json_encode(I18N::translate('Fri'), JSON_THROW_ON_ERROR) ?>,
31728c8c27SGreg Roach        <?= json_encode(I18N::translate('Sat'), JSON_THROW_ON_ERROR) ?>,
322cf1b3d7SGreg Roach        <?= I18N::locale()->territory()->firstDay() ?>
33dd6b2bfcSGreg Roach  );
34dd6b2bfcSGreg Roach</script>
35dd6b2bfcSGreg Roach<?php View::endpush() ?>
36