[phpMP-CVS] CVS: phpMP/languages/english lang_main.php,1.21,1.22
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-06-29 05:53:27
|
Update of /cvsroot/phpmp/phpMP/languages/english In directory sc8-pr-cvs1:/tmp/cvs-serv13269/languages/english Modified Files: lang_main.php Log Message: Hopefully this will fix a few problems. Index: lang_main.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/languages/english/lang_main.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -r1.21 -r1.22 *** lang_main.php 3 Jun 2003 06:48:22 -0000 1.21 --- lang_main.php 29 Jun 2003 05:53:24 -0000 1.22 *************** *** 39,60 **** // Note: Always escape single quote characters (') with a backslash (\). // ! 'L_Welcome_to_Site' => 'Welcome to ' . $Config->get('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', ! 'L_Register_a_Username' => 'Register a Username', --- 39,59 ---- // Note: Always escape single quote characters (') with a backslash (\). // ! 'WELCOME_TO' => 'Welcome to ', ! 'HOME' => 'Home', ! 'PROFILE' => 'Profile', ! 'MODULES' => 'Modules', ! 'DOWNLOADS' => 'Downloads', ! 'USERNAME' => 'Username', ! 'USER_CP' => 'User CP', ! 'USER_CONTROL_PANEL' => 'User Control Panel', ! 'E_MAIL' => 'E-mail', ! 'PASSWORD' => 'Password', ! 'CONFIRM' => 'Confirm', ! 'REAL_NAME' => 'Real Name', ! 'LOCATION' => 'Location', ! 'REGISTER' => 'Register', ! 'ADMINISTRATION AREA' => 'Administration Area', ! 'REGISTER_A_USERNAME' => 'Register a Username', *************** *** 62,73 **** // 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.', --- 61,72 ---- // Below is language used almost specifically for auth. // ! 'LOGIN' => 'Login', ! 'LOGOUT' => 'Logout', ! 'ACCOUNT_ACTIVATED' => 'Your account has been activated. You may now log in.', ! 'REQUIRED_FIELD' => 'Denotes a Required Field', ! 'REGISTER_FINISHED' => 'Your registration has been processed. Please check your e-mail for a message explaining how to activate your new account.', ! 'FORGOT_PASSWORD' => 'Forgot Your Password?', ! 'NOT_LOGGED_IN' => 'You are not logged in.', *************** *** 75,80 **** // Other various parts of the templates. // ! 'L_Powered_by_phpMP' => 'powered by phpMP ' . $Config->get('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) --- 74,79 ---- // Other various parts of the templates. // ! 'POWERED_BY' => 'powered by phpMP ' . $Config->get('version') . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.', ! 'COPYRIGHT' => 'All content is property of its respective owner. All rights reserved.' // It is IMPERATIVE that the last array value entered (usually the copyright) |