78 lines
2.7 KiB
PHP
78 lines
2.7 KiB
PHP
<?php
|
|
|
|
$txt_str['orderPayment'] = [
|
|
'titleAdd' => 'New payment',
|
|
'titleEdit' => 'Edit payment',
|
|
'titleReturn' => 'Return payment',
|
|
|
|
'activityEdited' => 'Edited payment: %s',
|
|
'activityAdded' => 'Added payment: %s',
|
|
'activityDeleted' => 'Deleted payment: %s',
|
|
|
|
'toolbar_list' => 'Payments',
|
|
'toolbar_add' => 'Add payment',
|
|
|
|
'search' => 'Search',
|
|
|
|
'date' => 'Date',
|
|
'orderNo' => 'Order no.',
|
|
'price' => 'Price',
|
|
'note' => 'Note',
|
|
'transactionID' => 'Transaction ID',
|
|
'admin' => 'Admin',
|
|
'status' => 'Status',
|
|
'gate' => 'Gate',
|
|
'return' => 'Return',
|
|
'paymentType' => 'Payment type',
|
|
'types' => [
|
|
Payment::METHOD_CASH => 'Cash',
|
|
Payment::METHOD_CARD => 'Credit card',
|
|
Payment::METHOD_INVOICE => 'Invoice',
|
|
Payment::METHOD_TRANSFER => 'Bank transfer',
|
|
Payment::METHOD_COD => 'Cash on delivery',
|
|
Payment::METHOD_ONLINE => 'Online payment',
|
|
Payment::METHOD_UNKNOWN => 'Unknown payment',
|
|
Payment::METHOD_INSTALLMENTS => 'Installments payment',
|
|
],
|
|
'typesPOS' => [
|
|
Payment::METHOD_CASH_INSERTION => 'Cashdesk insert',
|
|
Payment::METHOD_CASH_SELECTION => 'Cashdesk withdraw',
|
|
Payment::METHOD_COMPENSATION => 'Cashdesk compensation',
|
|
],
|
|
'statuses' => [
|
|
Payment::STATUS_FINISHED => 'FINISHED',
|
|
Payment::STATUS_CREATED => 'CREATED',
|
|
Payment::STATUS_PENDING => 'PENDING',
|
|
Payment::STATUS_STORNO => 'STORNO',
|
|
Payment::STATUS_UNKNOWN => 'UNKNOWN',
|
|
],
|
|
|
|
'paymentDirection' => 'Payment direction',
|
|
'incoming' => 'Incoming',
|
|
'outgoing' => 'Outgoing',
|
|
'priceFrom' => 'Price from',
|
|
'priceTo' => 'Price to',
|
|
'PointOfSale' => 'Point of sale',
|
|
|
|
'orderId' => 'Order ID',
|
|
'errorClosed' => 'This order has been closed, the payment can\'t be edited!',
|
|
|
|
'received' => 'Received',
|
|
'gaveAway' => 'Paid',
|
|
|
|
'AddPayment' => 'Add payment',
|
|
'Payment' => 'Payments',
|
|
'Find' => 'Search',
|
|
'Week' => 'week',
|
|
'Month' => 'month',
|
|
'Delete' => 'Delete',
|
|
'Search' => 'Search',
|
|
|
|
'returnFailed' => 'Payment refund failed, please resolve it in the payment gateway. ',
|
|
'returnFailedMessage' => 'The payment gateway returned an error: ',
|
|
'returnFailedInvalidState' => 'Payment refund failed, the payment is in an invalid state.',
|
|
'returnFailedOnlyFullAmount' => 'Payment refund failed, the payment can only be canceled in full in its current status.',
|
|
'returnFailedOnlyFullAmountWhenNotCharged' => 'Payment refund failed, an uncharged payment can only be canceled in full.',
|
|
'returnSucceed' => 'The payment refund has been sent to the payment gateway.',
|
|
];
|