[phpMP-CVS] CVS: phpMP/languages/english lang_main.php,1.14,1.15
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-02-04 21:44:03
|
Update of /cvsroot/phpmp/phpMP/languages/english In directory sc8-pr-cvs1:/tmp/cvs-serv30097/languages/english Modified Files: lang_main.php Log Message: Most all files updated. Forgot a small compatibility issue regarding <? and <?php. Also, deleted some lines at the end of files and changed a few config names. Index: lang_main.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/languages/english/lang_main.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** lang_main.php 5 Dec 2002 00:33:42 -0000 1.14 --- lang_main.php 4 Feb 2003 21:43:29 -0000 1.15 *************** *** 1,66 **** ! <? ! ! 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. ! ! ); ! ! } ! ! } ! ! ?> --- 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 |