shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

api.php (1209B)


      1 <?php
      2 // Heading
      3 $_['heading_title']        = 'APIs';
      4 
      5 // Text
      6 $_['text_success']         = 'Success: You have modified APIs!';
      7 $_['text_list']            = 'API List';
      8 $_['text_add']             = 'Add API';
      9 $_['text_edit']            = 'Edit API';
     10 $_['text_ip']              = 'Below you can create a list of IP\'s allowed to access the API. Your current IP is %s';
     11 
     12 // Column
     13 $_['column_username']      = 'API Username';
     14 $_['column_status']        = 'Status';
     15 $_['column_token']         = 'Token';
     16 $_['column_ip']            = 'IP';
     17 $_['column_date_added']    = 'Date Added';
     18 $_['column_date_modified'] = 'Date Modified';
     19 
     20 $_['column_action']        = 'Action';
     21 
     22 // Entry
     23 $_['entry_username']       = 'API Username';
     24 $_['entry_key']            = 'API Key';
     25 $_['entry_status']         = 'Status';
     26 $_['entry_ip']             = 'IP';
     27 
     28 // Error
     29 $_['error_permission']     = 'Warning: You do not have permission to modified APIs!';
     30 $_['error_username']       = 'API USername must be between 3 and 20 characters!';
     31 $_['error_key']            = 'API Key must be between 64 and 256 characters!';
     32 $_['error_ip']             = 'You must have atleast one IP added to the allowed list!';