129 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
 | 
						|
/*
 | 
						|
 | 
						|
Copyright 2018 Murray Hayes
 | 
						|
 | 
						|
Redistribution and use in source and binary forms, with or without
 | 
						|
modification, are permitted provided that the following conditions
 | 
						|
are met:
 | 
						|
 | 
						|
1. Redistributions of source code must retain the above copyright
 | 
						|
notice, this list of conditions and the following disclaimer.
 | 
						|
 | 
						|
2. Redistributions in binary form must reproduce the above copyright
 | 
						|
notice, this list of conditions and the following disclaimer in the
 | 
						|
documentation and/or other materials provided with the distribution.
 | 
						|
 | 
						|
3. Neither the name of the copyright holder nor the names of its
 | 
						|
contributors may be used to endorse or promote products derived from
 | 
						|
this software without specific prior written permission.
 | 
						|
 | 
						|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 | 
						|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
						|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 | 
						|
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 | 
						|
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 | 
						|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 | 
						|
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 | 
						|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 | 
						|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 | 
						|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 | 
						|
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | 
						|
POSSIBILITY OF SUCH DAMAGE.
 | 
						|
 | 
						|
*/
 | 
						|
 | 
						|
 | 
						|
include_once 'utils.php';
 | 
						|
 | 
						|
$text0000 = "Submit";
 | 
						|
$text0001 = "Search";
 | 
						|
$text0002 = "Cancel";
 | 
						|
$text0003 = "Add Picture";
 | 
						|
$text0004 = "Update";
 | 
						|
$text0005 = "Test";
 | 
						|
$text0006 = "Commit";
 | 
						|
$text0007 = "Upload";
 | 
						|
$text0008 = "New Transaciton";
 | 
						|
 | 
						|
$text0010 = "Username or Password incorrect.";
 | 
						|
$text0011 = "Invalid password.";
 | 
						|
$text0012 = "Reset Password";
 | 
						|
$text0015 = "Activate"; //tool_activation.php
 | 
						|
$text0016 = "Deactivate";
 | 
						|
$text0017 = "DeactivateAll";
 | 
						|
 | 
						|
$text0020 = "Withdraw"; //classes.php
 | 
						|
$text0021 = "Register";
 | 
						|
 | 
						|
$text0100 = "User Preferences";
 | 
						|
$text0101 = "Language:";
 | 
						|
$text0102 = "Prefer XML:";
 | 
						|
$text0103 = "Prefer Desktop Version:";
 | 
						|
$text0104 = "Use Predefined Style Set:";
 | 
						|
$text0105 = "Use User Uploaded Stylesheet: ";
 | 
						|
$text0106 = "Upload Custom CSS File: ";
 | 
						|
$text0107 = "No Custom CSS File Uploaded";
 | 
						|
$text0108 = "Transaction ID";
 | 
						|
$text0109 = "Member ID";
 | 
						|
$text0110 = "Transaction Date";
 | 
						|
$text0111 = "Memo";
 | 
						|
$text0112 = "Quantity";
 | 
						|
$text0113 = "Total Price";
 | 
						|
$text0114 = "Reference";
 | 
						|
$text0115 = "Category";
 | 
						|
$text0116 = "Payment Method";
 | 
						|
$text0117 = "Account Type";
 | 
						|
$text0118 = "Info Source";
 | 
						|
$text0119 = "Months Added";
 | 
						|
$text0120 = "ID";
 | 
						|
$text0121 = "Member Name";
 | 
						|
$text0122 = "Area";
 | 
						|
$text0123 = "Sub Area";
 | 
						|
$text0124 = "Column";
 | 
						|
$text0125 = "Row";
 | 
						|
$text0126 = "Hexidecimal Address";
 | 
						|
$text0127 = "User Friendly Address";
 | 
						|
$text0128 = "Comment";
 | 
						|
$text0129 = "Last Tag Print";
 | 
						|
$text0130 = "Encrypt Email:";
 | 
						|
$text0131 = "Upload PGP key:";
 | 
						|
$text0132 = "Change Picture";
 | 
						|
 | 
						|
 | 
						|
$text7000 = <<<EOD
 | 
						|
You have been registered in a class and you may now confirm your
 | 
						|
registration by submiting the payment if any.  Only members who have
 | 
						|
been confirmed (most likely by paying the course fee) are guaranteed
 | 
						|
one of the seats in the class.  If the course is full, you will be
 | 
						|
notified if a seat opens up based on the oreder members signed up for
 | 
						|
the class.
 | 
						|
EOD;
 | 
						|
$text7100 = 'This page was generated on ';
 | 
						|
$text7101 = ' by software ';
 | 
						|
$text7102 = 'licenced';
 | 
						|
$text7103 = ' by The Deerfoot Irregualrs and is Copyright of ';
 | 
						|
$text7104 = '.';
 | 
						|
 | 
						|
 | 
						|
 | 
						|
switch (returnLanguagePreferenceFromBrowser())
 | 
						|
{
 | 
						|
  case "en":
 | 
						|
    break;
 | 
						|
  case "fr":
 | 
						|
    {
 | 
						|
      
 | 
						|
    }
 | 
						|
    break;
 | 
						|
  case "es":
 | 
						|
    {
 | 
						|
      
 | 
						|
    }
 | 
						|
    break;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
?>
 |