cardconnect.php (5954B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'CardConnect'; 4 5 // Tab 6 $_['tab_settings'] = 'Settings'; 7 $_['tab_order_status'] = 'Order Status'; 8 9 // Text 10 $_['text_extension'] = 'Extensions'; 11 $_['text_success'] = 'Success: You have modified CardConnect payment module!'; 12 $_['text_edit'] = 'Edit CardConnect'; 13 $_['text_cardconnect'] = '<a href="http://www.cardconnect.com" target="_blank"><img src="view/image/payment/cardconnect.png" alt="CardConnect" title="CardConnect"></a>'; 14 $_['text_payment'] = 'Payment'; 15 $_['text_authorize'] = 'Authorize'; 16 $_['text_live'] = 'Live'; 17 $_['text_test'] = 'Test'; 18 $_['text_no_cron_time'] = 'The cron has not yet been executed'; 19 $_['text_payment_info'] = 'Payment Information'; 20 $_['text_payment_method'] = 'Payment Method'; 21 $_['text_card'] = 'Card'; 22 $_['text_echeck'] = 'eCheck'; 23 $_['text_reference'] = 'Reference'; 24 $_['text_update'] = 'Update'; 25 $_['text_order_total'] = 'Order Total'; 26 $_['text_total_captured'] = 'Total Captured'; 27 $_['text_capture_payment'] = 'Capture Payment'; 28 $_['text_refund_payment'] = 'Refund Payment'; 29 $_['text_void'] = 'Void'; 30 $_['text_transactions'] = 'Transactions'; 31 $_['text_column_type'] = 'Type'; 32 $_['text_column_reference'] = 'Reference'; 33 $_['text_column_amount'] = 'Amount'; 34 $_['text_column_status'] = 'Status'; 35 $_['text_column_date_modified'] = 'Date Modified'; 36 $_['text_column_date_added'] = 'Date Added'; 37 $_['text_column_update'] = 'Update'; 38 $_['text_column_void'] = 'Void'; 39 $_['text_confirm_capture'] = 'Are you sure you want to capture the payment?'; 40 $_['text_confirm_refund'] = 'Are you sure you want to refund the payment?'; 41 $_['text_inquire_success'] = 'Inquire was successful'; 42 $_['text_capture_success'] = 'Capture request was successful'; 43 $_['text_refund_success'] = 'Refund request was successful'; 44 $_['text_void_success'] = 'Void request was successful'; 45 46 // Entry 47 $_['entry_merchant_id'] = 'Merchant ID'; 48 $_['entry_api_username'] = 'API Username'; 49 $_['entry_api_password'] = 'API Password'; 50 $_['entry_token'] = 'Secret Token'; 51 $_['entry_transaction'] = 'Transaction'; 52 $_['entry_environment'] = 'Environment'; 53 $_['entry_site'] = 'Site'; 54 $_['entry_store_cards'] = 'Store Cards'; 55 $_['entry_echeck'] = 'eCheck'; 56 $_['entry_total'] = 'Total'; 57 $_['entry_geo_zone'] = 'Geo Zone'; 58 $_['entry_status'] = 'Status'; 59 $_['entry_logging'] = 'Debug Logging'; 60 $_['entry_sort_order'] = 'Sort Order'; 61 $_['entry_cron_url'] = 'Cron Job URL'; 62 $_['entry_cron_time'] = 'Cron Job Last Run'; 63 $_['entry_order_status_pending'] = 'Pending'; 64 $_['entry_order_status_processing'] = 'Processing'; 65 66 // Help 67 $_['help_merchant_id'] = 'Your personal CardConnect account merchant ID.'; 68 $_['help_api_username'] = 'Your username to access the CardConnect API.'; 69 $_['help_api_password'] = 'Your password to access the CardConnect API.'; 70 $_['help_token'] = 'Enter a random token for security or use the one generated.'; 71 $_['help_transaction'] = 'Choose \'Payment\' to capture the payment immediately or \'Authorize\' to have to approve it.'; 72 $_['help_site'] = 'This determines the first part of the API URL. Only change if instructed.'; 73 $_['help_store_cards'] = 'Whether you want to store cards using tokenization.'; 74 $_['help_echeck'] = 'Whether you want to offer the ability to pay using an eCheck.'; 75 $_['help_total'] = 'The checkout total the order must reach before this payment method becomes active. Must be a value with no currency sign.'; 76 $_['help_logging'] = 'Enabling debug will write sensitive data to a log file. You should always disable unless instructed otherwise.'; 77 $_['help_cron_url'] = 'Set a cron job to call this URL so that the orders are auto-updated. It is designed to be ran a few hours after the last capture of a business day.'; 78 $_['help_cron_time'] = 'This is the last time that the cron job URL was executed.'; 79 $_['help_order_status_pending'] = 'The order status when the order has to be authorized by the merchant.'; 80 $_['help_order_status_processing'] = 'The order status when the order is automatically captured.'; 81 82 // Button 83 $_['button_inquire_all'] = 'Inquire All'; 84 $_['button_capture'] = 'Capture'; 85 $_['button_refund'] = 'Refund'; 86 $_['button_void_all'] = 'Void All'; 87 $_['button_inquire'] = 'Inquire'; 88 $_['button_void'] = 'Void'; 89 90 // Error 91 $_['error_permission'] = 'Warning: You do not have permission to modify payment CardConnect!'; 92 $_['error_merchant_id'] = 'Merchant ID Required!'; 93 $_['error_api_username'] = 'API Username Required!'; 94 $_['error_api_password'] = 'API Password Required!'; 95 $_['error_token'] = 'Secret Token Required!'; 96 $_['error_site'] = 'Site Required!'; 97 $_['error_amount_zero'] = 'Amount must be higher than zero!'; 98 $_['error_no_order'] = 'No matching order info!'; 99 $_['error_invalid_response'] = 'Invalid response received!'; 100 $_['error_data_missing'] = 'Missing data!'; 101 $_['error_not_enabled'] = 'Module not enabled!';