18 lines
1007 B
PHP
18 lines
1007 B
PHP
|
|
<?php
|
||
|
|
return array (
|
||
|
|
'Invalid verify type' => 'Invalid verify type',
|
||
|
|
'Security verify successfully' => 'Security verify successfully',
|
||
|
|
'Incorrect mobile number format' => 'Incorrect mobile number format',
|
||
|
|
'Mobile number already exists' => 'Mobile number already exists',
|
||
|
|
'Mobile number bound successfully' => 'Mobile number bound successfully',
|
||
|
|
'Incorrect email format' => 'Incorrect email format',
|
||
|
|
'Email already exists' => 'Email already exists',
|
||
|
|
'Email bound successfully' => 'Email bound successfully',
|
||
|
|
'Username length must be between 3 and 20 characters' => 'Username length must be between 3 and 20 characters',
|
||
|
|
'Username already exists' => 'Username already exists',
|
||
|
|
'Username bound successfully' => 'Username bound successfully',
|
||
|
|
'Mobile number not bound' => 'Mobile number not bound',
|
||
|
|
'Mobile number unbound successfully' => 'Mobile number unbound successfully',
|
||
|
|
'Email not bound' => 'Email not bound',
|
||
|
|
'Email unbound successfully' => 'Email unbound successfully',
|
||
|
|
);
|