Update of /cvsroot/phpmp/phpMP/languages/english
In directory sc8-pr-cvs1:/tmp/cvs-serv10803/languages/english
Modified Files:
lang_main.php
Log Message:
Fixed a few things. Removed redudant lines in template.php (redundant if initialized by Core). Config.php should always remain empty in CVS. Started work on debug interface. Lastly, autologin will now work as I want it to.
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/languages/english/lang_main.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** lang_main.php 8 Feb 2003 09:43:29 -0000 1.17
--- lang_main.php 2 May 2003 04:52:57 -0000 1.18
***************
*** 8,11 ****
--- 8,12 ----
function Localization()
{
+ global $Config;
$this->lang = array(
***************
*** 16,34 ****
// Note: Always escape single quote characters (') with a backslash (\).
//
! 'L_Welcome_to_Site' => 'Welcome to ' . C_SITE_NAME . '!',
! 'L_Home' => 'Home',
! 'L_Profile' => 'Profile',
! 'L_Modules' => 'Modules',
'L_Downloads' => 'Downloads',
'L_Username' => 'Username',
! 'L_User_CP' => 'User CP',
'L_User_Control_Panel' => 'User Control Panel',
! 'L_E-mail' => 'E-mail',
'L_Password' => 'Password',
! 'L_Comfirm' => 'Confirm',
'L_Real Name' => 'Real Name',
'L_Location' => 'Location',
'L_Register' => 'Register',
! 'L_Welcome' => 'Welcome',
'L_Administration_Area' => 'Administration Area',
--- 17,35 ----
// Note: Always escape single quote characters (') with a backslash (\).
//
! 'L_Welcome_to_Site' => 'Welcome to ' . $Config['site_name'] . '!',
! 'L_Home' => 'Home',
! 'L_Profile' => 'Profile',
! 'L_Modules' => 'Modules',
'L_Downloads' => 'Downloads',
'L_Username' => 'Username',
! 'L_User_CP' => 'User CP',
'L_User_Control_Panel' => 'User Control Panel',
! 'L_E-mail' => 'E-mail',
'L_Password' => 'Password',
! 'L_Confirm' => 'Confirm',
'L_Real Name' => 'Real Name',
'L_Location' => 'Location',
'L_Register' => 'Register',
! 'L_Welcome' => 'Welcome',
'L_Administration_Area' => 'Administration Area',
***************
*** 52,56 ****
// Other various parts of the templates.
//
! 'L_Powered_by_phpMP' => 'powered by phpMP ' . C_VERSION . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.',
'L_Copyright' => 'All content is property of its respective owner. All rights reserved.'
--- 53,57 ----
// Other various parts of the templates.
//
! 'L_Powered_by_phpMP' => 'powered by phpMP ' . $Config['version'] . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.',
'L_Copyright' => 'All content is property of its respective owner. All rights reserved.'
|