first commit

This commit is contained in:
sujan
2024-08-06 18:06:00 +05:45
commit a2fa49071a
2745 changed files with 391199 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<?php
// Heading
$_['heading_title'] = 'APIs';
// Text
$_['text_success'] = 'Success: You have modified APIs!';
$_['text_list'] = 'API List';
$_['text_add'] = 'Add API';
$_['text_edit'] = 'Edit API';
$_['text_ip'] = 'Below you can create a list of IP\'s allowed to access the API. Your current IP is %s';
// Column
$_['column_username'] = 'API Username';
$_['column_status'] = 'Status';
$_['column_token'] = 'Token';
$_['column_ip'] = 'IP';
$_['column_date_added'] = 'Date Added';
$_['column_date_modified'] = 'Date Modified';
$_['column_action'] = 'Action';
// Entry
$_['entry_username'] = 'API Username';
$_['entry_key'] = 'API Key';
$_['entry_status'] = 'Status';
$_['entry_ip'] = 'IP';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modified APIs!';
$_['error_username'] = 'API Username must be between 3 and 20 characters!';
$_['error_key'] = 'API Key must be between 64 and 256 characters!';
$_['error_ip'] = 'You must have at least one IP added to the allowed list!';

View File

@ -0,0 +1,29 @@
<?php
// Heading
$_['heading_title'] = 'Profile';
// Text
$_['text_success'] = 'Success: You have modified your profile!';
$_['text_edit'] = 'Edit Your Profile';
$_['text_user'] = 'Users Details';
$_['text_password'] = 'Password';
// Entry
$_['entry_username'] = 'Username';
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Confirm';
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_image'] = 'Image';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify your profile!';
$_['error_username_exists'] = 'Warning: Username is already in use!';
$_['error_username'] = 'Username must be between 3 and 20 characters!';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password and password confirmation do not match!';
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
$_['error_email'] = 'E-Mail Address does not appear to be valid!';
$_['error_email_exists'] = 'Warning: E-Mail Address is already registered!';

View File

@ -0,0 +1,50 @@
<?php
// Heading
$_['heading_title'] = 'Users';
// Text
$_['text_success'] = 'Success: You have modified users!';
$_['text_list'] = 'User List';
$_['text_add'] = 'Add User';
$_['text_edit'] = 'Edit User';
$_['text_user'] = 'Users Details';
$_['text_password'] = 'Password';
$_['text_other'] = 'Other';
$_['text_login'] = 'Login History';
$_['text_authorize'] = 'Authorize History';
// Column
$_['column_username'] = 'Username';
$_['column_status'] = 'Status';
$_['column_ip'] = 'IP';
$_['column_user_agent'] = 'User Agent';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_username'] = 'Username';
$_['entry_user_group'] = 'User Group';
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Confirm';
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_image'] = 'Image';
$_['entry_status'] = 'Status';
// Tab
$_['tab_authorize'] = 'Authorize';
$_['tab_login'] = 'Login';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify users!';
$_['error_account'] = 'Warning: You cannot delete your own account!';
$_['error_login'] = 'Warning: User login does not exist!';
$_['error_username'] = 'Username must be between 3 and 20 characters!';
$_['error_username_exists'] = 'Warning: Username is already in use!';
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
$_['error_email'] = 'E-Mail Address does not appear to be valid!';
$_['error_email_exists'] = 'Warning: E-Mail Address is already registered!';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password and password confirmation do not match!';

View File

@ -0,0 +1,25 @@
<?php
// Heading
$_['heading_title'] = 'User Groups';
// Text
$_['text_success'] = 'Success: You have modified user groups!';
$_['text_list'] = 'User Group';
$_['text_add'] = 'Add User Group';
$_['text_edit'] = 'Edit User Group';
$_['text_access'] = 'Access';
$_['text_modify'] = 'Modify';
// Column
$_['column_name'] = 'User Group Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'User Group Name';
$_['entry_permission'] = 'Permissions';
$_['entry_extension'] = 'Extensions';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify user groups!';
$_['error_name'] = 'User Group Name must be between 3 and 64 characters!';
$_['error_user'] = 'Warning: This user group cannot be deleted as it is currently assigned to %s users!';