32 lines
856 B
PHP
32 lines
856 B
PHP
<?php
|
|
/**
|
|
* dd.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-07-28 16:19:06
|
|
* @modified 2022-07-28 16:19:06
|
|
*/
|
|
|
|
return [
|
|
'publishable_key' => 'Publishable Key',
|
|
|
|
'title_info' => 'Card information',
|
|
'cardnum' => 'Cardnum',
|
|
'expiration_date' => 'Expiration Date',
|
|
'year' => 'Year',
|
|
'month' => 'Month',
|
|
'cvv' => 'Cvv',
|
|
'remenber' => 'Keep this card in mind for future use',
|
|
'btn_submit' => 'Submit',
|
|
|
|
'error_cardnum' => 'Please enter the card number',
|
|
'error_cvv' => 'Please enter the security code',
|
|
'error_year' => 'Please select the year',
|
|
'error_month' => 'Please select a month',
|
|
|
|
'capture_success' => 'Capture Successfully',
|
|
'capture_fail' => 'Capture Failed',
|
|
];
|