59 lines
1.9 KiB
PHP
59 lines
1.9 KiB
PHP
<?php
|
|
// Date and Time
|
|
|
|
// The Weekdays
|
|
$weekday[0] = __('Sunday');
|
|
$weekday[1] = __('Monday');
|
|
$weekday[2] = __('Tuesday');
|
|
$weekday[3] = __('Wednesday');
|
|
$weekday[4] = __('Thursday');
|
|
$weekday[5] = __('Friday');
|
|
$weekday[6] = __('Saturday');
|
|
|
|
// The first letter of each day. Note that marking single characters for
|
|
// translation is useless, but here it is.
|
|
$weekday_initial[__('Sunday')] = __('S');
|
|
$weekday_initial[__('Monday')] = __('M');
|
|
$weekday_initial[__('Tuesday')] = __('T');
|
|
$weekday_initial[__('Wednesday')] = __('W');
|
|
$weekday_initial[__('Thursday')] = __('T');
|
|
$weekday_initial[__('Friday')] = __('F');
|
|
$weekday_initial[__('Saturday')] = __('S');
|
|
|
|
// Abbreviations for each day.
|
|
$weekday_abbrev[__('Sunday')] = __('Sun');
|
|
$weekday_abbrev[__('Monday')] = __('Mon');
|
|
$weekday_abbrev[__('Tuesday')] = __('Tue');
|
|
$weekday_abbrev[__('Wednesday')] = __('Wed');
|
|
$weekday_abbrev[__('Thursday')] = __('Thu');
|
|
$weekday_abbrev[__('Friday')] = __('Fri');
|
|
$weekday_abbrev[__('Saturday')] = __('Sat');
|
|
|
|
// The Months
|
|
$month['01'] = __('January');
|
|
$month['02'] = __('February');
|
|
$month['03'] = __('March');
|
|
$month['04'] = __('April');
|
|
$month['05'] = __('May');
|
|
$month['06'] = __('June');
|
|
$month['07'] = __('July');
|
|
$month['08'] = __('August');
|
|
$month['09'] = __('September');
|
|
$month['10'] = __('October');
|
|
$month['11'] = __('November');
|
|
$month['12'] = __('December');
|
|
|
|
// Abbreviations for each month.
|
|
$month_abbrev[__('January')] = __('Jan');
|
|
$month_abbrev[__('February')] = __('Feb');
|
|
$month_abbrev[__('March')] = __('Mar');
|
|
$month_abbrev[__('April')] = __('Apr');
|
|
$month_abbrev[__('May')] = __('May');
|
|
$month_abbrev[__('June')] = __('Jun');
|
|
$month_abbrev[__('July')] = __('Jul');
|
|
$month_abbrev[__('August')] = __('Aug');
|
|
$month_abbrev[__('September')] = __('Sep');
|
|
$month_abbrev[__('October')] = __('Oct');
|
|
$month_abbrev[__('November')] = __('Nov');
|
|
$month_abbrev[__('December')] = __('Dec');
|
|
?>
|