profile.php (1432B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Profile'; 4 5 // Text 6 $_['text_success'] = 'Success: You have modified your profile!'; 7 $_['text_edit'] = 'Edit Your Profile'; 8 9 // Column 10 $_['column_username'] = 'Username'; 11 $_['column_status'] = 'Status'; 12 $_['column_date_added'] = 'Date Added'; 13 $_['column_action'] = 'Action'; 14 15 // Entry 16 $_['entry_username'] = 'Username'; 17 $_['entry_password'] = 'Password'; 18 $_['entry_confirm'] = 'Confirm'; 19 $_['entry_firstname'] = 'First Name'; 20 $_['entry_lastname'] = 'Last Name'; 21 $_['entry_email'] = 'E-Mail'; 22 $_['entry_image'] = 'Image'; 23 24 // Error 25 $_['error_permission'] = 'Warning: You do not have permission to modify your profile!'; 26 $_['error_exists_username'] = 'Warning: Username is already in use!'; 27 $_['error_username'] = 'Username must be between 3 and 20 characters!'; 28 $_['error_password'] = 'Password must be between 4 and 20 characters!'; 29 $_['error_confirm'] = 'Password and password confirmation do not match!'; 30 $_['error_firstname'] = 'First Name must be between 1 and 32 characters!'; 31 $_['error_lastname'] = 'Last Name must be between 1 and 32 characters!'; 32 $_['error_email'] = 'E-Mail Address does not appear to be valid!'; 33 $_['error_exists_email'] = 'Warning: E-Mail Address is already registered!';