Update of /cvsroot/phpmp/phpMP/languages/english
In directory sc8-pr-cvs1:/tmp/cvs-serv29029/languages/english
Modified Files:
lang_main.php
Log Message:
Various updates and code consolidation.
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/languages/english/lang_main.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** lang_main.php 4 Feb 2003 21:43:29 -0000 1.15
--- lang_main.php 7 Feb 2003 23:28:53 -0000 1.16
***************
*** 1 ****
! <?php
class Localization
{
var $lang;
function Localization()
{
$this->lang = array(
//
// General language used throughout site.
//
// Note: Always escaple singe 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',
'L_Register_a_Username' => 'Register a Username',
//
// Below is language used almost specifically for auth.
//
'L_Login' => 'Login',
'L_Logout' => 'Logout',
'L_Account_Activated' => 'Your account has been activated. You may now log in.',
'L_Required_Field' => 'Denotes a Required Field',
'L_Register_Finished' => 'Your registration has been processed. Please check your e-mail for a message explaining how to activate your new account.',
'L_Forgot_Password' => 'Forgot Your Password?',
'L_Not_logged_in' => 'You are not logged in.',
//
// 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.'
// It is IMPERATIVE that the last array value entered (usually the copyright)
// does not end in a comma.
);
}
}
?>
\ No newline at end of file
--- 1 ----
! <?php
class Localization
{
var $lang;
function Localization()
{
$this->lang = array(
//
// General language used throughout site.
//
// Note: Always escape singe 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',
'L_Register_a_Username' => 'Register a Username',
//
// Below is language used almost specifically for auth.
//
'L_Login' => 'Login',
'L_Logout' => 'Logout',
'L_Account_Activated' => 'Your account has been activated. You may now log in.',
'L_Required_Field' => 'Denotes a Required Field',
'L_Register_Finished' => 'Your registration has been processed. Please check your e-mail for a message explaining how to activate your new account.',
'L_Forgot_Password' => 'Forgot Your Password?',
'L_Not_logged_in' => 'You are not logged in.',
//
// 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.'
// It is IMPERATIVE that the last array value entered (usually the copyright)
// does not end in a comma.
);
}
}
?>
\ No newline at end of file
|