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