127 lines
6.6 KiB
PHP
127 lines
6.6 KiB
PHP
<?php
|
|
|
|
# Gateway Name
|
|
$lang['paystack'] = 'Paystack';
|
|
$lang['paystack_gateway_name'] = 'Paystack Payment Gateway';
|
|
|
|
# Settings
|
|
$lang['settings_paystack_secret_key'] = 'Secret Key';
|
|
$lang['settings_paystack_public_key'] = 'Public Key';
|
|
$lang['settings_paystack_test_mode_enabled'] = 'Test Mode';
|
|
$lang['settings_group_paystack'] = 'Paystack Settings';
|
|
|
|
# Messages
|
|
$lang['payment_received'] = 'Payment received successfully';
|
|
$lang['payment_failed'] = 'Payment failed';
|
|
$lang['payment_cancelled'] = 'Payment cancelled';
|
|
|
|
# Errors
|
|
$lang['paystack_invalid_transaction'] = 'Invalid transaction';
|
|
$lang['paystack_transaction_not_found'] = 'Transaction not found';
|
|
$lang['paystack_invalid_reference'] = 'Invalid reference';
|
|
$lang['paystack_api_error'] = 'API Error: %s';
|
|
|
|
|
|
# Gateway Settings
|
|
$lang['paystack'] = 'Paystack';
|
|
$lang['paystack_gateway_name'] = 'Paystack Payment Gateway';
|
|
$lang['paystack_live_secret_key'] = 'Live Secret Key';
|
|
$lang['paystack_live_public_key'] = 'Live Public Key';
|
|
$lang['paystack_test_secret_key'] = 'Test Secret Key';
|
|
$lang['paystack_test_public_key'] = 'Test Public Key';
|
|
$lang['test_mode_enabled'] = 'Test Mode Enabled';
|
|
$lang['webhook_secret'] = 'Webhook Secret';
|
|
$lang['max_retry_attempts'] = 'Maximum Retry Attempts';
|
|
|
|
# Payment Status
|
|
$lang['payment_successful'] = 'Payment Successful';
|
|
$lang['payment_failed'] = 'Payment Failed';
|
|
$lang['payment_pending'] = 'Payment Pending';
|
|
$lang['payment_cancelled'] = 'Payment Cancelled';
|
|
$lang['payment_processing'] = 'Processing Payment';
|
|
$lang['payment_validation_failed'] = 'Payment Validation Failed';
|
|
|
|
# Error Messages
|
|
$lang['invalid_transaction'] = 'Invalid Transaction';
|
|
$lang['invalid_amount'] = 'Invalid Amount';
|
|
$lang['invalid_currency'] = 'Invalid Currency';
|
|
$lang['invalid_email'] = 'Invalid Email';
|
|
$lang['invalid_reference'] = 'Invalid Reference';
|
|
$lang['transaction_failed'] = 'Transaction Failed';
|
|
$lang['transaction_expired'] = 'Transaction Expired';
|
|
$lang['rate_limit_exceeded'] = 'Too many attempts. Please try again later.';
|
|
$lang['api_error'] = 'API Error: %s';
|
|
$lang['verification_failed'] = 'Transaction Verification Failed';
|
|
$lang['webhook_verification_failed'] = 'Webhook Verification Failed';
|
|
|
|
# Success Messages
|
|
$lang['payment_recorded'] = 'Payment Recorded Successfully';
|
|
$lang['webhook_received'] = 'Webhook Received Successfully';
|
|
$lang['verification_successful'] = 'Verification Successful';
|
|
|
|
# Transaction Details
|
|
$lang['transaction_reference'] = 'Transaction Reference';
|
|
$lang['total_transactions'] = 'Total Transaction';
|
|
$lang['transaction_amount'] = 'Amount';
|
|
$lang['transaction_date'] = 'Transaction Date';
|
|
$lang['transaction_status'] = 'Status';
|
|
$lang['transaction_currency'] = 'Currency';
|
|
$lang['transaction_email'] = 'Email';
|
|
$lang['recent_transactions'] = 'Recent transactions';
|
|
$lang['monthly_transactions'] = 'Monthly transactions';
|
|
$lang['successful_transactions'] = 'Successful Transactions';
|
|
$lang['failed_transactions'] = 'Failed Transactions';
|
|
|
|
# Admin Area
|
|
$lang['paystack_settings'] = 'Paystack Settings';
|
|
$lang['test_mode_warning'] = 'Gateway is in Test Mode. Real payments will not be processed.';
|
|
$lang['settings_updated'] = 'Settings Updated Successfully';
|
|
$lang['view_transaction'] = 'View Transaction';
|
|
$lang['retry_payment'] = 'Retry Payment';
|
|
$lang['gateway_mode'] = 'Gateway Mode';
|
|
$lang['live_mode'] = 'Live Mode';
|
|
$lang['test_mode'] = 'Test Mode';
|
|
|
|
# Logging
|
|
$lang['payment_attempt_logged'] = 'Payment Attempt Logged';
|
|
$lang['api_request_logged'] = 'API Request Logged';
|
|
$lang['error_logged'] = 'Error Logged';
|
|
$lang['view_logs'] = 'View Logs';
|
|
$lang['clear_logs'] = 'Clear Logs';
|
|
|
|
# Webhook
|
|
$lang['webhook_url'] = 'Webhook URL';
|
|
$lang['webhook_setup_guide'] = 'Webhook Setup Guide';
|
|
$lang['configure_webhook'] = 'Configure Webhook';
|
|
$lang['test_webhook'] = 'Test Webhook';
|
|
|
|
# Security
|
|
$lang['security_settings'] = 'Security Settings';
|
|
$lang['encryption_key'] = 'Encryption Key';
|
|
$lang['rate_limiting'] = 'Rate Limiting';
|
|
$lang['attempts_allowed'] = 'Attempts Allowed';
|
|
$lang['timeframe_minutes'] = 'Timeframe (Minutes)';
|
|
|
|
# Documentation
|
|
$lang['integration_guide'] = 'Integration Guide';
|
|
$lang['api_documentation'] = 'API Documentation';
|
|
$lang['troubleshooting_guide'] = 'Troubleshooting Guide';
|
|
|
|
# Buttons
|
|
$lang['pay_with_paystack'] = 'Pay with Paystack';
|
|
$lang['verify_payment'] = 'Verify Payment';
|
|
$lang['retry_verification'] = 'Retry Verification';
|
|
$lang['cancel_payment'] = 'Cancel Payment';
|
|
|
|
# Misc
|
|
$lang['paystack_not_configured'] = 'Paystack Gateway is not properly configured';
|
|
$lang['contact_support'] = 'Contact Support';
|
|
$lang['view_transaction_history'] = 'View Transaction History';
|
|
$lang['export_transactions'] = 'Export Transactions';
|
|
$lang['sync_transactions'] = 'Sync Transactions';
|
|
$lang['paystack_transactions'] = 'Paystack Transactions';
|
|
$lang['paystack_dashboard'] = 'Dashboard';
|
|
$lang['dashboard'] = 'Dashboard';
|
|
$lang['transactions'] = 'Transactions';
|
|
$lang['start_date'] = 'Start Date';
|
|
$lang['end_date'] = 'End Date'; |