3 changed files with 75 additions and 67 deletions
@ -64,43 +64,10 @@ $config['aauth'] = array(
|
||||
|
||||
// system email. |
||||
'email' => '[email protected]', |
||||
'name' => 'Emre Akay', |
||||
'subject' => 'Account Vertification', |
||||
'reset' => 'Pasword Reset', |
||||
|
||||
|
||||
// error mesages |
||||
// change to your language |
||||
|
||||
'email_taken' => 'E-mail is already taken', |
||||
'email_invalid' => 'E-mail invalid', |
||||
'pass_invalid' => 'Password invalid', |
||||
'name_invalid' => 'Name invalid', |
||||
'code' => 'Your code is: ', |
||||
'link' => ' or you can copy and paste falowing link http://localhost/vert/', |
||||
|
||||
'remind' => 'If you want to reset your password click the copy and go the link below http://localhost/reset/', |
||||
'new_password' => 'Your new password is : ', |
||||
|
||||
// no access |
||||
'no_access' => 'You dont have access.', |
||||
|
||||
// |
||||
'wrong' => 'E-mail or Password is wrong.', |
||||
'exceeded' => 'Login try limit exceeded.', |
||||
'no_user' => 'User not Exist', |
||||
'not_verified' => 'Please verify your account.', |
||||
'group_exist' => 'Group already exists', |
||||
'no_group' => 'Group doesn\'t exists', |
||||
'self_pm' => 'It is not reasonable to send pm to yourself :)', |
||||
'no_pm' => 'Pm not found', |
||||
|
||||
//info |
||||
'already_member' => 'User already member of group', |
||||
'already_perm' => 'Permission name already existed' |
||||
'name' => 'Emre Akay' |
||||
|
||||
); |
||||
|
||||
|
||||
/* End of file autoload.php */ |
||||
/* Location: ./application/config/autoload.php */ |
||||
/* Location: ./application/config/autoload.php */ |
||||
|
@ -0,0 +1,34 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
||||
|
||||
$lang['verification_subject'] = 'Account Vertification'; |
||||
$lang['reset'] = 'Pasword Reset'; |
||||
|
||||
// error mesages |
||||
// change to your language |
||||
|
||||
$lang['email_taken'] = 'E-mail is already taken'; |
||||
$lang['email_invalid'] = 'E-mail invalid'; |
||||
$lang['pass_invalid'] = 'Password invalid'; |
||||
$lang['name_invalid'] = 'Name invalid'; |
||||
$lang['code'] = 'Your code is: '; |
||||
$lang['link'] = ' or you can copy and paste falowing link http://localhost/vert/'; |
||||
|
||||
$lang['remind'] = 'If you want to reset your password click the copy and go the link below http://localhost/reset/'; |
||||
$lang['new_password'] = 'Your new password is : '; |
||||
|
||||
// no access |
||||
$lang['no_access'] = 'You dont have access.'; |
||||
|
||||
// |
||||
$lang['wrong'] = 'E-mail or Password is wrong.'; |
||||
$lang['exceeded'] = 'Login try limit exceeded.'; |
||||
$lang['no_user'] = 'User not Exist'; |
||||
$lang['not_verified'] = 'Please verify your account.'; |
||||
$lang['group_exist'] = 'Group already exists'; |
||||
$lang['no_group'] = 'Group doesn\'t exists'; |
||||
$lang['self_pm'] = 'It is not reasonable to send pm to yourself :)'; |
||||
$lang['no_pm'] = 'Pm not found'; |
||||
|
||||
//info |
||||
$lang['already_member'] = 'User already member of group'; |
||||
$lang['already_perm'] = 'Permission name already existed'; |
Loading…
Reference in new issue