1<?php
2/**
3 * English language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Milosz Galazka <milosz@sleeplessbeastie.eu>
7 */
8
9// months
10$lang['monthcal_months'] = array(
11				'January',
12				'Febuary',
13				'March',
14				'April',
15				'May',
16				'June',
17				'July',
18				'August',
19				'September',
20				'October',
21				'November',
22				'December'
23				);
24
25// weekdays
26$lang['monthcal_weekdays_short'] = array('M','T','W','T','F','S','S');
27
28?>
29