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 $co_place_error_name_failed_to_geocode = 'Failed to determine an address from the longitude and latitude';
33  static $co_place_error_desc_failed_to_geocode = 'The Google Maps Geocoding API was unable to determine an address from the given longitude and latitude.';
34 
35  static $co_place_error_name_failed_to_lookup = 'Failed to determine a longitude and latitude from the address';
36  static $co_place_error_desc_failed_to_lookup = 'The Google Maps Geocoding API was unable to determine a longitude and latitude from the given address information.';
37 
39  static $co_collection_error_name_item_not_valid = 'The Item Is not a Valid Database Item';
40  static $co_collection_error_desc_item_not_valid = 'The item with the given ID cannot be found in the database.';
41  static $co_collection_error_name_user_not_authorized = 'User Not Authorized';
42  static $co_collection_error_desc_user_not_authorized = 'The user is not authorized to modify this collection.';
43 
45  static $co_owner_error_name_user_not_authorized = 'User Not Authorized';
46  static $co_owner_error_desc_user_not_authorized = 'The user is not authorized to modify this value.';
47 
49  static $co_key_value_error_name_user_not_authorized = 'User Not Authorized';
50  static $co_key_value_error_desc_user_not_authorized = 'The user is not authorized to modify this value.';
51  static $co_key_value_error_name_instance_failed_to_initialize = 'Value Not Initialized';
52  static $co_key_value_error_desc_instance_failed_to_initialize = 'The value object failed to initialize properly.';
53 
54  // These apply to the user collection classes.
55  static $user_error_name_user_not_authorized = 'User Not Authorized';
56  static $user_error_desc_user_not_authorized = 'The user is not authorized to access the login for this user.';
57  static $user_error_name_invalid_id = 'User ID Invalid';
58  static $user_error_desc_invalid_id = 'The user ID in this instance is invalid.';
59  static $user_error_name_invalid_class = 'User Login Class Invalid';
60  static $user_error_desc_invalid_class = 'The login access class for this user is invalid.';
61 }
62 ?>