[phpMP-CVS] CVS: phpMP/languages/english lang_main.php,1.7,1.8
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2002-12-02 22:21:11
|
Update of /cvsroot/phpmp/phpMP/languages/english In directory sc8-pr-cvs1:/tmp/cvs-serv16321/languages/english Modified Files: lang_main.php Log Message: This is mostly brainstorming on my account. I used this as a way to figure out how I want things to flow. Index: lang_main.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/languages/english/lang_main.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** lang_main.php 2 Dec 2002 19:51:06 -0000 1.7 --- lang_main.php 2 Dec 2002 22:21:07 -0000 1.8 *************** *** 1,41 **** <? ! class Language { var $lang; ! function Language() { ! $this->lang['l_home'] = 'Home'; ! $this->lang['l_profile'] = 'Profile'; ! $this->lang['l_modules'] = 'Modules'; ! $this->lang['l_downloads'] = 'Downloads'; ! $this->lang['l_username'] = 'Username'; ! $this->lang['l_user_panel'] = 'User Control Panel'; ! $this->lang['l_user_panel_short'] = 'User CP'; ! $this->lang['l_email'] = 'E-mail'; ! $this->lang['l_password'] = 'Password'; ! $this->lang['l_confirm_password'] = 'Confirm'; ! $this->lang['l_realname'] = 'Real Name'; ! $this->lang['l_location'] = 'Location'; ! $this->lang['l_required_field'] = 'Denotes a Required Field'; ! $this->lang['l_register_fin'] = 'Your registration has been proccessed. Please check your e-mail for a message explaining how to activate your new account.'; ! $this->lang['l_fin_register_subject'] = 'Welcome to ' . SITE_NAME . '!'; ! $this->lang['l_activated'] = 'Your account has been activated. You may now log in.'; ! ! $this->lang['l_login'] = 'Login'; ! $this->lang['l_logout'] = 'Logout'; ! $this->lang['l_forgot_password'] = 'Forgot Your Password?'; ! $this->lang['l_register'] = 'Register'; ! ! $this->lang['l_welcome'] = 'Welcome'; ! $this->lang['l_edit_profile'] = 'Edit User Profile'; ! $this->lang['l_admin_area'] = 'Administration Area'; ! ! $this->lang['l_register_name'] = 'Register A Username'; ! $this->lang['l_not_logged_in'] = 'You are not logged in.'; ! ! $this->lang['l_powered_by'] = 'powered by phpMP ' . VERSION . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.'; ! $this->lang['l_copyright'] = 'All content is property of its respective owner. All rights reserved.'; } --- 1,53 ---- <? ! class Localization ! { var $lang; ! function Localization() ! { ! // ! // General language used throughout site. ! // ! $this->lang['Welcome_to_Site'] = 'Welcome to ' . SITE_NAME . '!'; ! $this->lang['Home'] = 'Home'; ! $this->lang['Profile'] = 'Profile'; ! $this->lang['Modules'] = 'Modules'; ! $this->lang['Downloads'] = 'Downloads'; ! $this->lang['Username'] = 'Username'; ! $this->lang['User_CP'] = 'User CP'; ! $this->lang['User_Control_Panel'] = 'User Control Panel'; ! $this->lang['E-mail'] = 'E-mail'; ! $this->lang['Password'] = 'Password'; ! $this->lang['Comfirm'] = 'Confirm'; ! $this->lang['Real Name'] = 'Real Name'; ! $this->lang['Location'] = 'Location'; ! $this->lang['Register'] = 'Register'; ! $this->lang['Welcome'] = 'Welcome'; ! ! $this->lang['Administration_Area'] = 'Administration Area'; ! $this->lang['Register_a_Username'] = 'Register a Username'; ! ! ! // ! // Below is language used almost specifically for auth. ! // ! $this->lang['Login'] = 'Login'; ! $this->lang['Logout'] = 'Logout'; ! ! $this->lang['Account_Activated'] = 'Your account has been activated. You may now log in.'; ! $this->lang['Required_Field'] = 'Denotes a Requires Field'; ! $this->lang['Registration_Finished'] = 'Your registration has been proccessed. Please check your e-mail for a message explaining how to activate your new account.'; ! $this->lang['Forgot_Password'] = 'Forgot Your Password?'; ! $this->lang['You_are_not_logged_in'] = 'You are not logged in.'; ! ! ! // ! // Other various language stuff. ! // ! $this->lang['Powered_by_phpMP'] = 'powered by phpMP ' . VERSION . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.'; ! $this->lang['Copyright'] = 'All content is property of its respective owner. All rights reserved.'; } |