BAOBAB
en.php
Go to the documentation of this file.
1 <?php
2 /***************************************************************************************************************************/
26 defined( 'LGV_LANG_CATCHER' ) or die ( 'Cannot Execute Directly' ); // Makes sure that this file is in the correct context.
27 
28 /***************************************************************************************************************************/
32  static $cobra_error_name_invalid_chameleon = 'Invalid CHAMELEON Instance';
33  static $cobra_error_desc_invalid_chameleon = 'COBRA cannot be initialized with the given CHAMELEON instance.';
34  static $cobra_error_name_user_not_authorized = 'Current User Not Authorized';
35  static $cobra_error_desc_user_not_authorized_instance = 'The current user is not authorized to instantiate COBRA.';
36  static $cobra_error_desc_user_not_authorized = 'The current user is not authorized to create user objects.';
37  static $cobra_error_name_instance_failed_to_initialize = 'User Not Initialized';
38  static $cobra_error_desc_instance_failed_to_initialize = 'The user object failed to initialize properly.';
39  static $cobra_error_name_user_already_exists = 'User Already Exists';
40  static $cobra_error_desc_user_already_exists = 'The specified user already exists.';
41  static $cobra_error_name_login_unavailable = 'The Login Is Unavailable';
42  static $cobra_error_desc_login_unavailable = 'The reqested login is unavailable to this user.';
43  static $cobra_error_name_login_error = 'Login Error';
44  static $cobra_error_desc_login_error = 'There was an unspecified error with this login.';
45  static $cobra_error_name_token_instance_failed_to_initialize = 'Token Not Initialized';
46  static $cobra_error_desc_token_instance_failed_to_initialize = 'The security token object failed to initialize properly.';
47  static $cobra_error_name_token_id_not_set = 'Token ID Not Set';
48  static $cobra_error_desc_token_id_not_set = 'The security token object was not created, because the ID could not be set.';
49  static $cobra_error_name_password_too_short = 'Password Too Short';
50  static $cobra_error_desc_password_too_short = 'The password is too short.';
51 }
52 ?>