Update of /cvsroot/phpmp/phpMP/languages/english
In directory usw-pr-cvs1:/tmp/cvs-serv26475/languages/english
Added Files:
lang_main.php
Log Message:
Fully integrated Smarty (finally). Blocks now work (and quite well, too).
Went ahead and split header and fotter from main template, plus added the module template.
--- NEW FILE: lang_main.php ---
<?
/******************************************************************************
*******************************************************************************
phpMP - The World's Greatest Modular Portal
***********************************************
Are you MPowered?
Copyright (C) 2002 phpMP Development Group
All rights reserved.
Lead Programmer: Brian Rose
Lead Designer: Trevor Joynson
Filename: /languages/english/lang_main.php
Usage & Function: Main English Language File
Create Date: July 25, 2002
$Id: lang_main.php,v 1.1 2002/07/25 20:50:07 heimidal Exp $
*******************************************************************************
*******************************************************************************
This software is provided under the GPL software license. A copy of the
license should have been included with this software, located in the Docs
folder. Feel free to redistribute and/or modify it according to the
regulations stated in the license.
*******************************************************************************
******************************************************************************/
global $MPCONF;
$lang['l_home'] = 'Home';
$lang['l_nav_bar'] = '<a href="' . $MPCONF['GEN']['uri'] . '/index.php">home</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/features.php">features</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/forums/index.php">forums</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/downloads.php">downloads</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/support.php">support</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/about.php">about</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/team.php">team</a> <font color="#0a4a67">•</font> <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmp/phpMP/">cvs</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . '/devworld/modules/index.php?action=list">modules</a> <font color="#0a4a67">•</font> <a href="http://www.sourceforge.net/">sourceforge</a>';
$lang['l_username'] = 'Username';
$lang['l_password'] = 'Password';
$lang['l_login'] = 'Login';
$lang['l_forgot_passwd'] = 'Forgot Your Password?';
$lang['l_register'] = 'Register A Username';
$lang['l_not_logged_in'] = 'You are not logged in.';
$lang['l_powered_by'] = 'powered by phpMP ' . $MPCONF['GEN']['version'] . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.';
$lang['l_copyright'] = 'All content is property of its respective owner. All rights reserved.';
?>
|