<?php

// +---------------------------------------------------------------------------+
// | lang.php                                                                  |
// | This is the English language page for the Geeklog Generic Plug-in!        |
// |                                                                           |
// +---------------------------------------------------------------------------|
// | Copyright (C) 2002 by the following authors:                              |
// |                                                                           |
// | Author:                                                                   |
// | Constructed with the Universal Plugin                                     |
// | Copyright (C) 2002 by the following authors:                              |
// | Tom Willett                 -    tomw@pigstye.net                         |
// | Blaine Lang                 -    langmail@sympatico.ca                    |
// | The Universal Plugin is based on prior work by:                           |
// | Tony Bibbs                  -    tony@tonybibbs.com                       |
// +---------------------------------------------------------------------------|
// | This program 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.                    |
// |                                                                           |
// | 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.                              |
// |                                                                           |
// | You should have received a copy of the GNU General Public License         |
// | along with this program; if not, write to the Free Software               |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA|
// |                                                                           |
// +---------------------------------------------------------------------------|

// +---------------------------------------------------------------------------+
// | Array Format:                                                             |
// | $LANGXX[YY]:    $LANG - variable name                                      |
// |          XX - file id number                                                |
// |        YY - phrase id number                                              |
// +---------------------------------------------------------------------------+

/**
* Generic Install language
*
* Be sure and change the name of this array to match your plugin
* e.g. $LANG_ST00
*
*/

$LANG_PL00 = array (
    
'plugin'            => 'Plugin',
    
'access_denied'     => 'Access Denied',
    
'access_denied_msg' => 'Only Root Users have Access to this Page.  Your user name and IP have been recorded.',
    
'admin'                => 'Plugin Admin',
    
'install_header'    => 'Install/Uninstall Plugin',
    
'installed'         => 'The Plugin is Installed',
    
'uninstalled'       => 'The Plugin is Not Installed',
    
'install_success'    => 'Installation Successful',
    
'install_failed'    => 'Installation Failed -- See your error log to find out why.',
    
'uninstall_msg'        => 'Plugin Successfully Uninstalled',
    
'install'           => 'Install',
    
'uninstall'         => 'UnInstall',
    
'warning'           => 'Warning! Plugin is still Enabled',
    
'enabled'           => 'Disable plugin before uninstalling.',
    
'readme'            => 'STOP! Before you press install please read the ',
    
'installdoc'        => 'Install Document.'
);

?>