<?php
 
/**
 
 * en.php
 
 *
 
 * Lanugage array for English based sites
 
 *
 
 * LICENSE: This library is free software; you can redistribute it and/or
 
 * modify it under the terms of the GNU General Public
 
 * License as published by the Free Software Foundation; either
 
 * version 2 of the License, or (at your option) any later version.
 
 * @package Phritz
 
 * @link http://phritz.fritz-works.com
 
 * @author Michael Collado <[email protected]>
 
 * @copyright 2006
 
 * @version 0.0.1a
 
 **/
 
 
 
$PhritzLang = array();
 
 
$PhritzLang['invalid_param'] = "One of the fields was invalid";
 
$PhritzLang['missing_param'] = "Please do not leave any fields blank";
 
$PhritzLang['invalid_action'] = "An unknown function has been requested";
 
$PhritzLang['op_successful'] = 'The operation completed successfully';
 
$PhritzLang['inactive'] = 'This feature is temporarily unavailable';
 
$PhritzLang['no_auth'] = 'The current user is not authorized to perform the requested function';
 
$PhritzLang['login_required'] = 'You must log in to use the requested feature';
 
$PhritzLang['login_failed'] = 'Login was unsuccessful. Please check your username and password and try again';
 
$PhritzLang['Please_Login'] = 'Please Login';
 
$PhritzLang['unknown_module'] = 'The page you requested cannot be found.';
 
$PhritzLang['unavailable'] = 'not currently available';
 
 
$PhritzLang['Login'] = 'Login';
 
$PhritzLang['Name'] = 'Name';
 
$PhritzLang['Pass'] = 'Password';
 
$PhritzLang['Groups'] = 'Groups';
 
$PhritzLang['Modules'] = 'Modules';
 
$PhritzLang['Users'] = 'Users';
 
$PhritzLang['Settings'] = 'Settings';
 
$PhritzLang['Perms'] = 'Permissions';
 
 
$PhritzLang['Save'] = 'Save';
 
$PhritzLang['Menu'] = 'Menu';
 
$PhritzLang['Main'] = 'Main';
 
$PhritzLang['Delete'] = 'Delete';
 
$PhritzLang['Active'] = 'Active';
 
$PhritzLang['Title'] = 'Title';
 
 
$PhritzLang['Group_Config'] = 'Group Configuration';
 
$PhritzLang['Mod_Config'] = 'Module Configuration';
 
$PhritzLang['Act_Config'] = 'Action Configuration';
 
?>
 
 |