BLUE DRAGON PHP SDK
All Classes Functions Variables Pages
en.php
1 <?php
2 /***************************************************************************************************************************/
24 require_once(dirname(__FILE__).'/common.php');
25 
26 /****************************************************************************************************************************/
30 class RVP_Locale_en extends A_RVP_Locale {
31  /***********************/
35  protected static function _get_default_error_message() {
36  return 'Unknown Error';
37  }
38 
39  /***********************/
43  protected static function _get_error_table() {
44  return [
45  'message_'._ERR_INVALID_SERVER_URI__ => 'Invalid Server URL',
46  'message_'._ERR_INVALID_LOGIN__ => 'Invalid Login Credentials',
47  'message_'._ERR_INVALID_AUTHENTICATION__ => 'Invalid Authentication',
48  'message_'._ERR_NOT_AUTHORIZED__ => 'Not Authorized to Perform This Operation',
49  'message_'._ERR_NO_RESULTS__ => 'No Results',
50  'message_'._ERR_PREV_LOGIN__ => 'There Is Already A Login',
51  'message_'._ERR_COMM_ERR__ => 'There Was A Communication Error With the Server',
52  'message_'._ERR_INTERNAL_ERR__ => 'There Was An Internal Program Error',
53  'message_'._ERR_NOT_LOGGED_IN__ => 'Attempted to Log Out When No Login present',
54  'message_'._ERR_INVALID_PARAMETERS__ => 'The parameters provided were incorrect or out of bounds',
55  'message_'._ERR_LOGIN_HAS_USER__ => 'The login association failed, because the login is already associated with a different user',
56  'message_'._ERR_INVALID_LOGIN_ID__ => 'The login ID provided was invalid.',
57  ];
58  }
59 }
60 ?>
static _get_error_table()
Definition: en.php:43
static _get_default_error_message()
Definition: en.php:35