120 lines
4.3 KiB
PHP
Executable File
120 lines
4.3 KiB
PHP
Executable File
<?php
|
|
#########################################################
|
|
# #
|
|
# Global variables for english for pae.co.at #
|
|
# written by benjamin ramey #
|
|
# bsr@rameydesign.net #
|
|
# #
|
|
# best viewed with: #
|
|
# resolution = 1280x960 #
|
|
# tab = 4 spaces #
|
|
# indent = 8 spaces #
|
|
# #
|
|
########################################################################################## initialization of english globals
|
|
|
|
$_LOGIN = array('mesg_loggedout' => 'Welcome to Pro Active English.',
|
|
'mesg_loggedin' => 'Welcome, you are logged in.',
|
|
'login' => 'Login',
|
|
'logout' => 'Logout',
|
|
'logout_success_msg' => 'You have successfully logged out.',
|
|
'logout_success_title' => 'Logout Successful',
|
|
'loginagain' => 'Log in again');
|
|
|
|
$_MENU = array( 'home' => 'Home',
|
|
'whoarewe' => 'Who Are We?',
|
|
'whatdowedo' => 'What Do We Do?',
|
|
'howdowedoit' => 'How Do We Do It?',
|
|
'events' => 'Events',
|
|
'trainer' => 'Who Are We?',
|
|
'contact' => 'Contact',
|
|
'course' => 'What Do We Do?',
|
|
'menu' => 'Menu',
|
|
'methodology' => 'How Do We Do It?',
|
|
'newcourses' => 'Summer Specials',
|
|
'coursestructure' => 'How Do We Do It?',
|
|
'schedule' => 'Schedule',
|
|
'prices' => 'Prices',
|
|
'references' => 'References',
|
|
'subsidies' => 'Subsidies',
|
|
'links' => 'Links',
|
|
'directions' => 'Driving Directions',
|
|
'translations' => 'Translations');
|
|
|
|
$_WORDS = array(
|
|
'add' => 'Add',
|
|
'address' => 'Address',
|
|
'administrate' => 'Administrate',
|
|
'administrator' => 'Administrator',
|
|
'all' => 'All',
|
|
'availableseminars' => 'Available Courses',
|
|
'biography' => 'Biography',
|
|
'contactinformation'=> 'Contact Information',
|
|
'contactme' => 'Contact Me',
|
|
'course' => 'Course',
|
|
'date' => 'Date',
|
|
'delete' => 'Delete',
|
|
'description' => 'Description',
|
|
'edit' => 'Edit',
|
|
'email' => 'E-Mail',
|
|
'fax' => 'Fax',
|
|
'from' => 'From',
|
|
'functions' => 'Functions',
|
|
'location' => 'Location',
|
|
'login' => 'Log in',
|
|
'methodology' => 'Methodology',
|
|
'mobile' => 'Mobile',
|
|
'morecontact' => 'More contact information',
|
|
'no' => 'No',
|
|
'note' => 'Note',
|
|
'ourhistory' => 'Our History',
|
|
'password' => 'Password',
|
|
'philosophy' => 'Philosophy',
|
|
'phone' => 'Phone',
|
|
'qualifications' => 'Qualifications',
|
|
'readmore' => 'Read More',
|
|
'structure' => 'Structure',
|
|
'summary' => 'Summary',
|
|
'title' => 'Title',
|
|
'until' => 'Until',
|
|
'username' => 'User name',
|
|
'when' => 'When',
|
|
'where' => 'Where',
|
|
'what' => 'What',
|
|
'welcomemsg' => 'Welcome to Pro Active English',
|
|
'yes' => 'Yes');
|
|
|
|
|
|
$_TRAINERS = array( 'default_desc' => 'Unfortunately there is no description of this person at this time.',
|
|
'whoarewe_heading_trainers' => 'Our Main Trainers',
|
|
'whoarewe_heading_staff' => 'Our Staff');
|
|
|
|
$_COURSES = array( 'default_desc' => 'Unfortunately, there is no description for this course at this time.' );
|
|
|
|
$_ERRORS = array( 'trainer' => array( 'nosuch_title' => 'Trainer not found',
|
|
'nosuch_msg' => 'Sorry, no such trainer works for PAE.' ),
|
|
'whatdowedo' => array( 'nolang' => 'Sorry, no description of this course is available in english.' ),
|
|
'courses' => array( 'nosuch_title' => 'Course not found',
|
|
'nosuch_msg' => 'Sorry, no such course could be found.' ),
|
|
'pagenotfound' => 'Sorry, this page was not found in English.',
|
|
'sectionnotfound' => 'Sorry, this page section was not found in English.',
|
|
'noevents' => 'There are currently no events planned.'
|
|
);
|
|
|
|
$_MONTHS = array('January','February','March','April',
|
|
'May','June','July','August','September',
|
|
'October','November','December' );
|
|
|
|
$_SCHEDULE = array( 'seminar' => 'Course',
|
|
'level' => 'Level',
|
|
'date' => 'Date',
|
|
'duration' => 'Duration',
|
|
'venue' => 'Venue',
|
|
'participants' => 'Participants',
|
|
'registration_deadline' => 'Reg. Deadline',
|
|
'price' => 'Price',
|
|
'days' => 'Days',
|
|
'day' => 'Day'
|
|
);
|
|
|
|
$_USERS = array( 'sem_really_delete' => 'Really delete thiscourse?');
|
|
?>
|