40 lines
1.5 KiB
PHP
40 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* common.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-17 23:10:20
|
|
* @modified 2022-08-17 23:10:20
|
|
*/
|
|
|
|
return [
|
|
'index' => 'ショッピングカート',
|
|
'added_to_cart' => 'カートに追加されました',
|
|
'select_all' => 'すべて選択',
|
|
'commodity' => '商品',
|
|
'quantity' => '量',
|
|
'subtotal' => '小計',
|
|
'product_total' => '商品合計',
|
|
'order_total' => '総支払額',
|
|
'shipping_fee' => '貨物',
|
|
'all' => '全て',
|
|
'selected' => '選択済み',
|
|
'to_checkout' => 'チェックアウトに行きます',
|
|
'cart_empty' => 'ショッピングカートは空です',
|
|
'go_buy' => '買いたいものを見に行くことができる',
|
|
'go_shopping' => '買い物に行く',
|
|
'must_select' => '少なくとも 1 つの製品を選択してください',
|
|
'mini' => 'あなたのカート',
|
|
'delete' => '消去',
|
|
'check_cart' => 'ショッピングカートを確認する',
|
|
|
|
'invalid_customer' => '無効なカートの顧客',
|
|
'empty_selected_products' => 'ショッピングカートで選択した商品は空です',
|
|
'invalid_shipping_address' => '配送先住所が無効です',
|
|
'invalid_payment_address' => '請求先住所が無効です',
|
|
'invalid_shipping_method' => '配送方法が利用できません',
|
|
'invalid_payment_method' => 'お支払い方法が利用できません',
|
|
];
|