48 lines
2.2 KiB
PHP
48 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'products_index' => '商品リスト',
|
|
'products_create' => '製品の作成',
|
|
'products_show' => '商品の詳細',
|
|
'products_update' => '製品の更新',
|
|
'products_delete' => '商品を削除',
|
|
'products_trashed' => 'ごみ箱',
|
|
'products_restore' => 'ごみ箱を復元',
|
|
'clear_restore' => '空のごみ箱',
|
|
|
|
'batch_delete' => '一括削除',
|
|
'batch_active' => 'バッチ リスト',
|
|
'batch_inactive' => '既製バッチ',
|
|
|
|
'basic_information' => '基本情報',
|
|
'product_details' => '商品の詳細',
|
|
'product_relations' => '関連商品',
|
|
'stocks' => '商品在庫',
|
|
'model' => 'モデル',
|
|
'price' => '価格',
|
|
'origin_price' => '元の価格',
|
|
'cost_price' => '原価',
|
|
'quantity' => '数量',
|
|
'enable_multi_spec' => 'マルチスペックを有効にする',
|
|
'image_help' => '最初の画像が商品のメイン画像として使用され、複数の画像を同時にアップロードでき、複数の画像の位置を自由に調整できます',
|
|
'add_variable' => '指定を追加',
|
|
'add_variable_value' => '指定値を追加',
|
|
'add_variable_image' => '仕様画像追加',
|
|
'default_main_product' => 'デフォルトのメイン製品',
|
|
'modify_order' => 'ダブルクリックして変更、ドラッグして順序を調整',
|
|
|
|
'confirm_batch_product' => '選択した製品をまとめて削除しますか? ',
|
|
'confirm_batch_status' => 'バッチで選択した製品のステータスを変更することを確認しますか? ',
|
|
'confirm_batch_restore' => '選択した製品の復元を確認しますか? ',
|
|
'confirm_delete_restore' => 'ごみ箱を空にしてもよろしいですか? ',
|
|
];
|