Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
22 lines
803 B
PHP
22 lines
803 B
PHP
<?php
|
|
|
|
return [
|
|
'checkout' => [
|
|
'title' => '确认支付',
|
|
'subtitle' => '订单 #:id — Stub 网关',
|
|
'stub_badge' => 'Stub 模拟支付',
|
|
'total' => '合计',
|
|
'pay_stub' => '模拟支付成功',
|
|
'cancel' => '取消',
|
|
'back' => '返回',
|
|
'already_paid' => '该订单已支付。',
|
|
'error_title' => '无法发起结账',
|
|
],
|
|
'errors' => [
|
|
'already_entitled' => '你已拥有该商品的有效权益(:product_type #:product_id),不能重复下单。',
|
|
'order_not_payable' => '当前订单状态为 [:status],无法标记支付。',
|
|
'invalid_checkout' => '结账参数无效,或该商品当前不可购买。',
|
|
'checkout_failed' => '创建订单失败,请重试。',
|
|
],
|
|
];
|