<?php // $Id: userapi.php,v 1.12 2002/04/03 00:02:44 epsilon7 Exp $
// ----------------------------------------------------------------------
// POST-NUKE Content Management System
// Copyright (C) 2001 by the PostNuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// Based on:
// PHP-NUKE Web Portal System - http://phpnuke.org/
// Thatware - http://thatware.org/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WIthOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Jim McDonald
// Purpose of file: Language defines for pnuserapi.php
// ----------------------------------------------------------------------
define('_GETFAILED', 'Items load failed');
if (!defined('_TEMPLATENOAUTH')) {
define('_TEMPLATENOAUTH','Not authorised to access Template module');
}
define('_CALJAN', 'January');
define('_CALFEB', 'February');
define('_CALMAR', 'March');
define('_CALAPR', 'April');
define('_CALMAY', 'May');
define('_CALJUN', 'June');
define('_CALJUL', 'July');
define('_CALAUG', 'August');
define('_CALSEP', 'September');
define('_CALOCT', 'October');
define('_CALNOV', 'November');
define('_CALDEC', 'December');
define('_CALPREVIOUS', 'Prev');
define('_CALNEXT', 'Next');
define('_CALLONGFIRSTDAY', 'Sunday');
define('_CALLONGSECONDDAY', 'Monday');
define('_CALLONGTHIRDDAY', 'Tuesday');
define('_CALLONGFOURTHDAY', 'Wednesday');
define('_CALLONGFIFTHDAY', 'Thurdsay');
define('_CALLONGSIXTHDAY', 'Friday');
define('_CALLONGSEVENTHDAY','Saturday');
if(!defined('_CALMONDAYSHORT')) define('_CALMONDAYSHORT', 'M');
if(!defined('_CALTUESDAYSHORT')) define('_CALTUESDAYSHORT', 'T');
if(!defined('_CALWEDNESDAYSHORT')) define('_CALWEDNESDAYSHORT','W');
if(!defined('_CALTHURSDAYSHORT')) define('_CALTHURSDAYSHORT', 'T');
if(!defined('_CALFRIDAYSHORT')) define('_CALFRIDAYSHORT', 'F');
if(!defined('_CALSATURDAYSHORT')) define('_CALSATURDAYSHORT', 'S');
if(!defined('_CALSUNDAYSHORT')) define('_CALSUNDAYSHORT', 'S');
define('_CALAPPOINTMENTS', 'Appointments');
define('_CALEVENTS', 'Events');
define('_CALMORNING', 'AM');
define('_CALEVENING', 'PM');
define('_CALSUNDAY', 'Sunday');
define('_CALMONDAY', 'Monday');
define('_CALTUESDAY', 'Tuesday');
define('_CALWEDNESDAY', 'Wednesday');
define('_CALTHURSDAY', 'Thursday');
define('_CALFRIDAY', 'Friday');
define('_CALSATURDAY', 'Saturday');
define('_CAL_DAYVIEW', 'Day');
define('_CAL_WEEKVIEW', 'Week');
define('_CAL_MONTHVIEW', 'Month');
define('_CAL_YEARVIEW', 'Year');
define('_PC_WEEK', 'week');
define('_PC_ADD_EVENT', 'add an event for ');
// here are the language defines for the Popup window
define('_CALVIEWEVENT','Event Details');
define('_CALEVENTDATEPREVIEW','Event Begins');
define('_CALENDDATEPREVIEW','Event Ends');
define('_CALSTARTTIME','Start');
define('_CALENDTIME','End');
define('_CALARTICLETEXT','Event Description');
define('_CALLOCATION','Location');
define('_CONTTEL','Phone Number');
define('_CONTNAME','Name');
define('_CONTEMAIL','Email');
define('_CONTWEBSITE','Website');
define('_FEE','Fee');
define('_CALPOSTEDBY','Submitted by');
define('_CALPOSTEDON','Posted on');
define('_CALCLOSEWINDOW','close window');
define('_CALSAMEDAY','Same Day');
// overLIB language definitions
define('_PC_OL_CLOSE', 'Close');
?>