mirror of
https://github.com/shadoll/translate.git
synced 2025-12-21 13:34:10 +00:00
34 lines
1.2 KiB
PHP
Executable File
34 lines
1.2 KiB
PHP
Executable File
<?php
|
|
// Text
|
|
$_['text_payment_info'] = 'Payment information';
|
|
$_['text_capture_status'] = 'Capture status';
|
|
$_['text_amount_auth'] = 'Amount authorised';
|
|
$_['text_amount_captured'] = 'Amount captured';
|
|
$_['text_amount_refunded'] = 'Amount refunded';
|
|
$_['text_capture_amount'] = 'Capture amount';
|
|
$_['text_complete_capture'] = 'Complete capture';
|
|
$_['text_transactions'] = 'Transactions';
|
|
$_['text_complete'] = 'Complete';
|
|
$_['text_confirm_void'] = 'If you void you cannot capture any further funds';
|
|
$_['text_view'] = 'View';
|
|
$_['text_refund'] = 'Refund';
|
|
$_['text_resend'] = 'Resend';
|
|
$_['success_transaction_resent'] = 'Transaction was successfully resent';
|
|
|
|
// Column
|
|
$_['column_trans_id'] = 'Transaction ID';
|
|
$_['column_amount'] = 'Amount';
|
|
$_['column_type'] = 'Payment type';
|
|
$_['column_status'] = 'Status';
|
|
$_['column_pend_reason'] = 'Pending reason';
|
|
$_['column_date_added'] = 'Created';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// Button
|
|
$_['button_void'] = 'Void';
|
|
$_['button_capture'] = 'Capture';
|
|
|
|
// Error
|
|
$_['error_capture_amt'] = 'Enter an amount to capture';
|
|
$_['error_timeout'] = 'Request timed out';
|
|
$_['error_transaction_missing'] = 'Transaction could not be found'; |