/root/language/en/mods/calendar.php
PHP | 112 lines | 73 code | 11 blank | 28 comment | 2 complexity | 01dba27dde621af300e9403138587960 MD5 | raw file
1<?php 2/** 3* 4* common [English] 5* 6* @package language 7* @version $Id: calendar.php,v ALPHA 3 2007/10/02 12:00:00 jcc264 Exp $ 8* @copyright (c) 2007 M and J Media 9* @license http://opensource.org/licenses/gpl-license.php GNU Public License 10* 11*/ 12 13/** 14* DO NOT CHANGE 15*/ 16if (empty($lang) || !is_array($lang)) 17{ 18 $lang = array(); 19} 20 21// DEVELOPERS PLEASE NOTE 22// 23// All language files should use UTF-8 as their encoding and the files must not contain a BOM. 24// 25// Placeholders can now contain order information, e.g. instead of 26// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 27// translators to re-order the output of data while ensuring it remains correct 28// 29// You do not need this where single placeholders are used, e.g. 'Message %d' is fine 30// equally where a string contains only two placeholders which are used to wrap text 31// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 32// 33// Some characters you may want to copy&paste: 34// ť 35// 36 37$lang = array_merge($lang, array( 38 39'calendar'=> array( 40 'day'=> array( 41 0 => 'Su', 42 1 => 'Mo', 43 2 => 'Tu', 44 3 => 'We', 45 4 => 'Th', 46 5 => 'Fr', 47 6 => 'Sa', 48 ), 49 50 'long_day'=> array( 51 0 => 'Sunday', 52 1 => 'Monday', 53 2 => 'Tuesday', 54 3 => 'Wednesday', 55 4 => 'Thursday', 56 5 => 'Friday', 57 6 => 'Saturday', 58 ), 59 60 'month'=> array( 61 1 => 'Jan', 62 2 => 'Feb', 63 3 => 'Mar', 64 4 => 'Apr', 65 5 => 'May', 66 6 => 'Jun', 67 7 => 'Jul', 68 8 => 'Aug', 69 9 => 'Sep', 70 10 => 'Oct', 71 11 => 'Nov', 72 12 => 'Dec', 73 ), 74 75 'long_month'=> array( 76 1 => 'January', 77 2 => 'February', 78 3 => 'March', 79 4 => 'April', 80 5 => 'May', 81 6 => 'June', 82 7 => 'July', 83 8 => 'August', 84 9 => 'September', 85 10 => 'October', 86 11 => 'November', 87 12 => 'December', 88 ), 89 ), 90 91'calendar_add_event' => 'Add Event', 92'calendar_delete_event' => 'Delete Event', 93'calendar_delete_warn' => 'Once deleted the event cannot be recovered', 94'calendar_event_name' => 'Event Name', 95'calendar_event_desc' => 'Event Description', 96'calendar_event_desc_exp' => 'Enter your event description here, it may contain no more than 255 characters', 97'calendar_event_end' => 'Event End', 98'calendar_event_start' => 'Event Start', 99'calendar_upcoming_event' => 'Upcoming Events', 100 101'calendar_post_name_error' => 'You must specify an event name when posting a new event.', 102'calendar_edit_name_error' => 'You must specify an event name when editing an event.', 103'calendar_post_time_error' => 'You must specify a valid event start time when posting a new event.', 104'calendar_edit_time_error' => 'You must specify a valid event start time when editing an event.', 105'calendar_post_date_error' => 'You must specify a valid event start date when posting a new event.', 106'calendar_edit_date_error' => 'You must specify a valid event start date when editing an event.', 107'calendar_post_desc_error' => 'You must include an event description when posting a new event.', 108'calendar_edit_desc_error' => 'You must include an event description when editing an event.', 109 110)); 111 112?>